diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-18 19:44:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-18 19:44:47 -0400 |
commit | 7de4a9a73563e5f6f3c153015fadee433a443241 (patch) | |
tree | d70e27c20bc612c58ec123e581f2ce7c02553888 | |
parent | 1097d7cef683c30f9768007daae2e961a0686a10 (diff) | |
parent | f04e879bf296d136bcafd8c5a26e95599b141671 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6:
sunxvr1000: Add missing FB=y depenency.
MAINTAINERS: Add entry for sparc serial drivers.
drivers/serial/sunsab.c: adjust the constant used to initialize the interrupt_mask0 fields
-rw-r--r-- | MAINTAINERS | 15 | ||||
-rw-r--r-- | drivers/serial/sunsab.c | 2 | ||||
-rw-r--r-- | drivers/video/Kconfig | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 47cc449d89d8..382eaa4d0068 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -5214,6 +5214,21 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git | |||
5214 | S: Maintained | 5214 | S: Maintained |
5215 | F: arch/sparc/ | 5215 | F: arch/sparc/ |
5216 | 5216 | ||
5217 | SPARC SERIAL DRIVERS | ||
5218 | M: "David S. Miller" <davem@davemloft.net> | ||
5219 | L: sparclinux@vger.kernel.org | ||
5220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git | ||
5221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git | ||
5222 | S: Maintained | ||
5223 | F: drivers/serial/suncore.c | ||
5224 | F: drivers/serial/suncore.h | ||
5225 | F: drivers/serial/sunhv.c | ||
5226 | F: drivers/serial/sunsab.c | ||
5227 | F: drivers/serial/sunsab.h | ||
5228 | F: drivers/serial/sunsu.c | ||
5229 | F: drivers/serial/sunzilog.c | ||
5230 | F: drivers/serial/sunzilog.h | ||
5231 | |||
5217 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER | 5232 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
5218 | M: Roger Wolff <R.E.Wolff@BitWizard.nl> | 5233 | M: Roger Wolff <R.E.Wolff@BitWizard.nl> |
5219 | S: Supported | 5234 | S: Supported |
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index d514e28d0755..d2e0321049e2 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c | |||
@@ -474,7 +474,7 @@ static void sunsab_stop_rx(struct uart_port *port) | |||
474 | { | 474 | { |
475 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; | 475 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; |
476 | 476 | ||
477 | up->interrupt_mask0 |= SAB82532_ISR0_TCD; | 477 | up->interrupt_mask0 |= SAB82532_IMR0_TCD; |
478 | writeb(up->interrupt_mask1, &up->regs->w.imr0); | 478 | writeb(up->interrupt_mask1, &up->regs->w.imr0); |
479 | } | 479 | } |
480 | 480 | ||
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index dabe804ba575..feaff4f04b58 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -914,7 +914,7 @@ config FB_XVR2500 | |||
914 | 914 | ||
915 | config FB_XVR1000 | 915 | config FB_XVR1000 |
916 | bool "Sun XVR-1000 support" | 916 | bool "Sun XVR-1000 support" |
917 | depends on SPARC64 | 917 | depends on (FB = y) && SPARC64 |
918 | select FB_CFB_FILLRECT | 918 | select FB_CFB_FILLRECT |
919 | select FB_CFB_COPYAREA | 919 | select FB_CFB_COPYAREA |
920 | select FB_CFB_IMAGEBLIT | 920 | select FB_CFB_IMAGEBLIT |