Commit 1a8fa516 authored by kbuild test robot's avatar kbuild test robot Committed by Mark Brown

spi: bcm2835aux: polling_limit_us can be static

Fixes: 5fd917af ("spi: bcm2835aux: make the polling duration limits configurable")
Signed-off-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8048d151
......@@ -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");
......
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