diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-06-29 09:07:54 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-06-29 09:07:54 +0000 |
commit | c75d54bf3f77bbf850817b0c85d8b4f0e783691f (patch) | |
tree | aa91b279aaa37e72a95b00dc3bd8a7b6fda629c8 /target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch | |
parent | 4a759750deb3bef86d17d471d5b863d0008f1e08 (diff) | |
download | upstream-c75d54bf3f77bbf850817b0c85d8b4f0e783691f.tar.gz upstream-c75d54bf3f77bbf850817b0c85d8b4f0e783691f.tar.bz2 upstream-c75d54bf3f77bbf850817b0c85d8b4f0e783691f.zip |
[brcm63xx] fix watchdog and rng drivers section mismatch (#11767)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32522 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch b/target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch new file mode 100644 index 0000000000..ae4157774a --- /dev/null +++ b/target/linux/brcm63xx/patches-3.3/106-bcm63xx_watchdog_section_mismatch.patch @@ -0,0 +1,20 @@ +--- a/drivers/watchdog/bcm63xx_wdt.c ++++ b/drivers/watchdog/bcm63xx_wdt.c +@@ -301,7 +301,7 @@ static void bcm63xx_wdt_shutdown(struct + bcm63xx_wdt_pause(); + } + +-static struct platform_driver bcm63xx_wdt = { ++static struct platform_driver bcm63xx_wdt_driver = { + .probe = bcm63xx_wdt_probe, + .remove = __devexit_p(bcm63xx_wdt_remove), + .shutdown = bcm63xx_wdt_shutdown, +@@ -311,7 +311,7 @@ static struct platform_driver bcm63xx_wd + } + }; + +-module_platform_driver(bcm63xx_wdt); ++module_platform_driver(bcm63xx_wdt_driver); + + MODULE_AUTHOR("Miguel Gaio <miguel.gaio@efixo.com>"); + MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>"); |