diff options
author | Matteo Croce <matteo@openwrt.org> | 2008-04-07 01:30:07 +0000 |
---|---|---|
committer | Matteo Croce <matteo@openwrt.org> | 2008-04-07 01:30:07 +0000 |
commit | e01a8b0a682b9f588bd7954635029646e157f8f4 (patch) | |
tree | 16d779b988d994cedb5768206dd57bac1371b0cb /target/linux/ar7/files/arch | |
parent | 2b9c372346eda49110fb236ba7ef6a36dcc2f52b (diff) | |
download | upstream-e01a8b0a682b9f588bd7954635029646e157f8f4.tar.gz upstream-e01a8b0a682b9f588bd7954635029646e157f8f4.tar.bz2 upstream-e01a8b0a682b9f588bd7954635029646e157f8f4.zip |
ar7: remove unneeded packed and array initialization
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10752 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/files/arch')
-rw-r--r-- | target/linux/ar7/files/arch/mips/ar7/clock.c | 8 | ||||
-rw-r--r-- | target/linux/ar7/files/arch/mips/ar7/gpio.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/ar7/files/arch/mips/ar7/clock.c b/target/linux/ar7/files/arch/mips/ar7/clock.c index 5a1c4fea14..0f7e2d7eeb 100644 --- a/target/linux/ar7/files/arch/mips/ar7/clock.c +++ b/target/linux/ar7/files/arch/mips/ar7/clock.c @@ -61,14 +61,14 @@ struct tnetd7300_clock { #define PLL_DIV 0x00000002 #define PLL_STATUS 0x00000001 u32 unused2[3]; -} __packed; +}; struct tnetd7300_clocks { struct tnetd7300_clock bus; struct tnetd7300_clock cpu; struct tnetd7300_clock usb; struct tnetd7300_clock dsp; -} __packed; +}; struct tnetd7200_clock { volatile u32 ctrl; @@ -83,13 +83,13 @@ struct tnetd7200_clock { volatile u32 status; volatile u32 cmden; u32 padding[15]; -} __packed; +}; struct tnetd7200_clocks { struct tnetd7200_clock cpu; struct tnetd7200_clock dsp; struct tnetd7200_clock usb; -} __packed; +}; int ar7_cpu_clock = 150000000; EXPORT_SYMBOL(ar7_cpu_clock); diff --git a/target/linux/ar7/files/arch/mips/ar7/gpio.c b/target/linux/ar7/files/arch/mips/ar7/gpio.c index a04981a6c0..207d270934 100644 --- a/target/linux/ar7/files/arch/mips/ar7/gpio.c +++ b/target/linux/ar7/files/arch/mips/ar7/gpio.c @@ -21,7 +21,7 @@ #include <asm/ar7/gpio.h> -static const char *ar7_gpio_list[AR7_GPIO_MAX] = { 0, }; +static const char *ar7_gpio_list[AR7_GPIO_MAX]; int gpio_request(unsigned gpio, const char *label) { |