diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-05-05 17:31:36 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-05-05 17:31:36 +0000 |
commit | 5eb551c3a5b0989338a56db4833a67564a617815 (patch) | |
tree | c1a362b35bb21453a55b486942fd42480158fb22 /target | |
parent | 5edcbd23a44050241b395dc85741ac18ef1dbd9e (diff) | |
download | upstream-5eb551c3a5b0989338a56db4833a67564a617815.tar.gz upstream-5eb551c3a5b0989338a56db4833a67564a617815.tar.bz2 upstream-5eb551c3a5b0989338a56db4833a67564a617815.zip |
fix size calculation of the radio_config
SVN-Revision: 11049
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/atheros/files/arch/mips/atheros/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/atheros/files/arch/mips/atheros/board.c b/target/linux/atheros/files/arch/mips/atheros/board.c index 1b1e04fcee..ba427883a7 100644 --- a/target/linux/atheros/files/arch/mips/atheros/board.c +++ b/target/linux/atheros/files/arch/mips/atheros/board.c @@ -121,7 +121,7 @@ int __init ar531x_find_config(char *flash_limit) radio_config = board_config + 0x100 + ((rcfg - bcfg) & 0xfff); printk("Radio config found at offset 0x%x(0x%x)\n", rcfg - bcfg, radio_config - board_config); - rcfg_size = BOARD_CONFIG_BUFSZ - ((rcfg - bcfg) & (BOARD_CONFIG_BUFSZ - 1)); + rcfg_size = BOARD_CONFIG_BUFSZ - ((0x100 + rcfg - bcfg) & (BOARD_CONFIG_BUFSZ - 1)); memcpy(radio_config, rcfg, rcfg_size); return 0; |