提交 5548ed11 编写于 作者: I Ingo Molnar

x86, VisWS: turn into generic arch, install proper PCI quirk

Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 5ab74722
......@@ -28,6 +28,11 @@
char visws_board_type = -1;
char visws_board_rev = -1;
int is_visws_box(void)
{
return visws_board_type >= 0;
}
static int __init visws_time_init_quirk(void)
{
printk(KERN_INFO "Starting Cobalt Timer system clock\n");
......
......@@ -8,6 +8,7 @@
#include <linux/pci.h>
#include <linux/init.h>
#include <asm/setup.h>
#include "cobalt.h"
#include "lithium.h"
......@@ -107,7 +108,11 @@ static int __init pci_visws_init(void)
static __init int pci_subsys_init(void)
{
return -1;
if (!is_visws_box())
return -1;
pcibios_enable_irq = &pci_visws_enable_irq;
pcibios_disable_irq = &pci_visws_disable_irq;
pci_visws_init();
pcibios_init();
......
......@@ -10,8 +10,10 @@ void vsmp_init(void);
#ifdef CONFIG_X86_VISWS
extern void visws_early_detect(void);
extern int is_visws_box(void);
#else
static inline void visws_early_detect(void) { }
static inline int is_visws_box(void) { return 0; }
#endif
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册