summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/spi.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@google.com>2015-10-14 21:15:38 +0300
committerGreg Kroah-Hartman <gregkh@google.com>2015-10-15 19:19:15 +0300
commit1cb9e38c8c17b16b2712aaf2ca4d3509f0fe9366 (patch)
treeaf791f6cb9e70da50a2a7546ee98d031658026b9 /drivers/staging/greybus/spi.c
parent4f30bf3aef416ce6870a6da68e42957aeb4edb76 (diff)
downloadlinux-1cb9e38c8c17b16b2712aaf2ca4d3509f0fe9366.tar.xz
greybus: spi: use the bundle struct device instead of the connector
We are removing struct device from the gb_connection structure in the near future. The gb_bundle structure's struct device should be used as a replacement. This patch moves the spi driver to use the bundle pointer instead of the connection pointer. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'drivers/staging/greybus/spi.c')
-rw-r--r--drivers/staging/greybus/spi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/greybus/spi.c b/drivers/staging/greybus/spi.c
index 393f28ad099b..33e86f9c3182 100644
--- a/drivers/staging/greybus/spi.c
+++ b/drivers/staging/greybus/spi.c
@@ -57,7 +57,7 @@ gb_spi_operation_create(struct gb_connection *connection,
/* Find number of transfers queued and tx/rx length in the message */
list_for_each_entry(xfer, &msg->transfers, transfer_list) {
if (!xfer->tx_buf && !xfer->rx_buf) {
- dev_err(&connection->dev,
+ dev_err(&connection->bundle->dev,
"bufferless transfer, length %u\n", xfer->len);
return NULL;
}
@@ -73,8 +73,8 @@ gb_spi_operation_create(struct gb_connection *connection,
/* Too many transfers ? */
if (count > (u32)U16_MAX) {
- dev_err(&connection->dev, "transfer count (%u) too big\n",
- count);
+ dev_err(&connection->bundle->dev,
+ "transfer count (%u) too big\n", count);
return NULL;
}
@@ -286,9 +286,9 @@ static int gb_spi_connection_init(struct gb_connection *connection)
int ret;
/* Allocate master with space for data */
- master = spi_alloc_master(&connection->dev, sizeof(*spi));
+ master = spi_alloc_master(&connection->bundle->dev, sizeof(*spi));
if (!master) {
- dev_err(&connection->dev, "cannot alloc SPI master\n");
+ dev_err(&connection->bundle->dev, "cannot alloc SPI master\n");
return -ENOMEM;
}