Stay up to date with the latest ATA developments, where
ata_channel.locking now returns an int. Approved by: grehan (mentor)
This commit is contained in:
parent
4b56362acc
commit
b5e198694f
@ -90,10 +90,11 @@ static driver_t ata_kauai_driver = {
|
|||||||
|
|
||||||
DRIVER_MODULE(ata, pci, ata_kauai_driver, ata_devclass, 0, 0);
|
DRIVER_MODULE(ata, pci, ata_kauai_driver, ata_devclass, 0, 0);
|
||||||
|
|
||||||
static void
|
static int
|
||||||
ata_kauai_locknoop(struct ata_channel *ch, int type)
|
ata_kauai_locknoop(struct ata_channel *ch, int type)
|
||||||
{
|
{
|
||||||
/* XXX SMP ? */
|
/* XXX SMP ? */
|
||||||
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -80,10 +80,11 @@ static driver_t ata_macio_driver = {
|
|||||||
|
|
||||||
DRIVER_MODULE(ata, macio, ata_macio_driver, ata_devclass, 0, 0);
|
DRIVER_MODULE(ata, macio, ata_macio_driver, ata_devclass, 0, 0);
|
||||||
|
|
||||||
static void
|
static int
|
||||||
ata_macio_locknoop(struct ata_channel *ch, int type)
|
ata_macio_locknoop(struct ata_channel *ch, int type)
|
||||||
{
|
{
|
||||||
/* XXX SMP ? */
|
/* XXX SMP ? */
|
||||||
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user