Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Harvey Harrison and committed by
Linus Torvalds
a01e035e a6a3a17b

+6 -6
+1 -1
drivers/char/cs5535_gpio.c
··· 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 }
+1 -1
drivers/char/n_hdlc.c
··· 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 */
+1 -1
drivers/char/rio/rioroute.c
··· 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;
+1 -1
drivers/firmware/iscsi_ibft_find.c
··· 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,
+1 -1
drivers/mtd/maps/plat-ram.c
··· 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++)
+1 -1
drivers/pci/pcie/aer/aerdrv_acpi.c
··· 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;