mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
[SCSI] aic94xx: fix pointer to integer conversion warning
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
7b4feee973
commit
e138a5d235
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue