exynos: pinmux: remove unnecessary define
authorMinkyu Kang <mk7.kang@samsung.com>
Wed, 29 Jan 2014 08:03:58 +0000 (17:03 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 5 Feb 2014 06:37:56 +0000 (15:37 +0900)
The value of PERIPH_ID_COUNT was wrong, and unnecessary.

Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
arch/arm/cpu/armv7/exynos/clock.c
arch/arm/include/asm/arch-exynos/periph.h

index 5bde9d1..6807ff3 100644 (file)
@@ -26,7 +26,7 @@ struct clk_bit_info {
 };
 
 /* src_bit div_bit prediv_bit */
-static struct clk_bit_info clk_bit_info[PERIPH_ID_COUNT] = {
+static struct clk_bit_info clk_bit_info[] = {
        {0,     0,      -1},
        {4,     4,      -1},
        {8,     8,      -1},
index 6d77d80..5c1c3d4 100644 (file)
@@ -55,7 +55,6 @@ enum periph_id {
        PERIPH_ID_PWM4,
        PERIPH_ID_I2C10 = 203,
 
-       PERIPH_ID_COUNT,
        PERIPH_ID_NONE = -1,
 };