aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r--arch/sh/kernel/cpu/sh4a/clock-sh7785.c2
-rw-r--r--arch/sh/kernel/setup.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7785.c b/arch/sh/kernel/cpu/sh4a/clock-sh7785.c
index dae20aca536d..73abfbf2f16d 100644
--- a/arch/sh/kernel/cpu/sh4a/clock-sh7785.c
+++ b/arch/sh/kernel/cpu/sh4a/clock-sh7785.c
@@ -32,7 +32,7 @@ static unsigned long pll_recalc(struct clk *clk)
32{ 32{
33 int multiplier; 33 int multiplier;
34 34
35 multiplier = test_mode_pin(MODE_PIN_MODE4) ? 36 : 72; 35 multiplier = test_mode_pin(MODE_PIN4) ? 36 : 72;
36 36
37 return clk->parent->rate * multiplier; 37 return clk->parent->rate * multiplier;
38} 38}
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c
index 050131eec773..dd38338553ef 100644
--- a/arch/sh/kernel/setup.c
+++ b/arch/sh/kernel/setup.c
@@ -429,7 +429,7 @@ int generic_mode_pins(void)
429 429
430int test_mode_pin(int pin) 430int test_mode_pin(int pin)
431{ 431{
432 return sh_mv.mv_mode_pins() & (1 << pin); 432 return sh_mv.mv_mode_pins() & pin;
433} 433}
434 434
435static const char *cpu_name[] = { 435static const char *cpu_name[] = {