diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-09-21 09:58:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-09-21 09:58:30 +0000 |
commit | 87f5030d249c7b76ed7e87cf7d61421a30928012 (patch) | |
tree | f7d5245ac311ad536b4d1c7bef7616c8486ee7a4 /target/linux/atheros | |
parent | 06cce512643d4562f845e64e99c75e73c0ff755c (diff) | |
download | upstream-87f5030d249c7b76ed7e87cf7d61421a30928012.tar.gz upstream-87f5030d249c7b76ed7e87cf7d61421a30928012.tar.bz2 upstream-87f5030d249c7b76ed7e87cf7d61421a30928012.zip |
atheros: use the correct mtd erase callback in the spiflash driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17657 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros')
-rw-r--r-- | target/linux/atheros/patches-2.6.30/120-spiflash.patch | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/target/linux/atheros/patches-2.6.30/120-spiflash.patch b/target/linux/atheros/patches-2.6.30/120-spiflash.patch index 74f01f6525..e632060075 100644 --- a/target/linux/atheros/patches-2.6.30/120-spiflash.patch +++ b/target/linux/atheros/patches-2.6.30/120-spiflash.patch @@ -20,7 +20,7 @@ +obj-$(CONFIG_MTD_AR2315) += ar2315.o --- /dev/null +++ b/drivers/mtd/devices/ar2315.c -@@ -0,0 +1,518 @@ +@@ -0,0 +1,517 @@ + +/* + * MTD driver for the SPI Flash Memory support on Atheros AR2315 @@ -323,8 +323,7 @@ + spiflash_wait_complete(priv, 20); + + instr->state = MTD_ERASE_DONE; -+ if (instr->callback) -+ instr->callback(instr); ++ mtd_erase_callback(instr); + + return 0; +} |