Reworked network and SCSI thread initialization and termination;
Hard disk controller name and other related strings are now char * instead of fixed-size arrays.
This commit is contained in:
@@ -45,7 +45,7 @@ device_init(void)
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
void *
|
||||
device_add(device_t *d)
|
||||
{
|
||||
void *priv = NULL;
|
||||
@@ -65,7 +65,9 @@ device_add(device_t *d)
|
||||
}
|
||||
|
||||
devices[c] = d;
|
||||
device_priv[c] = priv;
|
||||
device_priv[c] = priv;
|
||||
|
||||
return priv;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user