diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-22 15:51:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-22 15:51:28 -0400 |
commit | a9b011f5ac57cbaedb32a8149f3d39d7b2c1f0e0 (patch) | |
tree | 89c850cc9e2ed949f5fc3b99180cd6cb70db6160 /drivers/s390/net/netiucv.c | |
parent | b5bdd43876e475724c662f99206f0349c67e33e6 (diff) | |
parent | da6330fccc251db73945ee3eb6248985cf2574de (diff) |
Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6: (22 commits)
[S390] Update default configuration.
[S390] kprobes: defer setting of ctlblk state
[S390] Enable tick based perf_counter on s390.
[S390] dasd: fix refcounting in dasd_change_state
[S390] lockless idle time accounting
[S390] driver_data access
[S390] pm: fix build error for !SMP
[S390] dasd_pm: fix stop flag handling
[S390] ap/zcrypt: Suspend/Resume ap bus and zcrypt
[S390] qdio: Sanitize do_QDIO sanity checks
[S390] qdio: leave inbound SBALs primed
[S390] qdio: merge AI tasklet into interrupt handler
[S390] qdio: extract all primed SBALs at once
[S390] qdio: fix check for running under z/VM
[S390] qdio: move adapter interrupt tasklet code
[S390] Use del_timer instead of del_timer_sync
[S390] s390: remove DEBUG_MALLOC
[S390] vt220 console: convert from bootmem to slab
[S390] sclp console: convert from bootmem to slab
[S390] 3270 console: convert from bootmem to slab
...
Diffstat (limited to 'drivers/s390/net/netiucv.c')
-rw-r--r-- | drivers/s390/net/netiucv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/net/netiucv.c b/drivers/s390/net/netiucv.c index 52574ce797b2..8c36eafcfbfe 100644 --- a/drivers/s390/net/netiucv.c +++ b/drivers/s390/net/netiucv.c | |||
@@ -1307,7 +1307,7 @@ static void netiucv_pm_complete(struct device *dev) | |||
1307 | */ | 1307 | */ |
1308 | static int netiucv_pm_freeze(struct device *dev) | 1308 | static int netiucv_pm_freeze(struct device *dev) |
1309 | { | 1309 | { |
1310 | struct netiucv_priv *priv = dev->driver_data; | 1310 | struct netiucv_priv *priv = dev_get_drvdata(dev); |
1311 | struct net_device *ndev = NULL; | 1311 | struct net_device *ndev = NULL; |
1312 | int rc = 0; | 1312 | int rc = 0; |
1313 | 1313 | ||
@@ -1331,7 +1331,7 @@ out: | |||
1331 | */ | 1331 | */ |
1332 | static int netiucv_pm_restore_thaw(struct device *dev) | 1332 | static int netiucv_pm_restore_thaw(struct device *dev) |
1333 | { | 1333 | { |
1334 | struct netiucv_priv *priv = dev->driver_data; | 1334 | struct netiucv_priv *priv = dev_get_drvdata(dev); |
1335 | struct net_device *ndev = NULL; | 1335 | struct net_device *ndev = NULL; |
1336 | int rc = 0; | 1336 | int rc = 0; |
1337 | 1337 | ||