Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18132
b: refs/heads/master
c: a5d361f
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 12, 2006
1 parent 1018492 commit 38e0653
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 031eb4cddec7a4825212ece47de4bd64cd8e0bee
refs/heads/master: a5d361fc24b75ea51e219367ee32c64422a2134f
4 changes: 2 additions & 2 deletions trunk/arch/m68k/mac/iop.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ void __init iop_init(void)
}

for (i = 0 ; i < NUM_IOP_CHAN ; i++) {
iop_send_queue[IOP_NUM_SCC][i] = 0;
iop_send_queue[IOP_NUM_ISM][i] = 0;
iop_send_queue[IOP_NUM_SCC][i] = NULL;
iop_send_queue[IOP_NUM_ISM][i] = NULL;
iop_listeners[IOP_NUM_SCC][i].devname = NULL;
iop_listeners[IOP_NUM_SCC][i].handler = NULL;
iop_listeners[IOP_NUM_ISM][i].devname = NULL;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/macintosh/adb-iop.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ static int adb_iop_write(struct adb_request *req)

local_irq_save(flags);

req->next = 0;
req->next = NULL;
req->sent = 0;
req->complete = 0;
req->reply_len = 0;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/macintosh/via-macii.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static int macii_write(struct adb_request *req)
return -EINVAL;
}

req->next = 0;
req->next = NULL;
req->sent = 0;
req->complete = 0;
req->reply_len = 0;
Expand Down Expand Up @@ -295,7 +295,7 @@ static void macii_poll(void)
unsigned long flags;

local_irq_save(flags);
if (via[IFR] & SR_INT) macii_interrupt(0, 0, 0);
if (via[IFR] & SR_INT) macii_interrupt(0, NULL, NULL);
local_irq_restore(flags);
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/macintosh/via-maciisi.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ maciisi_write(struct adb_request* req)
req->complete = 1;
return -EINVAL;
}
req->next = 0;
req->next = NULL;
req->sent = 0;
req->complete = 0;
req->reply_len = 0;
Expand Down Expand Up @@ -421,7 +421,7 @@ maciisi_poll(void)

local_irq_save(flags);
if (via[IFR] & SR_INT) {
maciisi_interrupt(0, 0, 0);
maciisi_interrupt(0, NULL, NULL);
}
else /* avoid calling this function too quickly in a loop */
udelay(ADB_DELAY);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/macintosh/via-pmu68k.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ pmu_queue_request(struct adb_request *req)
return -EINVAL;
}

req->next = 0;
req->next = NULL;
req->sent = 0;
req->complete = 0;
local_irq_save(flags);
Expand Down Expand Up @@ -717,7 +717,7 @@ pmu_handle_data(unsigned char *data, int len, struct pt_regs *regs)
printk(KERN_ERR "PMU: extra ADB reply\n");
return;
}
req_awaiting_reply = 0;
req_awaiting_reply = NULL;
if (len <= 2)
req->reply_len = 0;
else {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/hplance.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ static void __init hplance_init(struct net_device *dev, struct dio_dev *d)
lp->lance.name = (char*)d->name; /* discards const, shut up gcc */
lp->lance.base = va;
lp->lance.init_block = (struct lance_init_block *)(va + HPLANCE_MEMOFF); /* CPU addr */
lp->lance.lance_init_block = 0; /* LANCE addr of same RAM */
lp->lance.lance_init_block = NULL; /* LANCE addr of same RAM */
lp->lance.busmaster_regval = LE_C3_BSWP; /* we're bigendian */
lp->lance.irq = d->ipl;
lp->lance.writerap = hplance_writerap;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/sun3lance.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ static int __init lance_probe( struct net_device *dev)
dev->stop = &lance_close;
dev->get_stats = &lance_get_stats;
dev->set_multicast_list = &set_multicast_list;
dev->set_mac_address = 0;
dev->set_mac_address = NULL;
// KLUDGE -- REMOVE ME
set_bit(__LINK_STATE_PRESENT, &dev->state);

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/wd33c93.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ wd33c93_execute(struct Scsi_Host *instance)
*/

cmd = (struct scsi_cmnd *) hostdata->input_Q;
prev = 0;
prev = NULL;
while (cmd) {
if (!(hostdata->busy[cmd->device->id] & (1 << cmd->device->lun)))
break;
Expand Down Expand Up @@ -1569,7 +1569,7 @@ wd33c93_abort(struct scsi_cmnd * cmd)
*/

tmp = (struct scsi_cmnd *) hostdata->input_Q;
prev = 0;
prev = NULL;
while (tmp) {
if (tmp == cmd) {
if (prev)
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-m68k/floppy.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ asmlinkage irqreturn_t floppy_hardint(int irq, void *dev_id,

static int virtual_dma_count=0;
static int virtual_dma_residue=0;
static char *virtual_dma_addr=0;
static char *virtual_dma_addr=NULL;
static int virtual_dma_mode=0;
static int doing_pdma=0;

Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-m68k/sun3xflop.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static int sun3xflop_request_irq(void)

if(!once) {
once = 1;
error = request_irq(FLOPPY_IRQ, sun3xflop_hardint, SA_INTERRUPT, "floppy", 0);
error = request_irq(FLOPPY_IRQ, sun3xflop_hardint, SA_INTERRUPT, "floppy", NULL);
return ((error == 0) ? 0 : -1);
} else return 0;
}
Expand Down Expand Up @@ -238,7 +238,7 @@ static int sun3xflop_init(void)
*sun3x_fdc.fcr_r = 0;

/* Success... */
floppy_set_flags(0, 1, FD_BROKEN_DCL); // I don't know how to detect this.
floppy_set_flags(NULL, 1, FD_BROKEN_DCL); // I don't know how to detect this.
allowed_drive_mask = 0x01;
return (int) SUN3X_FDC;
}
Expand Down

0 comments on commit 38e0653

Please sign in to comment.