[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fa686aa40911131022yc84ab95wd9c67ab5d03c5ecb@mail.gmail.com>
Date: Fri, 13 Nov 2009 11:22:31 -0700
From: Grant Likely <grant.likely@...retlab.ca>
To: Wolfram Sang <w.sang@...gutronix.de>
Cc: Luotao Fu <l.fu@...gutronix.de>,
spi-devel-general@...ts.sourceforge.net,
David Brownell <dbrownell@...rs.sourceforge.net>,
linux-kernel@...r.kernel.org, linuxppc-dev@...abs.org
Subject: Re: [PATCH 3/3] [V2] mpc52xx_spi: add gpio chipselect
On Fri, Nov 13, 2009 at 4:10 AM, Wolfram Sang <w.sang@...gutronix.de> wrote:
> On Fri, Nov 13, 2009 at 11:41:17AM +0100, Luotao Fu wrote:
>> This one enables the mpc52xx_spi driver for usage of user defined gpio lines
>> as chipselect. This way we can control some more spi devices than only one
>>
>> V2 Changes:
>> * preinitialize the gpio as output in probe function and call gpio_set_value in
>> the chip select function instead of calling direction_output every time.
>> * initialize the gpio line with output high, since we don't support CS_HIGH
>> in the driver currently any way. change gpio value setting to default active
>> low in chip select call.
>> * free the gpio array while error or removing.
>>
>> Signed-off-by: Luotao Fu <l.fu@...gutronix.de>
>> @@ -477,6 +520,12 @@ static int __devinit mpc52xx_spi_probe(struct of_device *op,
>> err_register:
>> dev_err(&ms->master->dev, "initialization failed\n");
>> spi_master_put(master);
>> + err_gpio:
>> + while (i-- > 0)
>> + gpio_free(ms->gpio_cs[i]);
>> +
>> + if (ms->gpio_cs != NULL)
>> + kfree(ms->gpio_cs);
>
> kfree() is NULL aware, so no if needed.
Not dangerous though. No need to respin just for this.
g.
--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists