Add ARM64TODO comments to ACPI PCI stubs

This will make searching for missing functionalities easier.
This commit is contained in:
Zbigniew Bodek 2015-07-12 18:32:16 +00:00
parent 3aa77530ca
commit 686836faca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285423

View File

@ -47,6 +47,7 @@ uint32_t
pci_cfgregread(int bus, int slot, int func, int reg, int bytes)
{
/* ARM64TODO */
panic("pci_cfgregread not implemented");
return (0);
}
@ -58,6 +59,7 @@ void
pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes)
{
/* ARM64TODO */
panic("pci_cfgregwrite not implemented");
}
@ -68,6 +70,7 @@ int
pci_cfgregopen(void)
{
/* ARM64TODO */
panic("pci_cfgregopen not implemented");
return (0);
}