From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Brown Subject: Re: [RFC PATCHv1 1/2] Export SoC info through sysfs Date: Wed, 9 Mar 2011 17:47:52 +0000 Message-ID: <20110309174752.GC1225@sirena.org.uk> References: <1299689961-5028-1-git-send-email-maxime.coquelin-nonst@stericsson.com> <1299689961-5028-2-git-send-email-maxime.coquelin-nonst@stericsson.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1299689961-5028-2-git-send-email-maxime.coquelin-nonst@stericsson.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Maxime Coquelin Cc: ext Nishanth Menon , ext Tony Lindgren , Peter De-Schrijver , Linus Walleij , Ambresh , Saravana Kannan , Andrei Warkentin , Lee Jones , Rabin VINCENT , Russell King , Jonas ABERG , ext Kevin Hilman , David Brown , "linux-arm-msm@vger.kernel.org" , Loic PALLARDY , "eduardo.valentin@nokia.com" , maxime_coquelin@yahoo.fr, Ryan Mallon , Linux-OMAP , "linux-arm-kernel@lists.infradead.org" , Daniel List-Id: linux-omap@vger.kernel.org On Wed, Mar 09, 2011 at 05:59:20PM +0100, Maxime Coquelin wrote: > +config SYS_SOC > + bool "Export SoC specific informations" > + depends on EMBEDDED > + > endmenu Would it not be better for this to depend on a symbol that systems can select when they add useful output? If there's nothing that generates information for it on a given platform there's no point in enabling it. > +static ssize_t show_info(struct sysdev_class *class, > + struct sysdev_class_attribute *attr, char *buf) > +{ > + struct sys_soc_info *si = container_of(attr, > + struct sys_soc_info, attr); > + > + if (si->info) > + return sprintf(buf, "%s\n", si->info); > + else if (si->get_info) > + return sprintf(buf, "%s\n", si->get_info(si)); It seems like it'd be easier to pass the output buffer directly to get_info(), otherwise the get_info() implementation will have to figure out a buffer to return data from.