Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5183240c authored by Colin Ian King's avatar Colin Ian King Committed by Chanwoo Choi
Browse files

extcon: make extcon_info static const, fixes warning



The array extcon_info is read only, local to the source and does not
need to be in global scope, so make it static const.

Cleans up sparse warning:
symbol 'extcon_info' was not declared. Should it be static?

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 176aa360
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@

#define SUPPORTED_CABLE_MAX	32

struct __extcon_info {
static const struct __extcon_info {
	unsigned int type;
	unsigned int id;
	const char *name;