Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.16 26 lines 616 B view raw
1/* 2 * arch/ppc/boot/simple/misc-radstone_ppc7d.c 3 * 4 * Misc data for Radstone PPC7D board. 5 * 6 * Author: James Chapman <jchapman@katalix.com> 7 */ 8 9#include <linux/types.h> 10#include <platforms/radstone_ppc7d.h> 11 12#if defined(CONFIG_SERIAL_MPSC_CONSOLE) 13extern u32 mv64x60_console_baud; 14extern u32 mv64x60_mpsc_clk_src; 15extern u32 mv64x60_mpsc_clk_freq; 16#endif 17 18void 19mv64x60_board_init(void __iomem *old_base, void __iomem *new_base) 20{ 21#if defined(CONFIG_SERIAL_MPSC_CONSOLE) 22 mv64x60_console_baud = PPC7D_DEFAULT_BAUD; 23 mv64x60_mpsc_clk_src = PPC7D_MPSC_CLK_SRC; 24 mv64x60_mpsc_clk_freq = PPC7D_MPSC_CLK_FREQ; 25#endif 26}