From: Grant Likely <grant.likely@secretlab.ca>
To: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Kukjin Kim <kgene.kim@samsung.com>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/4] gpio: Explicitly index samsung_gpio_cfgs
Date: Mon, 2 Jan 2012 00:27:19 -0700 [thread overview]
Message-ID: <20120102072719.GC13015@ponder.secretlab.ca> (raw)
In-Reply-To: <1323275041-25493-1-git-send-email-broonie@opensource.wolfsonmicro.com>
On Thu, Dec 08, 2011 at 12:23:58AM +0800, Mark Brown wrote:
> Make it easier to follow the by number references into samsung_gpio_cfgs
> by putting the indexes into the code initialising the array, improving
> readability a bit. Ideally we wouldn't be using magic array indexes at all
> but this is easier than coming up with a better way.
>
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Applied, thanks.
g.
> ---
> drivers/gpio/gpio-samsung.c | 29 +++++++++++++++++++----------
> 1 files changed, 19 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpio/gpio-samsung.c b/drivers/gpio/gpio-samsung.c
> index 6b4d23f..f1c1ecd 100644
> --- a/drivers/gpio/gpio-samsung.c
> +++ b/drivers/gpio/gpio-samsung.c
> @@ -470,33 +470,42 @@ static struct samsung_gpio_cfg s5p64x0_gpio_cfg_rbank = {
> #endif
>
> static struct samsung_gpio_cfg samsung_gpio_cfgs[] = {
> - {
> + [0] = {
> .cfg_eint = 0x0,
> - }, {
> + },
> + [1] = {
> .cfg_eint = 0x3,
> - }, {
> + },
> + [2] = {
> .cfg_eint = 0x7,
> - }, {
> + },
> + [3] = {
> .cfg_eint = 0xF,
> - }, {
> + },
> + [4] = {
> .cfg_eint = 0x0,
> .set_config = samsung_gpio_setcfg_2bit,
> .get_config = samsung_gpio_getcfg_2bit,
> - }, {
> + },
> + [5] = {
> .cfg_eint = 0x2,
> .set_config = samsung_gpio_setcfg_2bit,
> .get_config = samsung_gpio_getcfg_2bit,
> - }, {
> + },
> + [6] = {
> .cfg_eint = 0x3,
> .set_config = samsung_gpio_setcfg_2bit,
> .get_config = samsung_gpio_getcfg_2bit,
> - }, {
> + },
> + [7] = {
> .set_config = samsung_gpio_setcfg_2bit,
> .get_config = samsung_gpio_getcfg_2bit,
> - }, {
> + },
> + [8] = {
> .set_pull = exynos4_gpio_setpull,
> .get_pull = exynos4_gpio_getpull,
> - }, {
> + },
> + [9] = {
> .cfg_eint = 0x3,
> .set_pull = exynos4_gpio_setpull,
> .get_pull = exynos4_gpio_getpull,
> --
> 1.7.7.3
>
next prev parent reply other threads:[~2012-01-02 7:27 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-07 16:22 [PATCH 0/4] Random GPIO updates Mark Brown
2011-12-07 16:23 ` [PATCH 1/4] gpio: Explicitly index samsung_gpio_cfgs Mark Brown
2011-12-07 16:23 ` [PATCH 2/4] gpio: Fix typo in comment in Samsung driver Mark Brown
2011-12-08 0:28 ` Kukjin Kim
2012-01-02 7:27 ` Grant Likely
2011-12-07 16:24 ` [PATCH 3/4] gpio: Convert GPIO drivers to module_platform_driver Mark Brown
2012-01-02 7:27 ` Grant Likely
2011-12-07 16:24 ` [PATCH 4/4] gpio: Add decode of WM8994 GPIO configuration Mark Brown
2012-01-02 7:28 ` Grant Likely
2011-12-08 0:27 ` [PATCH 1/4] gpio: Explicitly index samsung_gpio_cfgs Kukjin Kim
2012-01-02 7:27 ` Grant Likely [this message]
2011-12-29 14:00 ` [PATCH 0/4] Random GPIO updates Mark Brown
2012-01-02 1:06 ` Kukjin Kim
2011-12-21 0:20 [PATCH 1/4] gpio: Explicitly index samsung_gpio_cfgs Mark Brown
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=20120102072719.GC13015@ponder.secretlab.ca \
--to=grant.likely@secretlab.ca \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=kgene.kim@samsung.com \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome