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/firmware | |
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/firmware')
-rw-r--r-- | drivers/firmware/iscsi_ibft_find.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/iscsi_ibft_find.c b/drivers/firmware/iscsi_ibft_find.c index d0e5fa4ea51b..11f17440fea6 100644 --- a/drivers/firmware/iscsi_ibft_find.c +++ b/drivers/firmware/iscsi_ibft_find.c | |||
@@ -58,7 +58,7 @@ void __init reserve_ibft_region(void) | |||
58 | unsigned int len = 0; | 58 | unsigned int len = 0; |
59 | void *virt; | 59 | void *virt; |
60 | 60 | ||
61 | ibft_addr = 0; | 61 | ibft_addr = NULL; |
62 | 62 | ||
63 | for (pos = IBFT_START; pos < IBFT_END; pos += 16) { | 63 | for (pos = IBFT_START; pos < IBFT_END; pos += 16) { |
64 | /* The table can't be inside the VGA BIOS reserved space, | 64 | /* The table can't be inside the VGA BIOS reserved space, |