Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1572CC64EC7 for ; Wed, 15 Feb 2023 10:19:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233967AbjBOKTq (ORCPT ); Wed, 15 Feb 2023 05:19:46 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45538 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233943AbjBOKTo (ORCPT ); Wed, 15 Feb 2023 05:19:44 -0500 Received: from mail-yw1-x1132.google.com (mail-yw1-x1132.google.com [IPv6:2607:f8b0:4864:20::1132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9EF2737577 for ; Wed, 15 Feb 2023 02:19:40 -0800 (PST) Received: by mail-yw1-x1132.google.com with SMTP id 00721157ae682-4a263c4ddbaso257403297b3.0 for ; Wed, 15 Feb 2023 02:19:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=RVe4n2guCkN77wNmksIatS/+asEPT2MRD6rguYoxF6s=; b=PCdeAIr8THAY1l7JPPRZv64oTEfGmHyPM6gBpyUwXvh2+HRj8ZlKXd8pYSuATlTx/c wK2K+8tfhHWJDn9Xh4i+7UTK2K8mOqDZqemaZjeoqiAX5TBjhneuRZlwE7JT9cC1Br1t 2eFkt92WEQWMJXrQAr3voTw067cqScYvszFl/KJiYVPqg9pm0L9itXSA52l6waimlr74 rK2F5qJTLzscYrFCOSUM+2uF5DTJ+4HD1rWPXk8zilox7qP9YARMSSvmKxKGpGvI0q5S Fl2ZRQctuk25C+tefpNApe/tADH707p3kcTTtyQ7K0JeOTIUVfwryG+KATPsc0L5eRlU iDSw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=RVe4n2guCkN77wNmksIatS/+asEPT2MRD6rguYoxF6s=; b=xpSJptyurOMEfR13mqW/VMJ8gD3iXj+eCb12sEnQ64ECz85NPIUPYJ/j+lOqaAMFJu k8UCU1y7yuznm/fgFQ1a86iySicRbiTqbiLqn9w1F5TkQwCCxSJYK58c11POc4n+igJ+ lYRWlhabBkY4/X6FdDP5LoN2uBlTe/A3MO9qpcHjyba3hlpcwmr6gn7sH/bIQwDIa3vk 3kOwuqSKzfeiBxIVsrt1qr2FPVTk0/EQDWpIwkwORIcnH07Ygm3+gw05AQBAVKN58Z0O RKFoxvcP2mexEXyV+Eop6APoW1G1Mwy0TM8CDfIe40+IRduJxmJFoWMDBfoWnZlFcQxA KBUw== X-Gm-Message-State: AO0yUKXJ/3YDQtJoQE+I2KlwlNM/apEWj+tCsQ8eH9FeWWZq81Gh7TG0 5gg5JZcXO09qTNIJr2a94FyPVlOIh4RMz+cENvCVCA== X-Google-Smtp-Source: AK7set8HcBJ9ltkOoWGhonkvU78QtPV0gE5DCXlJwMwgVLUa1iKBGsaH2he5xkm03TZ5jeDcrUyTwaK2WtAmmVBV3Yg= X-Received: by 2002:a05:6902:384:b0:921:b101:d37a with SMTP id f4-20020a056902038400b00921b101d37amr226910ybs.411.1676456379746; Wed, 15 Feb 2023 02:19:39 -0800 (PST) MIME-Version: 1.0 References: <20230214073638.571417-1-alexander.stein@ew.tq-group.com> In-Reply-To: <20230214073638.571417-1-alexander.stein@ew.tq-group.com> From: Linus Walleij Date: Wed, 15 Feb 2023 11:19:28 +0100 Message-ID: Subject: Re: [PATCH 1/1] gpio: vf610: make irq_chip immutable To: Alexander Stein , Marc Zyngier Cc: Bartosz Golaszewski , linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 14, 2023 at 8:36 AM Alexander Stein wrote: > Since recently, the kernel is nagging about mutable irq_chips: > > "not an immutable chip, please consider fixing it!" > > Drop the unneeded copy, flag it as IRQCHIP_IMMUTABLE, add the new > helper functions and call the appropriate gpiolib functions. > > Signed-off-by: Alexander Stein Looks good to me, CC to Marc Z. Reviewed-by: Linus Walleij We fixed quite a few of these now, Marc do you have an idea about how much we have left until we can make immutable the default? Yours, Linus Walleij