lkml.org 
[lkml]   [2018]   [Mar]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v6] mmc: Export host capabilities to debugfs.
From
Date
On Wed, 2018-03-07 at 12:34 +0530, Harish Jenny K N wrote:

> > > > > >
> > > +static int mmc_caps_show(struct seq_file *s, void *unused) {
> > > + struct mmc_host *host = s->private;
> > > + u32 caps = host->caps;
> > > +
> > > > > > + seq_puts(s, "\nMMC Host capabilities are:\n");

First of all, avoid leading '\n' in the messages.

> > > > > > + seq_puts(s,
> > >
"=============================================\n");
> > > + seq_printf(s, "Can the host do 4 bit transfers :\t%s\n",
> > > + ((caps & MMC_CAP_4_BIT_DATA) ? "Yes" : "No"));
> >
> > Maybe use a more compact form, and just call a macro with the
> > applicable (stringified) bit?
>
> Something like this ?
>
> #define YN(bit) ((caps & bit) ? "Yes" : "No")
> and then call
> seq_printf(s, "Can the host do 4 bit transfers :\t%s\n",
> YN(MMC_CAP_4_BIT_DATA));
>

I would rather say something like this:

static const char * const mmc_host_capabilities[] = {
"4-bit transfers allowed",
"...",
...
};

...
for_each_set_bit(i, caps)
seq_printf("%s\n", mmc_host_capabilities[i]);
...


--
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy

\
 
 \ /
  Last update: 2018-03-07 13:49    [W:0.133 / U:0.004 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site