From: Tony Lindgren <tony@atomide.com>
To: hvaibhav@ti.com
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH 1/2-V2] AM3517: Enable RTC driver support for AM3517EVM
Date: Thu, 11 Feb 2010 12:32:43 -0800 [thread overview]
Message-ID: <20100211203243.GH21755@atomide.com> (raw)
In-Reply-To: <1265875947-12306-2-git-send-email-hvaibhav@ti.com>
* hvaibhav@ti.com <hvaibhav@ti.com> [100211 00:09]:
> From: Vaibhav Hiremath <hvaibhav@ti.com>
>
> Add platform hook-up interface to support RTC driver (S35390A).
>
> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
> ---
> arch/arm/mach-omap2/board-am3517evm.c | 25 +++++++++++++++++++++++++
> 1 files changed, 25 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-am3517evm.c b/arch/arm/mach-omap2/board-am3517evm.c
> index 247c700..d9f487f 100644
> --- a/arch/arm/mach-omap2/board-am3517evm.c
> +++ b/arch/arm/mach-omap2/board-am3517evm.c
> @@ -174,6 +174,18 @@ struct platform_device am3517_evm_dss_device = {
> .platform_data = &am3517_evm_dss_data,
> },
> };
> +/*
> + * RTC - S35390A
> + */
> +#define GPIO_RTCS35390A_IRQ 55
Please change this into standard
#define GPIO_RTCS35390A_IRQ 55
instead of having a tab between #define and GPIO...
> +static struct i2c_board_info __initdata am3517evm_i2c_boardinfo[] = {
> + {
> + I2C_BOARD_INFO("s35390a", 0x30),
> + .type = "s35390a",
> + },
> +};
> +
>
> static int __init am3517_evm_i2c_init(void)
> {
> @@ -235,6 +247,19 @@ static void __init am3517_evm_init(void)
> usb_ehci_init(&ehci_pdata);
> /* DSS */
> am3517_evm_display_init();
> +
> + /* RTC - S35390A */
> + omap_mux_init_gpio(55, OMAP_PIN_INPUT_PULLUP);
> + if (gpio_request(GPIO_RTCS35390A_IRQ, "rtcs35390a-irq") < 0)
> + printk(KERN_WARNING "failed to request GPIO#%d\n",
> + GPIO_RTCS35390A_IRQ);
Here you need to check the return value before trying to change
the GPIO value. In general it's preferred to use:
int err;
err = gpio_request()
if (err < 0)
return err;
...
> + if (gpio_direction_input(GPIO_RTCS35390A_IRQ))
> + printk(KERN_WARNING "GPIO#%d cannot be configured as "
> + "input\n", GPIO_RTCS35390A_IRQ);
And only after that call gpio_direction_input.
Regards,
Tony
> + am3517evm_i2c_boardinfo[0].irq = gpio_to_irq(GPIO_RTCS35390A_IRQ);
> +
> + i2c_register_board_info(1, am3517evm_i2c_boardinfo,
> + ARRAY_SIZE(am3517evm_i2c_boardinfo));
> }
>
> static void __init am3517_evm_map_io(void)
> --
> 1.6.2.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2010-02-11 20:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-11 8:12 [PATCH 1/2-V2] AM3517: Enable RTC driver support for AM3517EVM hvaibhav
2010-02-11 20:32 ` Tony Lindgren [this message]
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=20100211203243.GH21755@atomide.com \
--to=tony@atomide.com \
--cc=hvaibhav@ti.com \
--cc=linux-omap@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 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.