Commit e138a5d2 authored by James Bottomley's avatar James Bottomley

[SCSI] aic94xx: fix pointer to integer conversion warning

Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 7b4feee9
......@@ -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);
......
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