aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-test.c
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2018-06-24 10:38:03 +0000
committerAlexandre Belloni <[email protected]>2018-07-12 18:16:10 +0000
commit2b4f07e99e97b3035ce354dd38010b92c34f6bb0 (patch)
tree6b1df52bbc8648ad026db8605fe619084d6836e8 /drivers/rtc/rtc-test.c
parentrtc: armada38x: reset after rtc power loss (diff)
downloadkernel-2b4f07e99e97b3035ce354dd38010b92c34f6bb0.tar.gz
kernel-2b4f07e99e97b3035ce354dd38010b92c34f6bb0.zip
rtc: test: make array pdev static
The array pdev is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: symbol 'pdev' was not declared. Should it be static? Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Alexandre Belloni <[email protected]>
Diffstat (limited to 'drivers/rtc/rtc-test.c')
-rw-r--r--drivers/rtc/rtc-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c
index 8469256edc2a..ade6a82709be 100644
--- a/drivers/rtc/rtc-test.c
+++ b/drivers/rtc/rtc-test.c
@@ -22,7 +22,7 @@ struct rtc_test_data {
bool alarm_en;
};
-struct platform_device *pdev[MAX_RTC_TEST];
+static struct platform_device *pdev[MAX_RTC_TEST];
static int test_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
{