]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nios2: Remove write-only struct member from nios2_timer
authorTobias Klauser <tklauser@distanz.ch>
Mon, 24 Nov 2014 07:48:20 +0000 (15:48 +0800)
committerLey Foon Tan <lftan@altera.com>
Mon, 8 Dec 2014 04:56:12 +0000 (12:56 +0800)
The irq member of struct nios2_timer is only written to but
never read, thus it can be removed.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Ley Foon Tan <lftan@altera.com>
arch/nios2/kernel/time.c

index 23729e81de4a35058a1cc1dfc3345f59df78581a..7f4547418ee1c8cb5ae5a2fa8398a39da068f406 100644 (file)
@@ -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);