提交 2b4f07e9 编写于 作者: C Colin Ian King 提交者: Alexandre Belloni

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: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NAlexandre Belloni <alexandre.belloni@bootlin.com>
上级 1a990fef
...@@ -22,7 +22,7 @@ struct rtc_test_data { ...@@ -22,7 +22,7 @@ struct rtc_test_data {
bool alarm_en; 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) static int test_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册