aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2013-02-04 10:19:50 +0000
committerJonas Gorski <jogo@openwrt.org>2013-02-04 10:19:50 +0000
commit3b4fced67dad0b733d77f78205cfecfc0d654695 (patch)
treea672ce6b4f937cdff5c23c4d96583c95c6357b9e /target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch
parent0e9365b3462d456baba85cad7269c85b0d0f7d8a (diff)
downloadupstream-3b4fced67dad0b733d77f78205cfecfc0d654695.tar.gz
upstream-3b4fced67dad0b733d77f78205cfecfc0d654695.tar.bz2
upstream-3b4fced67dad0b733d77f78205cfecfc0d654695.zip
bcm63xx: add support for linux 3.7
Based on 3.7.6. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 35481
Diffstat (limited to 'target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch')
-rw-r--r--target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch b/target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch
new file mode 100644
index 0000000000..a98bea9001
--- /dev/null
+++ b/target/linux/brcm63xx/patches-3.7/413-bcm63xx_enet-disable-clock-when-uninitializing-devic.patch
@@ -0,0 +1,20 @@
+From fd15ecd10c95480be5635f8993b781fe3a1527c2 Mon Sep 17 00:00:00 2001
+From: Maxime Bizon <mbizon@freebox.fr>
+Date: Fri, 29 Apr 2011 16:54:50 +0200
+Subject: [PATCH 29/63] bcm63xx_enet: disable clock when uninitializing device.
+
+---
+ drivers/net/ethernet/broadcom/bcm63xx_enet.c | 2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+--- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c
++++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
+@@ -1870,6 +1870,8 @@ static int __devexit bcm_enet_remove(str
+ }
+
+ /* release device resources */
++ clk_disable(priv->mac_clk);
++ clk_put(priv->mac_clk);
+ iounmap(priv->base);
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ release_mem_region(res->start, resource_size(res));
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353