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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");