Commit 8088c0f2 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] more NULL noise removal

Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent decf8095
...@@ -1804,7 +1804,7 @@ static void diva_maint_trace_notify (void* user_context, ...@@ -1804,7 +1804,7 @@ static void diva_maint_trace_notify (void* user_context,
*/ */
if ((id >= 0) && (ch >= 0) && (id < sizeof(clients)/sizeof(clients[0])) && if ((id >= 0) && (ch >= 0) && (id < sizeof(clients)/sizeof(clients[0])) &&
(clients[id].Dbg.id == (byte)id) && (clients[id].pIdiLib == hLib)) { (clients[id].Dbg.id == (byte)id) && (clients[id].pIdiLib == hLib)) {
const char* p = 0; const char* p = NULL;
int ch_value = -1; int ch_value = -1;
MI_XLOG_HDR *TrcData = (MI_XLOG_HDR *)xlog_buffer; MI_XLOG_HDR *TrcData = (MI_XLOG_HDR *)xlog_buffer;
...@@ -2096,7 +2096,7 @@ static int diva_get_dma_descriptor (IDI_CALL request, dword *dma_magic) { ...@@ -2096,7 +2096,7 @@ static int diva_get_dma_descriptor (IDI_CALL request, dword *dma_magic) {
pReq->xdi_dma_descriptor_operation.info.operation = IDI_SYNC_REQ_DMA_DESCRIPTOR_ALLOC; pReq->xdi_dma_descriptor_operation.info.operation = IDI_SYNC_REQ_DMA_DESCRIPTOR_ALLOC;
pReq->xdi_dma_descriptor_operation.info.descriptor_number = -1; pReq->xdi_dma_descriptor_operation.info.descriptor_number = -1;
pReq->xdi_dma_descriptor_operation.info.descriptor_address = 0; pReq->xdi_dma_descriptor_operation.info.descriptor_address = NULL;
pReq->xdi_dma_descriptor_operation.info.descriptor_magic = 0; pReq->xdi_dma_descriptor_operation.info.descriptor_magic = 0;
(*request)((ENTITY*)pReq); (*request)((ENTITY*)pReq);
...@@ -2124,7 +2124,7 @@ static void diva_free_dma_descriptor (IDI_CALL request, int nr) { ...@@ -2124,7 +2124,7 @@ static void diva_free_dma_descriptor (IDI_CALL request, int nr) {
pReq->xdi_dma_descriptor_operation.info.operation = IDI_SYNC_REQ_DMA_DESCRIPTOR_FREE; pReq->xdi_dma_descriptor_operation.info.operation = IDI_SYNC_REQ_DMA_DESCRIPTOR_FREE;
pReq->xdi_dma_descriptor_operation.info.descriptor_number = nr; pReq->xdi_dma_descriptor_operation.info.descriptor_number = nr;
pReq->xdi_dma_descriptor_operation.info.descriptor_address = 0; pReq->xdi_dma_descriptor_operation.info.descriptor_address = NULL;
pReq->xdi_dma_descriptor_operation.info.descriptor_magic = 0; pReq->xdi_dma_descriptor_operation.info.descriptor_magic = 0;
(*request)((ENTITY*)pReq); (*request)((ENTITY*)pReq);
......
...@@ -144,7 +144,7 @@ static int maint_close(struct inode *ino, struct file *filep) ...@@ -144,7 +144,7 @@ static int maint_close(struct inode *ino, struct file *filep)
{ {
if (filep->private_data) { if (filep->private_data) {
diva_os_free(0, filep->private_data); diva_os_free(0, filep->private_data);
filep->private_data = 0; filep->private_data = NULL;
} }
/* clear 'used' flag */ /* clear 'used' flag */
......
...@@ -289,7 +289,7 @@ struct i2o_device *i2o_iop_find_device(struct i2o_controller *c, u16 tid) ...@@ -289,7 +289,7 @@ struct i2o_device *i2o_iop_find_device(struct i2o_controller *c, u16 tid)
if (dev->lct_data.tid == tid) if (dev->lct_data.tid == tid)
return dev; return dev;
return 0; return NULL;
}; };
/** /**
...@@ -978,7 +978,7 @@ int i2o_status_get(struct i2o_controller *c) ...@@ -978,7 +978,7 @@ int i2o_status_get(struct i2o_controller *c)
rmb(); rmb();
} }
#if DEBUG #ifdef DEBUG
i2o_debug_state(c); i2o_debug_state(c);
#endif #endif
......
...@@ -180,7 +180,7 @@ int nettel_eraseconfig(void) ...@@ -180,7 +180,7 @@ int nettel_eraseconfig(void)
if (mtd) { if (mtd) {
nettel_erase.mtd = mtd; nettel_erase.mtd = mtd;
nettel_erase.callback = nettel_erasecallback; nettel_erase.callback = nettel_erasecallback;
nettel_erase.callback = 0; nettel_erase.callback = NULL;
nettel_erase.addr = 0; nettel_erase.addr = 0;
nettel_erase.len = mtd->size; nettel_erase.len = mtd->size;
nettel_erase.priv = (u_long) &wait_q; nettel_erase.priv = (u_long) &wait_q;
......
...@@ -2307,7 +2307,7 @@ megaraid_isr(int irq, void *devp, struct pt_regs *regs) ...@@ -2307,7 +2307,7 @@ megaraid_isr(int irq, void *devp, struct pt_regs *regs)
/* Loop through any pending requests */ /* Loop through any pending requests */
if (!adapter->quiescent) { if (!adapter->quiescent) {
megaraid_mbox_runpendq(adapter, 0); megaraid_mbox_runpendq(adapter, NULL);
} }
return IRQ_RETVAL(handled); return IRQ_RETVAL(handled);
...@@ -3839,7 +3839,7 @@ megaraid_mbox_mm_done(adapter_t *adapter, scb_t *scb) ...@@ -3839,7 +3839,7 @@ megaraid_mbox_mm_done(adapter_t *adapter, scb_t *scb)
adapter->quiescent--; adapter->quiescent--;
megaraid_mbox_runpendq(adapter, 0); megaraid_mbox_runpendq(adapter, NULL);
} }
kioc->done(kioc); kioc->done(kioc);
......
...@@ -473,7 +473,7 @@ mraid_mm_attach_buf(mraid_mmadp_t *adp, uioc_t *kioc, int xferlen) ...@@ -473,7 +473,7 @@ mraid_mm_attach_buf(mraid_mmadp_t *adp, uioc_t *kioc, int xferlen)
int i; int i;
kioc->pool_index = -1; kioc->pool_index = -1;
kioc->buf_vaddr = 0; kioc->buf_vaddr = NULL;
kioc->buf_paddr = 0; kioc->buf_paddr = 0;
kioc->free_buf = 0; kioc->free_buf = 0;
...@@ -573,13 +573,13 @@ mraid_mm_alloc_kioc(mraid_mmadp_t *adp) ...@@ -573,13 +573,13 @@ mraid_mm_alloc_kioc(mraid_mmadp_t *adp)
memset((caddr_t)(unsigned long)kioc->cmdbuf, 0, sizeof(mbox64_t)); memset((caddr_t)(unsigned long)kioc->cmdbuf, 0, sizeof(mbox64_t));
memset((caddr_t) kioc->pthru32, 0, sizeof(mraid_passthru_t)); memset((caddr_t) kioc->pthru32, 0, sizeof(mraid_passthru_t));
kioc->buf_vaddr = 0; kioc->buf_vaddr = NULL;
kioc->buf_paddr = 0; kioc->buf_paddr = 0;
kioc->pool_index =-1; kioc->pool_index =-1;
kioc->free_buf = 0; kioc->free_buf = 0;
kioc->user_data = 0; kioc->user_data = NULL;
kioc->user_data_len = 0; kioc->user_data_len = 0;
kioc->user_pthru = 0; kioc->user_pthru = NULL;
return kioc; return kioc;
} }
...@@ -1091,7 +1091,7 @@ mraid_mm_teardown_dma_pools(mraid_mmadp_t *adp) ...@@ -1091,7 +1091,7 @@ mraid_mm_teardown_dma_pools(mraid_mmadp_t *adp)
pool->paddr); pool->paddr);
pci_pool_destroy(pool->handle); pci_pool_destroy(pool->handle);
pool->handle = 0; pool->handle = NULL;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment