From owner-svn-src-all@freebsd.org Sun Jul 12 18:32:17 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EC93999881; Sun, 12 Jul 2015 18:32:17 +0000 (UTC) (envelope-from zbb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F75E120D; Sun, 12 Jul 2015 18:32:17 +0000 (UTC) (envelope-from zbb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6CIWHMp055512; Sun, 12 Jul 2015 18:32:17 GMT (envelope-from zbb@FreeBSD.org) Received: (from zbb@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6CIWHKE055511; Sun, 12 Jul 2015 18:32:17 GMT (envelope-from zbb@FreeBSD.org) Message-Id: <201507121832.t6CIWHKE055511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zbb set sender to zbb@FreeBSD.org using -f From: Zbigniew Bodek Date: Sun, 12 Jul 2015 18:32:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r285423 - head/sys/arm64/acpica X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jul 2015 18:32:17 -0000 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); }