From: simon.guinot@sequanux.org (Simon Guinot)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] gpio: mvebu: add dbg_show function
Date: Sat, 23 Mar 2013 16:29:26 +0100 [thread overview]
Message-ID: <20130323152926.GD16903@kw.sim.vm.gnt> (raw)
In-Reply-To: <20130323162118.7bb6bbe3@skate>
On Sat, Mar 23, 2013 at 04:21:18PM +0100, Thomas Petazzoni wrote:
> Dear Simon Guinot,
Hi Thomas,
>
> On Fri, 22 Mar 2013 19:49:47 +0100, Simon Guinot wrote:
> > + for (i = 0; i < chip->ngpio; i++) {
> > + const char *label;
> > + int msk;
> > + bool is_out;
> > +
> > + label = gpiochip_is_requested(chip, i);
> > + if (!label)
> > + continue;
> > +
> > + msk = 1 << i;
> > + is_out = !(io_conf & msk);
>
> Maybe instead of using 'msk' you could use test_bit() ?
test_bit implies more extra bit shifting which are not needed.
But maybe it makes the function more readable.
Your call :)
Simon
>
> is_out = !test_bit(i, io_conf);
>
> > + seq_printf(s, " gpio-%-3d (%-20.20s)", chip->base + i, label);
> > +
> > + if (is_out) {
> > + seq_printf(s, " out %s %s\n",
> > + out & msk ? "hi" : "lo",
>
> test_bit(i, out) ? "hi" : "lo",
>
> > + blink & msk ? "(blink )" : "");
>
> test_bit(i, blink) ? "(blink )" : ""
>
> etc.
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130323/969ef853/attachment.sig>
next prev parent reply other threads:[~2013-03-23 15:29 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-22 18:49 [PATCH 0/2] Add dbg_show functions to the Marvell GPIO drivers Simon Guinot
2013-03-22 18:49 ` [PATCH 1/2] gpio: mvebu: add dbg_show function Simon Guinot
2013-03-22 19:51 ` Jason Cooper
2013-03-23 15:21 ` Thomas Petazzoni
2013-03-23 15:29 ` Simon Guinot [this message]
2013-03-23 15:43 ` Russell King - ARM Linux
2013-03-23 16:26 ` Thomas Petazzoni
2013-03-22 18:49 ` [PATCH 2/2] ARM: Orion: add dbg_show function to gpio-orion driver Simon Guinot
2013-03-30 20:44 ` Jason Cooper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130323152926.GD16903@kw.sim.vm.gnt \
--to=simon.guinot@sequanux.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.