mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
m68k: amiga: Fix Denise detection on OCS
The "default" statement for detecting an original Denise chip seems to be misplaced, causing original Denise chips not being detected. Fix this by moving it from the outer to the inner "switch" statement. Fortunately no code relies on this, but the detected version is printed during boot, and available through /proc/hardware. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/20200112171705.22600-1-geert@linux-m68k.org
This commit is contained in:
parent
9123e3a74e
commit
3b0950af21
@ -278,11 +278,11 @@ static void __init amiga_identify(void)
|
||||
case 0x08:
|
||||
AMIGAHW_SET(LISA);
|
||||
break;
|
||||
default:
|
||||
AMIGAHW_SET(DENISE);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
AMIGAHW_SET(DENISE);
|
||||
break;
|
||||
}
|
||||
switch ((amiga_custom.vposr>>8) & 0x7f) {
|
||||
case 0x00:
|
||||
|
Loading…
Reference in New Issue
Block a user