diff options
author | ian <ian@FreeBSD.org> | 2013-03-31 12:51:56 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2013-03-31 12:51:56 +0000 |
commit | 1f73a954db5bb5e3e2a9a410eae7f420e2252b20 (patch) | |
tree | 0747ea8c51768e8e70b539bb76ebd12a83fce5c0 /sys/arm | |
parent | 82c4fc8ac4df3076c6c50946ec71454dcd4a31a2 (diff) | |
download | FreeBSD-src-1f73a954db5bb5e3e2a9a410eae7f420e2252b20.zip FreeBSD-src-1f73a954db5bb5e3e2a9a410eae7f420e2252b20.tar.gz |
Fix a typo in the CF device driver name that prevented instantiation.
Diffstat (limited to 'sys/arm')
-rw-r--r-- | sys/arm/at91/at91rm9200.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/at91/at91rm9200.c b/sys/arm/at91/at91rm9200.c index a3201e3..2c6073c 100644 --- a/sys/arm/at91/at91rm9200.c +++ b/sys/arm/at91/at91rm9200.c @@ -125,7 +125,7 @@ static const struct cpu_devs at91_devs[] = DEVICE("at91_tc", TC0, 0), DEVICE("at91_tc", TC1, 1), DEVICE("ohci", OHCI, 0), - DEVICE("af91_cfata", CF, 0), + DEVICE("at91_cfata", CF, 0), { 0, 0, 0, 0, 0 } }; |