]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commit
gpiolib: Use seq_file's iterator interface
authorThierry Reding <thierry.reding@avionic-design.de>
Thu, 12 Apr 2012 11:26:01 +0000 (13:26 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 17 Aug 2012 05:35:41 +0000 (07:35 +0200)
commitf9c4a31f61501d25f0a45faae6a5cd701ad5694a
treefc98b2e1357f7374a5384615f12fb2e9e7d25d37
parentd9875690d9b89a866022ff49e3fcea892345ad92
gpiolib: Use seq_file's iterator interface

When dumping a collection of items via seq_file, it is recommended to
use the iterator interface. For the gpiolib debugfs interface this can
be done to dump each GPIO chip in turn.

Note that for gpiolib this is a little cumbersome because it does not
provide a list of registered GPIO chips and the only way to iterate is
over each GPIO individually. Once a chip is found, the number of GPIOs
it provides can be skipped as a small optimization.

This patch was requested by Arnd Bergmann here:

http://article.gmane.org/gmane.linux.ports.tegra/3535

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Linus Walleij <linus.walleij@stericsson.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: linux-kernel@vger.kernel.org
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c