Date: Mon, 1 Sep 2014 19:20:34 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r270948 - in head/sys/arm: broadcom/bcm2835 freescale/imx ti Message-ID: <201409011920.s81JKYrk007754@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ian Date: Mon Sep 1 19:20:34 2014 New Revision: 270948 URL: http://svnweb.freebsd.org/changeset/base/270948 Log: sdhci.h has grown a dependency on sysctl.h, include the latter where needed. Modified: head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c head/sys/arm/freescale/imx/imx_sdhci.c head/sys/arm/ti/ti_sdhci.c Modified: head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c ============================================================================== --- head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c Mon Sep 1 18:57:13 2014 (r270947) +++ head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c Mon Sep 1 19:20:34 2014 (r270948) @@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include <sys/queue.h> #include <sys/resource.h> #include <sys/rman.h> +#include <sys/sysctl.h> #include <sys/taskqueue.h> #include <sys/time.h> #include <sys/timetc.h> Modified: head/sys/arm/freescale/imx/imx_sdhci.c ============================================================================== --- head/sys/arm/freescale/imx/imx_sdhci.c Mon Sep 1 18:57:13 2014 (r270947) +++ head/sys/arm/freescale/imx/imx_sdhci.c Mon Sep 1 19:20:34 2014 (r270948) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/resource.h> #include <sys/rman.h> +#include <sys/sysctl.h> #include <sys/taskqueue.h> #include <sys/time.h> Modified: head/sys/arm/ti/ti_sdhci.c ============================================================================== --- head/sys/arm/ti/ti_sdhci.c Mon Sep 1 18:57:13 2014 (r270947) +++ head/sys/arm/ti/ti_sdhci.c Mon Sep 1 19:20:34 2014 (r270948) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/module.h> #include <sys/resource.h> #include <sys/rman.h> +#include <sys/sysctl.h> #include <sys/taskqueue.h> #include <machine/bus.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409011920.s81JKYrk007754>