コード例 #1
0
void __init time_init(void)
{
	if (pcic_present())
		pci_time_init();
	else
		sbus_time_init();
}
コード例 #2
0
ファイル: time.c プロジェクト: GodFox/magx_kernel_xpixl
void __init time_init(void)
{
#ifdef CONFIG_PCI
	extern void pci_time_init(void);
	if (pcic_present()) {
		pci_time_init();
		return;
	}
#endif
	sbus_time_init();
}