backports: fix patches for next-20130709
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>
Tue, 30 Jul 2013 03:15:44 +0000 (20:15 -0700)
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>
Tue, 30 Jul 2013 05:12:20 +0000 (22:12 -0700)
A hunk context was off for alx.

Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
patches/collateral-evolutions/network/11-dev-pm-ops/drivers_net_ethernet_atheros_alx_main.patch

index 626f5c5a25387d7f5a884c9b1351bf791ffad9ae..8dae6c06c0cab77f92e2d445e319706bb100ce37 100644 (file)
@@ -1,17 +1,18 @@
 --- a/drivers/net/ethernet/atheros/alx/main.c
 +++ b/drivers/net/ethernet/atheros/alx/main.c
-@@ -1593,6 +1593,8 @@ static const struct pci_error_handlers a
- };
+@@ -1404,6 +1404,9 @@ static int alx_resume(struct device *dev
+       return __alx_open(alx, true);
+ }
  
- #ifdef CONFIG_PM_SLEEP
 +compat_pci_suspend(alx_suspend);
 +compat_pci_resume(alx_resume);
++
  static SIMPLE_DEV_PM_OPS(alx_pm_ops, alx_suspend, alx_resume);
  #define ALX_PM_OPS      (&alx_pm_ops)
  #else
-@@ -1618,7 +1620,12 @@ static struct pci_driver alx_driver = {
+@@ -1506,7 +1509,12 @@ static struct pci_driver alx_driver = {
+       .probe       = alx_probe,
        .remove      = alx_remove,
-       .shutdown    = alx_shutdown,
        .err_handler = &alx_err_handlers,
 +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29))
        .driver.pm   = ALX_PM_OPS,