* [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup
@ 2014-02-11 12:54 Axel Lin
2014-02-11 16:14 ` Guenter Roeck
2014-02-11 17:04 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2014-02-11 12:54 UTC (permalink / raw)
To: Mark Brown; +Cc: Guenter Roeck, linux-spi-u79uwXL29TY76Z2rM5mHXA
So it will be checked when spi device is added onto the spi bus.
spi_add_device() calls spi_setup() which then calls spi->master->setup().
No need to check it every time sc18is602_transfer_one() is called.
Signed-off-by: Axel Lin <axel.lin-8E1dMatC8ynQT0dZR+AlfA@public.gmane.org>
---
drivers/spi/spi-sc18is602.c | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/drivers/spi/spi-sc18is602.c b/drivers/spi/spi-sc18is602.c
index b3ac776..7fba10b 100644
--- a/drivers/spi/spi-sc18is602.c
+++ b/drivers/spi/spi-sc18is602.c
@@ -205,12 +205,6 @@ static int sc18is602_transfer_one(struct spi_master *master,
struct spi_transfer *t;
int status = 0;
- /* SC18IS602 does not support CS2 */
- if (hw->id == sc18is602 && spi->chip_select == 2) {
- status = -ENXIO;
- goto error;
- }
-
hw->tlen = 0;
list_for_each_entry(t, &m->transfers, transfer_list) {
u32 hz = t->speed_hz ? : spi->max_speed_hz;
@@ -238,13 +232,23 @@ static int sc18is602_transfer_one(struct spi_master *master,
if (t->delay_usecs)
udelay(t->delay_usecs);
}
-error:
m->status = status;
spi_finalize_current_message(master);
return status;
}
+static int sc18is602_setup(struct spi_device *spi)
+{
+ struct sc18is602 *hw = spi_master_get_devdata(spi->master);
+
+ /* SC18IS602 does not support CS2 */
+ if (hw->id == sc18is602 && spi->chip_select == 2)
+ return -ENXIO;
+
+ return 0;
+}
+
static int sc18is602_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
@@ -298,6 +302,7 @@ static int sc18is602_probe(struct i2c_client *client,
master->bus_num = client->adapter->nr;
master->mode_bits = SPI_CPHA | SPI_CPOL | SPI_LSB_FIRST;
master->bits_per_word_mask = SPI_BPW_MASK(8);
+ master->setup = sc18is602_setup;
master->transfer_one_message = sc18is602_transfer_one;
master->dev.of_node = np;
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup
2014-02-11 12:54 [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup Axel Lin
@ 2014-02-11 16:14 ` Guenter Roeck
2014-02-11 17:04 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Guenter Roeck @ 2014-02-11 16:14 UTC (permalink / raw)
To: Axel Lin; +Cc: Mark Brown, linux-spi-u79uwXL29TY76Z2rM5mHXA
On Tue, Feb 11, 2014 at 08:54:17PM +0800, Axel Lin wrote:
> So it will be checked when spi device is added onto the spi bus.
> spi_add_device() calls spi_setup() which then calls spi->master->setup().
> No need to check it every time sc18is602_transfer_one() is called.
>
> Signed-off-by: Axel Lin <axel.lin-8E1dMatC8ynQT0dZR+AlfA@public.gmane.org>
Acked-by: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup
2014-02-11 12:54 [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup Axel Lin
2014-02-11 16:14 ` Guenter Roeck
@ 2014-02-11 17:04 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2014-02-11 17:04 UTC (permalink / raw)
To: Axel Lin; +Cc: Guenter Roeck, linux-spi-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 288 bytes --]
On Tue, Feb 11, 2014 at 08:54:17PM +0800, Axel Lin wrote:
> So it will be checked when spi device is added onto the spi bus.
> spi_add_device() calls spi_setup() which then calls spi->master->setup().
> No need to check it every time sc18is602_transfer_one() is called.
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-02-11 17:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-11 12:54 [PATCH] spi: sc18is602: Move checking chip_select for SC18IS602 to sc18is602_setup Axel Lin
2014-02-11 16:14 ` Guenter Roeck
2014-02-11 17:04 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).