svn commit: r243177 - in head/sys/mips: atheros conf
Adrian Chadd
adrian at FreeBSD.org
Sat Nov 17 04:05:47 UTC 2012
Author: adrian
Date: Sat Nov 17 04:05:46 2012
New Revision: 243177
URL: http://svnweb.freebsd.org/changeset/base/243177
Log:
Migrate the AR71xx UART (an 8250 derivative) to hide behind uart_ar71xx.
The AR9330/AR9331 UART is a totally different thing, so having it included
with 'uart' is not going to work out.
Modified:
head/sys/mips/atheros/files.ar71xx
head/sys/mips/conf/AR71XX_BASE
head/sys/mips/conf/AR724X_BASE
head/sys/mips/conf/AR91XX_BASE
head/sys/mips/conf/PB92
Modified: head/sys/mips/atheros/files.ar71xx
==============================================================================
--- head/sys/mips/atheros/files.ar71xx Sat Nov 17 04:00:19 2012 (r243176)
+++ head/sys/mips/atheros/files.ar71xx Sat Nov 17 04:05:46 2012 (r243177)
@@ -12,8 +12,8 @@ mips/atheros/ar71xx_spi.c optional ar71x
mips/atheros/pcf2123_rtc.c optional pcf2123_rtc ar71xx_spi
mips/atheros/ar71xx_wdog.c optional ar71xx_wdog
mips/atheros/if_arge.c optional arge
-mips/atheros/uart_bus_ar71xx.c optional uart
-mips/atheros/uart_cpu_ar71xx.c optional uart
+mips/atheros/uart_bus_ar71xx.c optional uart_ar71xx
+mips/atheros/uart_cpu_ar71xx.c optional uart_ar71xx
mips/atheros/ar71xx_bus_space_reversed.c standard
mips/mips/intr_machdep.c standard
mips/mips/tick.c standard
Modified: head/sys/mips/conf/AR71XX_BASE
==============================================================================
--- head/sys/mips/conf/AR71XX_BASE Sat Nov 17 04:00:19 2012 (r243176)
+++ head/sys/mips/conf/AR71XX_BASE Sat Nov 17 04:05:46 2012 (r243177)
@@ -108,6 +108,7 @@ device mx25l
device ar71xx_wdog
device uart
+device uart_ar71xx
device loop
device ether
Modified: head/sys/mips/conf/AR724X_BASE
==============================================================================
--- head/sys/mips/conf/AR724X_BASE Sat Nov 17 04:00:19 2012 (r243176)
+++ head/sys/mips/conf/AR724X_BASE Sat Nov 17 04:05:46 2012 (r243177)
@@ -117,6 +117,7 @@ device mx25l
device ar71xx_wdog
device uart
+device uart_ar71xx
device loop
device ether
Modified: head/sys/mips/conf/AR91XX_BASE
==============================================================================
--- head/sys/mips/conf/AR91XX_BASE Sat Nov 17 04:00:19 2012 (r243176)
+++ head/sys/mips/conf/AR91XX_BASE Sat Nov 17 04:05:46 2012 (r243177)
@@ -105,6 +105,7 @@ device mx25l
device ar71xx_wdog
device uart
+device uart_ar71xx
device loop
device ether
Modified: head/sys/mips/conf/PB92
==============================================================================
--- head/sys/mips/conf/PB92 Sat Nov 17 04:00:19 2012 (r243176)
+++ head/sys/mips/conf/PB92 Sat Nov 17 04:05:46 2012 (r243177)
@@ -124,6 +124,7 @@ device ar71xx_wdog
# Serial
device uart
+device uart_ar71xx
# Network twiddling
device loop
More information about the svn-src-all
mailing list