From mboxrd@z Thu Jan 1 00:00:00 1970 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 2A32FE81DF4 for ; Fri, 6 Oct 2023 13:12:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232300AbjJFNM1 (ORCPT ); Fri, 6 Oct 2023 09:12:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49810 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232257AbjJFNMZ (ORCPT ); Fri, 6 Oct 2023 09:12:25 -0400 Received: from mailo.com (msg-4.mailo.com [213.182.54.15]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0753FAC for ; Fri, 6 Oct 2023 06:12:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mailo.com; s=mailo; t=1696597926; bh=bpFnRu/wSLaJ36e2cl256f9SsrE5uKGcDH1qTSECnRU=; h=X-EA-Auth:Date:From:To:Cc:Subject:Message-ID:References: MIME-Version:Content-Type:In-Reply-To; b=mif+BjF/RrX5QmfsFXDVzq1+LjM6YDhcbbFGCbpo7r/S/YgH+cCF4bAf24tPOiVsB CbC8kp7ztBLFm6NePvANL8dXzHtqIGtVclbNxornv9JAO9dEG3elKRBZ3oMrWBwrl7 85RScX+L/ucfbQdwv4niVTIFhdDtcLcHBG2gkmZ0= Received: by b221-2.in.mailobj.net [192.168.90.22] with ESMTP via ip-20.mailobj.net [213.182.54.20] Fri, 6 Oct 2023 15:12:06 +0200 (CEST) X-EA-Auth: vQHFtkQs5JwsO7pjZoUof/uBK5tNUlViDT4elZhpx7PPqUypgNv2GuvWR2ovBDzoWwk5+rN1GRS7JKpvG0VRxg== Date: Fri, 6 Oct 2023 18:42:00 +0530 From: Deepak R Varma To: Greg Kroah-Hartman Cc: greybus-dev@lists.linaro.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Johan Hovold , Alex Elder Subject: Re: [PATCH 1/3] staging: greybus: raw: make raw_class constant Message-ID: References: <2023100533-broadband-hunk-9e91@gregkh> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2023100533-broadband-hunk-9e91@gregkh> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 05, 2023 at 03:58:34PM +0200, Greg Kroah-Hartman wrote: > Now that the driver core allows for struct class to be in read-only Hello Greg, When you say "Now", has anything changed recently that facilitates this improvement? Where can I read more about this change? Thank you, deepak. > memory, making all 'class' structures to be declared at build time > placing them into read-only memory, instead of having to be dynamically > allocated at load time. > > Cc: Johan Hovold > Cc: Alex Elder > Cc: greybus-dev@lists.linaro.org > Signed-off-by: Greg Kroah-Hartman > ---