Commit dafcc4a5 authored by Geordan Neukum's avatar Geordan Neukum Committed by Greg Kroah-Hartman

staging: kpc2000: kpc_spi: remove unnecessary struct member word_len

The structure kp_spi_controller_state, defined in the kpc2000_spi
driver, contains a member named word_len which is never used after
initialization. Therefore, it should be removed for simplicity's sake.
Signed-off-by: default avatarGeordan Neukum <gneukum1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d06ad04b
...@@ -110,7 +110,6 @@ struct kp_spi { ...@@ -110,7 +110,6 @@ struct kp_spi {
struct kp_spi_controller_state { struct kp_spi_controller_state {
void __iomem *base; void __iomem *base;
unsigned char chip_select; unsigned char chip_select;
int word_len;
s64 conf_cache; s64 conf_cache;
}; };
...@@ -269,7 +268,6 @@ kp_spi_setup(struct spi_device *spidev) ...@@ -269,7 +268,6 @@ kp_spi_setup(struct spi_device *spidev)
} }
cs->base = kpspi->base; cs->base = kpspi->base;
cs->chip_select = spidev->chip_select; cs->chip_select = spidev->chip_select;
cs->word_len = spidev->bits_per_word;
cs->conf_cache = -1; cs->conf_cache = -1;
spidev->controller_state = cs; spidev->controller_state = cs;
} }
...@@ -369,7 +367,6 @@ kp_spi_transfer_one_message(struct spi_master *master, struct spi_message *m) ...@@ -369,7 +367,6 @@ kp_spi_transfer_one_message(struct spi_master *master, struct spi_message *m)
if (transfer->bits_per_word) { if (transfer->bits_per_word) {
word_len = transfer->bits_per_word; word_len = transfer->bits_per_word;
} }
cs->word_len = word_len;
sc.bitfield.wl = word_len-1; sc.bitfield.wl = word_len-1;
/* ...chip select */ /* ...chip select */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment