svn commit: r285423 - head/sys/arm64/acpica

Zbigniew Bodek zbb at FreeBSD.org
Sun Jul 12 18:32:17 UTC 2015


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);
 }


More information about the svn-src-head mailing list