mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-02 18:17:50 -04:00
powerpc/boot: remove unused variable in mpc8xx
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>
This commit is contained in:
committed by
Michael Ellerman
parent
0cc377d16e
commit
169f438a7e
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user