Commit f6d376aa authored by David Rientjes's avatar David Rientjes Committed by Ralf Baechle

[MIPS] excite: use __maybe_unused

Replace variable instances of __attribute__((unused)) with
__maybe_unused.
Acked-by: default avatarRalf Baechle <ralf@linux-mips.org>
Cc: Thomas Koeller <thomas.koeller@baslerweb.com>
Signed-off-by: default avatarDavid Rientjes <rientjes@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 44320f2b
...@@ -68,7 +68,7 @@ enum { ...@@ -68,7 +68,7 @@ enum {
static struct resource static struct resource
excite_ctr_resource __attribute__((unused)) = { excite_ctr_resource __maybe_unused = {
.name = "GPI counters", .name = "GPI counters",
.start = 0, .start = 0,
.end = 5, .end = 5,
...@@ -77,7 +77,7 @@ static struct resource ...@@ -77,7 +77,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_gpislice_resource __attribute__((unused)) = { excite_gpislice_resource __maybe_unused = {
.name = "GPI slices", .name = "GPI slices",
.start = 0, .start = 0,
.end = 1, .end = 1,
...@@ -86,7 +86,7 @@ static struct resource ...@@ -86,7 +86,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_mdio_channel_resource __attribute__((unused)) = { excite_mdio_channel_resource __maybe_unused = {
.name = "MDIO channels", .name = "MDIO channels",
.start = 0, .start = 0,
.end = 1, .end = 1,
...@@ -95,7 +95,7 @@ static struct resource ...@@ -95,7 +95,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_fifomem_resource __attribute__((unused)) = { excite_fifomem_resource __maybe_unused = {
.name = "FIFO memory", .name = "FIFO memory",
.start = 0, .start = 0,
.end = 767, .end = 767,
...@@ -104,7 +104,7 @@ static struct resource ...@@ -104,7 +104,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_scram_resource __attribute__((unused)) = { excite_scram_resource __maybe_unused = {
.name = "Scratch RAM", .name = "Scratch RAM",
.start = EXCITE_PHYS_SCRAM, .start = EXCITE_PHYS_SCRAM,
.end = EXCITE_PHYS_SCRAM + EXCITE_SIZE_SCRAM - 1, .end = EXCITE_PHYS_SCRAM + EXCITE_SIZE_SCRAM - 1,
...@@ -113,7 +113,7 @@ static struct resource ...@@ -113,7 +113,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_fpga_resource __attribute__((unused)) = { excite_fpga_resource __maybe_unused = {
.name = "System FPGA", .name = "System FPGA",
.start = EXCITE_PHYS_FPGA, .start = EXCITE_PHYS_FPGA,
.end = EXCITE_PHYS_FPGA + EXCITE_SIZE_FPGA - 1, .end = EXCITE_PHYS_FPGA + EXCITE_SIZE_FPGA - 1,
...@@ -122,7 +122,7 @@ static struct resource ...@@ -122,7 +122,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_nand_resource __attribute__((unused)) = { excite_nand_resource __maybe_unused = {
.name = "NAND flash control", .name = "NAND flash control",
.start = EXCITE_PHYS_NAND, .start = EXCITE_PHYS_NAND,
.end = EXCITE_PHYS_NAND + EXCITE_SIZE_NAND - 1, .end = EXCITE_PHYS_NAND + EXCITE_SIZE_NAND - 1,
...@@ -131,7 +131,7 @@ static struct resource ...@@ -131,7 +131,7 @@ static struct resource
.sibling = NULL, .sibling = NULL,
.child = NULL .child = NULL
}, },
excite_titan_resource __attribute__((unused)) = { excite_titan_resource __maybe_unused = {
.name = "TITAN registers", .name = "TITAN registers",
.start = EXCITE_PHYS_TITAN, .start = EXCITE_PHYS_TITAN,
.end = EXCITE_PHYS_TITAN + EXCITE_SIZE_TITAN - 1, .end = EXCITE_PHYS_TITAN + EXCITE_SIZE_TITAN - 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment