Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a87d89e7 authored by Martin Michlmayr's avatar Martin Michlmayr Committed by Nicolas Pitre
Browse files

ARM: Kirkwood: Recognize A1 revision of 6282 chip



Recognize the Kirkwood 6282 revision A1 chip since products using
this chip are shipping now, such as the QNAP TS-x19P II devices.

Signed-off-by: default avatarMartin Michlmayr <tbm@cyrius.com>
Acked-by: default avatarLennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: default avatarNicolas Pitre <nico@fluxnic.net>
parent dc47ce90
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -430,6 +430,8 @@ static char * __init kirkwood_id(void)
	} else if (dev == MV88F6282_DEV_ID) {
		if (rev == MV88F6282_REV_A0)
			return "MV88F6282-Rev-A0";
		else if (rev == MV88F6282_REV_A1)
			return "MV88F6282-Rev-A1";
		else
			return "MV88F6282-Rev-Unsupported";
	} else {
+1 −0
Original line number Diff line number Diff line
@@ -135,4 +135,5 @@

#define MV88F6282_DEV_ID	0x6282
#define MV88F6282_REV_A0	0
#define MV88F6282_REV_A1	1
#endif