mirror of
https://github.com/adulau/aha.git
synced 2024-12-30 12:46:17 +00:00
[PATCH] m68k: atyfb_base compile fix for CONFIG_PCI=n
The atyfb_driver structure is only available if CONFIG_PCI is set. Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
2c3e0262e0
commit
078517e411
1 changed files with 4 additions and 0 deletions
|
@ -3722,7 +3722,9 @@ static int __init atyfb_init(void)
|
||||||
atyfb_setup(option);
|
atyfb_setup(option);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
pci_register_driver(&atyfb_driver);
|
pci_register_driver(&atyfb_driver);
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_ATARI
|
#ifdef CONFIG_ATARI
|
||||||
atyfb_atari_probe();
|
atyfb_atari_probe();
|
||||||
#endif
|
#endif
|
||||||
|
@ -3731,7 +3733,9 @@ static int __init atyfb_init(void)
|
||||||
|
|
||||||
static void __exit atyfb_exit(void)
|
static void __exit atyfb_exit(void)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
pci_unregister_driver(&atyfb_driver);
|
pci_unregister_driver(&atyfb_driver);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(atyfb_init);
|
module_init(atyfb_init);
|
||||||
|
|
Loading…
Reference in a new issue