mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 03:20:25 -04:00
[SCSI] aic94xx: fix pointer to integer conversion warning
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user