]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
powerpc/boot: remove unused variable in mpc8xx
authorChristophe Leroy <christophe.leroy@c-s.fr>
Tue, 17 Apr 2018 12:36:45 +0000 (14:36 +0200)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 3 Jun 2018 14:39:17 +0000 (00:39 +1000)
Variable div is set but never used. Remove it.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/boot/mpc8xx.c

index add55a7f184fab88896dd08412a175a145b859e9..c9bd9285c54898b5fec4f0f9881c662311da5b89 100644 (file)
@@ -24,7 +24,7 @@ u32 mpc885_get_clock(u32 crystal)
 {
        u32 *immr;
        u32 plprcr;
-       int mfi, mfn, mfd, pdf, div;
+       int mfi, mfn, mfd, pdf;
        u32 ret;
 
        immr = fsl_get_immr();
@@ -43,7 +43,6 @@ u32 mpc885_get_clock(u32 crystal)
        }
 
        pdf = (plprcr >> 1) & 0xf;
-       div = (plprcr >> 20) & 3;
        mfd = (plprcr >> 22) & 0x1f;
        mfn = (plprcr >> 27) & 0x1f;