diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-19 10:53:28 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-19 10:53:28 -0500 |
commit | b69409279c4c960fcd1575bcf80f2a0ca414ca93 (patch) | |
tree | da8105a20ccc08caa033a9b40da7111e1de902d7 /arch/sparc/prom/misc.c | |
parent | 07ce198a1eb3431d04a6d59ea9fb7b71f21e33b1 (diff) | |
parent | f6d091e05199e67ba79c3ea29faa5c3b51d5daf4 (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:
[SPARC64]: Add regs_return_value().
[SPARC64]: Kill pcic_present().
[SPARC]: Kill 'prom_palette'.
[ATYFB]: Kill 'prom_palette' sparc code.
[SPARC64]: Kill 'prom_keyboard'.
[SPARC]: Kill extern decl of 'panic_setup'.
[SPARC64]: Delete 'boot_flags'.
[SPARC64]: Kill unused function 'kernel_enter_debugger'.
[SPARC64] arch/sparc64/kernel/unaligned.c: Use time_* macros
[SPARC64]: Always register a PROM based early console.
[SPARC64]: Update defconfig.
[SPARC64]: Add -mtune=ultrasparc3 if possible.
[SPARC64]: Remove Makefile code for ancient gcc and binutils.
[SPARC64]: Remove DEBUG_BOOTMEM.
[SPARC64]: Use shorter "get_zeroed_page" call.
[SPARC]: Use shorter form of "get_zeroed_page".
[SPARC]: video/cg14.c and video/sbuslib.c build fixes
Diffstat (limited to 'arch/sparc/prom/misc.c')
-rw-r--r-- | arch/sparc/prom/misc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/sparc/prom/misc.c b/arch/sparc/prom/misc.c index 37cff5f54704..d9fb3af41c1f 100644 --- a/arch/sparc/prom/misc.c +++ b/arch/sparc/prom/misc.c | |||
@@ -45,9 +45,6 @@ prom_feval(char *fstring) | |||
45 | spin_unlock_irqrestore(&prom_lock, flags); | 45 | spin_unlock_irqrestore(&prom_lock, flags); |
46 | } | 46 | } |
47 | 47 | ||
48 | /* We want to do this more nicely some day. */ | ||
49 | extern void (*prom_palette)(int); | ||
50 | |||
51 | /* Drop into the prom, with the chance to continue with the 'go' | 48 | /* Drop into the prom, with the chance to continue with the 'go' |
52 | * prom command. | 49 | * prom command. |
53 | */ | 50 | */ |
@@ -58,8 +55,6 @@ prom_cmdline(void) | |||
58 | extern void install_linux_ticker(void); | 55 | extern void install_linux_ticker(void); |
59 | unsigned long flags; | 56 | unsigned long flags; |
60 | 57 | ||
61 | if (prom_palette) | ||
62 | prom_palette (1); | ||
63 | spin_lock_irqsave(&prom_lock, flags); | 58 | spin_lock_irqsave(&prom_lock, flags); |
64 | install_obp_ticker(); | 59 | install_obp_ticker(); |
65 | (*(romvec->pv_abort))(); | 60 | (*(romvec->pv_abort))(); |
@@ -69,8 +64,6 @@ prom_cmdline(void) | |||
69 | #ifdef CONFIG_SUN_AUXIO | 64 | #ifdef CONFIG_SUN_AUXIO |
70 | set_auxio(AUXIO_LED, 0); | 65 | set_auxio(AUXIO_LED, 0); |
71 | #endif | 66 | #endif |
72 | if (prom_palette) | ||
73 | prom_palette (0); | ||
74 | } | 67 | } |
75 | 68 | ||
76 | /* Drop into the prom, but completely terminate the program. | 69 | /* Drop into the prom, but completely terminate the program. |