diff options
author | Stephen Boyd <[email protected]> | 2020-12-04 11:35:39 -0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2020-12-09 16:52:09 +0000 |
commit | 7a5172b7990d97ab9ef64e6d9063aa68099ea023 (patch) | |
tree | faac077c0db9c5a1f6ac91c95792f0c25cfe1996 | |
parent | 74639cbf51d7c0304342544a83dfda354a6bd208 (diff) |
platform/chrome: cros_ec_spi: Drop bits_per_word assignment
This is already handed by default in spi_setup() if the bits_per_word is
0, so just drop it to shave off a line.
Cc: Simon Glass <[email protected]>
Cc: Gwendal Grignou <[email protected]>
Reviewed-by: Douglas Anderson <[email protected]>
Tested-by: Douglas Anderson <[email protected]>
Acked-by: Enric Balletbo i Serra <[email protected]>
Cc: Alexandru M Stan <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/platform/chrome/cros_ec_spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_ec_spi.c b/drivers/platform/chrome/cros_ec_spi.c index f9df218fc2bb..14c4046fa04d 100644 --- a/drivers/platform/chrome/cros_ec_spi.c +++ b/drivers/platform/chrome/cros_ec_spi.c @@ -741,7 +741,6 @@ static int cros_ec_spi_probe(struct spi_device *spi) struct cros_ec_spi *ec_spi; int err; - spi->bits_per_word = 8; spi->rt = true; err = spi_setup(spi); if (err < 0) |