Message ID | 20190403181650.GA24050@lkp-ne02 (mailing list archive) |
---|---|
State | Accepted |
Commit | 1a8fa5166ec53927e2c978bce9a107c9f8d5bf60 |
Headers | show |
Series | [RFC,spi] spi: bcm2835aux: polling_limit_us can be static | expand |
diff --git a/drivers/spi/spi-bcm2835aux.c b/drivers/spi/spi-bcm2835aux.c index 1a11b91..fd8252d 100644 --- a/drivers/spi/spi-bcm2835aux.c +++ b/drivers/spi/spi-bcm2835aux.c @@ -38,7 +38,7 @@ #include <linux/spinlock.h> /* define polling limits */ -unsigned int polling_limit_us = 30; +static unsigned int polling_limit_us = 30; module_param(polling_limit_us, uint, 0664); MODULE_PARM_DESC(polling_limit_us, "time in us to run a transfer in polling mode - if zero no polling is used\n");
Fixes: 5fd917afc4bf ("spi: bcm2835aux: make the polling duration limits configurable") Signed-off-by: kbuild test robot <lkp@intel.com> --- spi-bcm2835aux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)