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>
This commit is contained in:
parent
a6a3a17b7f
commit
a01e035ebb
@ -215,7 +215,7 @@ static int __init cs5535_gpio_init(void)
|
|||||||
else
|
else
|
||||||
mask = 0x0b003c66;
|
mask = 0x0b003c66;
|
||||||
|
|
||||||
if (request_region(gpio_base, CS5535_GPIO_SIZE, NAME) == 0) {
|
if (!request_region(gpio_base, CS5535_GPIO_SIZE, NAME)) {
|
||||||
printk(KERN_ERR NAME ": can't allocate I/O for GPIO\n");
|
printk(KERN_ERR NAME ": can't allocate I/O for GPIO\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
@ -501,7 +501,7 @@ static void n_hdlc_tty_receive(struct tty_struct *tty, const __u8 *data,
|
|||||||
__FILE__,__LINE__, count);
|
__FILE__,__LINE__, count);
|
||||||
|
|
||||||
/* This can happen if stuff comes in on the backup tty */
|
/* This can happen if stuff comes in on the backup tty */
|
||||||
if (n_hdlc == 0 || tty != n_hdlc->tty)
|
if (!n_hdlc || tty != n_hdlc->tty)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* verify line is using HDLC discipline */
|
/* verify line is using HDLC discipline */
|
||||||
|
@ -526,7 +526,7 @@ void RIOFixPhbs(struct rio_info *p, struct Host *HostP, unsigned int unit)
|
|||||||
** If RTA is not powered on, the tx packets will be
|
** If RTA is not powered on, the tx packets will be
|
||||||
** unset, so go no further.
|
** unset, so go no further.
|
||||||
*/
|
*/
|
||||||
if (PortP->TxStart == 0) {
|
if (!PortP->TxStart) {
|
||||||
rio_dprintk(RIO_DEBUG_ROUTE, "Tx pkts not set up yet\n");
|
rio_dprintk(RIO_DEBUG_ROUTE, "Tx pkts not set up yet\n");
|
||||||
rio_spin_unlock_irqrestore(&PortP->portSem, flags);
|
rio_spin_unlock_irqrestore(&PortP->portSem, flags);
|
||||||
break;
|
break;
|
||||||
|
@ -58,7 +58,7 @@ void __init reserve_ibft_region(void)
|
|||||||
unsigned int len = 0;
|
unsigned int len = 0;
|
||||||
void *virt;
|
void *virt;
|
||||||
|
|
||||||
ibft_addr = 0;
|
ibft_addr = NULL;
|
||||||
|
|
||||||
for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
|
for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
|
||||||
/* The table can't be inside the VGA BIOS reserved space,
|
/* The table can't be inside the VGA BIOS reserved space,
|
||||||
|
@ -209,7 +209,7 @@ static int platram_probe(struct platform_device *pdev)
|
|||||||
/* probe for the right mtd map driver
|
/* probe for the right mtd map driver
|
||||||
* supplied by the platform_data struct */
|
* supplied by the platform_data struct */
|
||||||
|
|
||||||
if (pdata->map_probes != 0) {
|
if (pdata->map_probes) {
|
||||||
const char **map_probes = pdata->map_probes;
|
const char **map_probes = pdata->map_probes;
|
||||||
|
|
||||||
for ( ; !info->mtd && *map_probes; map_probes++)
|
for ( ; !info->mtd && *map_probes; map_probes++)
|
||||||
|
@ -31,7 +31,7 @@ int aer_osc_setup(struct pcie_device *pciedev)
|
|||||||
{
|
{
|
||||||
acpi_status status = AE_NOT_FOUND;
|
acpi_status status = AE_NOT_FOUND;
|
||||||
struct pci_dev *pdev = pciedev->port;
|
struct pci_dev *pdev = pciedev->port;
|
||||||
acpi_handle handle = 0;
|
acpi_handle handle = NULL;
|
||||||
|
|
||||||
if (acpi_pci_disabled)
|
if (acpi_pci_disabled)
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user