diff options
author | Jason Yan <yanaijie@huawei.com> | 2020-04-03 16:15:44 +0800 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2020-06-05 10:15:44 +0200 |
commit | 9029537c93b6f7347cf213d4e3b5c935a4d07ac8 (patch) | |
tree | 849110ac36c9ccfd5d646bb3cf2fd7a07920a33d /drivers | |
parent | 48e9912e033050a9e5e895a58c2e5a826d7c6540 (diff) |
mtd: physmap_of_gemini: remove defined but not used symbol 'syscon_match'
It's not used by anyone now, remove it. Fix the following gcc warning:
drivers/mtd/maps/physmap-gemini.c:49:34: warning: ‘syscon_match’ defined
but not used [-Wunused-const-variable=]
static const struct of_device_id syscon_match[] = {
^~~~~~~~~~~~
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/maps/physmap-gemini.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mtd/maps/physmap-gemini.c b/drivers/mtd/maps/physmap-gemini.c index a289c8b5cabf..d4a46e159d38 100644 --- a/drivers/mtd/maps/physmap-gemini.c +++ b/drivers/mtd/maps/physmap-gemini.c @@ -46,11 +46,6 @@ #define FLASH_PARALLEL_HIGH_PIN_CNT (1 << 20) /* else low pin cnt */ -static const struct of_device_id syscon_match[] = { - { .compatible = "cortina,gemini-syscon" }, - { }, -}; - struct gemini_flash { struct device *dev; struct pinctrl *p; |