diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-02-16 04:40:06 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-21 04:58:17 -0500 |
commit | 8d9db2d2fbae9e05022825c32f86e00c8e342860 (patch) | |
tree | d59c4d88d62253ba40afa99b76052faf3afa0f67 /drivers/ata/sata_mv.c | |
parent | 2cb27853b7cbf0c908444e25c61b62fa336b88cd (diff) |
SATA: use NULL for ptrs
Fix sparse warnings in SATA:
drivers/ata/sata_sil.c:342:9: warning: Using plain integer as NULL pointer
drivers/ata/sata_mv.c:2056:55: warning: Using plain integer as NULL pointer
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/sata_mv.c')
-rw-r--r-- | drivers/ata/sata_mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index d689df52eae3..c73aa3bbaa3e 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -2052,7 +2052,7 @@ static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio) | |||
2052 | port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST_OFS; | 2052 | port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST_OFS; |
2053 | 2053 | ||
2054 | /* unused: */ | 2054 | /* unused: */ |
2055 | port->cmd_addr = port->bmdma_addr = port->scr_addr = 0; | 2055 | port->cmd_addr = port->bmdma_addr = port->scr_addr = NULL; |
2056 | 2056 | ||
2057 | /* Clear any currently outstanding port interrupt conditions */ | 2057 | /* Clear any currently outstanding port interrupt conditions */ |
2058 | serr_ofs = mv_scr_offset(SCR_ERROR); | 2058 | serr_ofs = mv_scr_offset(SCR_ERROR); |