diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-10-03 18:42:37 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-10-03 18:42:37 +0000 |
commit | ba435fbe998f7a5b22cb053a23f196a5c520e66d (patch) | |
tree | af49a5e2e94db1bc8efeedd4c3db161d14fa24d8 /sys/dev/sdmmc/sdmmc_cis.c | |
parent | 6d1c5d24cc973dd87d53bbc6a0dbc51f8dffd75e (diff) |
Add missing <sys/device.h>.
ok deraadt@, miod@
Diffstat (limited to 'sys/dev/sdmmc/sdmmc_cis.c')
-rw-r--r-- | sys/dev/sdmmc/sdmmc_cis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sdmmc/sdmmc_cis.c b/sys/dev/sdmmc/sdmmc_cis.c index 47c21ccc01f..16a6890a8c7 100644 --- a/sys/dev/sdmmc/sdmmc_cis.c +++ b/sys/dev/sdmmc/sdmmc_cis.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sdmmc_cis.c,v 1.1 2006/06/01 21:53:41 uwe Exp $ */ +/* $OpenBSD: sdmmc_cis.c,v 1.2 2009/10/03 18:42:36 kettenis Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -19,6 +19,7 @@ /* Routines to decode the Card Information Structure of SD I/O cards */ #include <sys/param.h> +#include <sys/device.h> #include <sys/systm.h> #include <dev/sdmmc/sdmmc_ioreg.h> |