mirror of https://gitee.com/openkylin/linux.git
staging: kpc2000: kpc_spi: remove unnecessary struct member chip_select
The structure kp_spi_controller_state, defined in the kpc2000_spi driver, contains a member named chip_select which is never used after initialization. Therefore, it should be removed for simplicity's sake. Signed-off-by: Geordan Neukum <gneukum1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dafcc4a546
commit
77a91f4b68
|
@ -109,7 +109,6 @@ struct kp_spi {
|
||||||
|
|
||||||
struct kp_spi_controller_state {
|
struct kp_spi_controller_state {
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
unsigned char chip_select;
|
|
||||||
s64 conf_cache;
|
s64 conf_cache;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -267,7 +266,6 @@ kp_spi_setup(struct spi_device *spidev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
cs->base = kpspi->base;
|
cs->base = kpspi->base;
|
||||||
cs->chip_select = spidev->chip_select;
|
|
||||||
cs->conf_cache = -1;
|
cs->conf_cache = -1;
|
||||||
spidev->controller_state = cs;
|
spidev->controller_state = cs;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue