Skip to content

Commit

Permalink
[SCSI] aic94xx: fix pointer to integer conversion warning
Browse files Browse the repository at this point in the history
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
James Bottomley committed Nov 22, 2006
1 parent 7b4feee commit e138a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/scsi/aic94xx/aic94xx_scb.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ static void escb_tasklet_complete(struct asd_ascb *ascb,
continue;
dev = task->dev;

x = (u16)dev->lldd_dev;
x = (unsigned long)dev->lldd_dev;
if (x == conn_handle) {
dev_phy = dev->port->phy;
task_kill_later(a);
Expand Down

0 comments on commit e138a5d

Please sign in to comment.