diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 19:50:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 20:31:13 -0400 |
commit | a01e035ebb552223c03f2d9138ffc73f2d4d3965 (patch) | |
tree | 3d5516138e2c973ce51c808677faba2c52d15d0a /drivers/char/rio | |
parent | a6a3a17b7fdaf824e6d73e8e4a94c9d149302f74 (diff) |
drivers: fix integer as NULL pointer warnings
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/rio')
-rw-r--r-- | drivers/char/rio/rioroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rio/rioroute.c b/drivers/char/rio/rioroute.c index 85091ff74d96..7a9df7dcf9a8 100644 --- a/drivers/char/rio/rioroute.c +++ b/drivers/char/rio/rioroute.c | |||
@@ -526,7 +526,7 @@ void RIOFixPhbs(struct rio_info *p, struct Host *HostP, unsigned int unit) | |||
526 | ** If RTA is not powered on, the tx packets will be | 526 | ** If RTA is not powered on, the tx packets will be |
527 | ** unset, so go no further. | 527 | ** unset, so go no further. |
528 | */ | 528 | */ |
529 | if (PortP->TxStart == 0) { | 529 | if (!PortP->TxStart) { |
530 | rio_dprintk(RIO_DEBUG_ROUTE, "Tx pkts not set up yet\n"); | 530 | rio_dprintk(RIO_DEBUG_ROUTE, "Tx pkts not set up yet\n"); |
531 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 531 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
532 | break; | 532 | break; |