mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
m68k: dnfb doesnt check for Apollo
The Apollo frame buffer device driver (dnfb) doesn't check whether it's actually running on Apollo hardware, causing a crash if it isn't. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3ce92a2a7b
commit
d649770087
1 changed files with 3 additions and 0 deletions
|
@ -284,6 +284,9 @@ int __init dnfb_init(void)
|
|||
{
|
||||
int ret;
|
||||
|
||||
if (!MACH_IS_APOLLO)
|
||||
return -ENODEV;
|
||||
|
||||
if (fb_get_options("dnfb", NULL))
|
||||
return -ENODEV;
|
||||
|
||||
|
|
Loading…
Reference in a new issue