mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
ata: ahci-pci: Use scsi_ops to initialize ops
Without this fix, scsi-scan will cause a synchronous abort when accessing ops->scan. Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9fe79ca0ac
commit
ada6894feb
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <ahci.h>
|
#include <ahci.h>
|
||||||
|
#include <scsi.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <pci.h>
|
#include <pci.h>
|
||||||
|
|
||||||
|
@ -28,6 +29,7 @@ static const struct udevice_id ahci_pci_ids[] = {
|
||||||
U_BOOT_DRIVER(ahci_pci) = {
|
U_BOOT_DRIVER(ahci_pci) = {
|
||||||
.name = "ahci_pci",
|
.name = "ahci_pci",
|
||||||
.id = UCLASS_AHCI,
|
.id = UCLASS_AHCI,
|
||||||
|
.ops = &scsi_ops,
|
||||||
.of_match = ahci_pci_ids,
|
.of_match = ahci_pci_ids,
|
||||||
.bind = ahci_pci_bind,
|
.bind = ahci_pci_bind,
|
||||||
.probe = ahci_pci_probe,
|
.probe = ahci_pci_probe,
|
||||||
|
|
Loading…
Add table
Reference in a new issue