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 6C4C5C636CC for ; Wed, 8 Feb 2023 12:33:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230377AbjBHMdz (ORCPT ); Wed, 8 Feb 2023 07:33:55 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36806 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229457AbjBHMdx (ORCPT ); Wed, 8 Feb 2023 07:33:53 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 47DCD46AD for ; Wed, 8 Feb 2023 04:33:52 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id CBCBD616C2 for ; Wed, 8 Feb 2023 12:33:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C78F1C433D2; Wed, 8 Feb 2023 12:33:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675859631; bh=YSGsMgMp0WvrPiFqf6V3+wia0fLCRW4B2b10cRrkjbw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=iRlijVRxy2GcK9WefZEkbkAepqYOvvx1uVdfjtP8FDjG8hTpcX6c39EAGSHVcUom8 iAA4lyB14fpeT3Ix49br8Dr8yVV4aEKU7do8SWwwugKT068RfAV3rJufCzo4JSto8L itnS7ygukGdU/Uxt07fx85SF2lGW1/FdxFwv1hsI= Date: Wed, 8 Feb 2023 13:33:48 +0100 From: Greg Kroah-Hartman To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Andy Whitcroft , Joe Perches , Dwaipayan Ray , Lukas Bulwahn , linux-kernel@vger.kernel.org Subject: Re: [PATCH] const_structs.checkpatch.pl: add kobj_type Message-ID: References: <20230204-kobj_type-checkpatch-v1-1-9a94b04adbb2@weissschuh.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230204-kobj_type-checkpatch-v1-1-9a94b04adbb2@weissschuh.net> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Feb 04, 2023 at 05:41:26AM +0000, Thomas Wei?schuh wrote: > Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") > the driver core allows the usage of const struct kobj_type. > > Signed-off-by: Thomas Wei?schuh > --- > scripts/const_structs.checkpatch | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/scripts/const_structs.checkpatch b/scripts/const_structs.checkpatch > index 1eeb7b42c5b9..dc39d938ea77 100644 > --- a/scripts/const_structs.checkpatch > +++ b/scripts/const_structs.checkpatch > @@ -35,6 +35,7 @@ iwl_ops > kernel_param_ops > kgdb_arch > kgdb_io > +kobj_type Nice, I didn't realize we had such a list, thanks for this! now queued up. greg k-h