예제 #1
0
파일: setup.c 프로젝트: artynet/linux-3.3.8
static int __init ath79_setup(void)
{
    ath79_gpio_init();
    ath79_register_uart();
    ath79_register_wdt();

    mips_machine_setup();

    return 0;
}
예제 #2
0
파일: setup.c 프로젝트: AlexShiLucky/linux
static int __init ath79_setup(void)
{
	if  (mips_machtype == ATH79_MACH_GENERIC_OF)
		return 0;

	ath79_gpio_init();
	ath79_register_uart();
	ath79_register_wdt();

	mips_machine_setup();

	return 0;
}
예제 #3
0
파일: setup.c 프로젝트: 020gzh/linux
static int __init ath79_setup(void)
{
	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
	if  (mips_machtype == ATH79_MACH_GENERIC_OF)
		return 0;

	ath79_gpio_init();
	ath79_register_uart();
	ath79_register_wdt();

	mips_machine_setup();

	return 0;
}