diff options
author | gonzo <gonzo@FreeBSD.org> | 2009-05-13 18:42:49 +0000 |
---|---|---|
committer | gonzo <gonzo@FreeBSD.org> | 2009-05-13 18:42:49 +0000 |
commit | d1ac4eea2151e9a6b6189f2e017193a771d4ab30 (patch) | |
tree | d542a02d1f2ea7b9ecce3027307c3b51b784af07 /sys/arm/at91 | |
parent | ec81c49a42e53690c8adedbdb0196fada4713c4c (diff) | |
download | FreeBSD-src-d1ac4eea2151e9a6b6189f2e017193a771d4ab30.zip FreeBSD-src-d1ac4eea2151e9a6b6189f2e017193a771d4ab30.tar.gz |
- Make SPI bus bridge be non-arch dependent by using more generic
name
Reviewed by: imp
Diffstat (limited to 'sys/arm/at91')
-rw-r--r-- | sys/arm/at91/at91_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/at91/at91_spi.c b/sys/arm/at91/at91_spi.c index 53c3380..2252f00 100644 --- a/sys/arm/at91/at91_spi.c +++ b/sys/arm/at91/at91_spi.c @@ -297,7 +297,7 @@ static device_method_t at91_spi_methods[] = { }; static driver_t at91_spi_driver = { - "at91_spi", + "spi", at91_spi_methods, sizeof(struct at91_spi_softc), }; |