Date: Sun, 12 Jul 2015 18:32:17 +0000 (UTC) From: Zbigniew Bodek <zbb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r285423 - head/sys/arm64/acpica Message-ID: <201507121832.t6CIWHKE055511@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zbb Date: Sun Jul 12 18:32:16 2015 New Revision: 285423 URL: https://svnweb.freebsd.org/changeset/base/285423 Log: Add ARM64TODO comments to ACPI PCI stubs This will make searching for missing functionalities easier. Modified: head/sys/arm64/acpica/pci_cfgreg.c Modified: head/sys/arm64/acpica/pci_cfgreg.c ============================================================================== --- head/sys/arm64/acpica/pci_cfgreg.c Sun Jul 12 18:14:38 2015 (r285422) +++ head/sys/arm64/acpica/pci_cfgreg.c Sun Jul 12 18:32:16 2015 (r285423) @@ -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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507121832.t6CIWHKE055511>