Commit 90f49c9d authored by Tobias Klauser's avatar Tobias Klauser Committed by Ley Foon Tan

nios2: Remove write-only struct member from nios2_timer

The irq member of struct nios2_timer is only written to but
never read, thus it can be removed.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Acked-by: default avatarLey Foon Tan <lftan@altera.com>
parent 01eca3b1
......@@ -33,7 +33,6 @@
struct nios2_timer {
void __iomem *base;
unsigned long freq;
int irq;
};
struct nios2_clockevent_dev {
......@@ -232,7 +231,6 @@ static __init void nios2_clockevent_init(struct device_node *timer)
panic("Unable to parse timer irq\n");
nios2_ce.timer.base = iobase;
nios2_ce.timer.irq = irq;
nios2_ce.timer.freq = freq;
nios2_ce.ced.cpumask = cpumask_of(0);
......
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