Commit a01e035ebb552223c03f2d9138ffc73f2d4d3965

Authored by Harvey Harrison
Committed by Linus Torvalds
1 parent a6a3a17b7f

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>

Showing 6 changed files with 6 additions and 6 deletions Side-by-side Diff

drivers/char/cs5535_gpio.c
... ... @@ -215,7 +215,7 @@
215 215 else
216 216 mask = 0x0b003c66;
217 217  
218   - if (request_region(gpio_base, CS5535_GPIO_SIZE, NAME) == 0) {
  218 + if (!request_region(gpio_base, CS5535_GPIO_SIZE, NAME)) {
219 219 printk(KERN_ERR NAME ": can't allocate I/O for GPIO\n");
220 220 return -ENODEV;
221 221 }
drivers/char/n_hdlc.c
... ... @@ -501,7 +501,7 @@
501 501 __FILE__,__LINE__, count);
502 502  
503 503 /* This can happen if stuff comes in on the backup tty */
504   - if (n_hdlc == 0 || tty != n_hdlc->tty)
  504 + if (!n_hdlc || tty != n_hdlc->tty)
505 505 return;
506 506  
507 507 /* verify line is using HDLC discipline */
drivers/char/rio/rioroute.c
... ... @@ -526,7 +526,7 @@
526 526 ** If RTA is not powered on, the tx packets will be
527 527 ** unset, so go no further.
528 528 */
529   - if (PortP->TxStart == 0) {
  529 + if (!PortP->TxStart) {
530 530 rio_dprintk(RIO_DEBUG_ROUTE, "Tx pkts not set up yet\n");
531 531 rio_spin_unlock_irqrestore(&PortP->portSem, flags);
532 532 break;
drivers/firmware/iscsi_ibft_find.c
... ... @@ -58,7 +58,7 @@
58 58 unsigned int len = 0;
59 59 void *virt;
60 60  
61   - ibft_addr = 0;
  61 + ibft_addr = NULL;
62 62  
63 63 for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
64 64 /* The table can't be inside the VGA BIOS reserved space,
drivers/mtd/maps/plat-ram.c
... ... @@ -209,7 +209,7 @@
209 209 /* probe for the right mtd map driver
210 210 * supplied by the platform_data struct */
211 211  
212   - if (pdata->map_probes != 0) {
  212 + if (pdata->map_probes) {
213 213 const char **map_probes = pdata->map_probes;
214 214  
215 215 for ( ; !info->mtd && *map_probes; map_probes++)
drivers/pci/pcie/aer/aerdrv_acpi.c
... ... @@ -31,7 +31,7 @@
31 31 {
32 32 acpi_status status = AE_NOT_FOUND;
33 33 struct pci_dev *pdev = pciedev->port;
34   - acpi_handle handle = 0;
  34 + acpi_handle handle = NULL;
35 35  
36 36 if (acpi_pci_disabled)
37 37 return -1;