diff options
author | Saeed Bishara <saeed@marvell.com> | 2010-06-01 18:09:26 +0300 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2010-07-16 22:01:58 -0400 |
commit | 1c2003a1d6445f939c8628116452c7bbeff6759c (patch) | |
tree | b1f22a085056a9a3478cafacd913ccd5eb7286e8 /arch/arm/mach-kirkwood/common.c | |
parent | 29333cfae728de0ff0dd09a476b97ea49ce9eedb (diff) | |
download | blackbird-op-linux-1c2003a1d6445f939c8628116452c7bbeff6759c.tar.gz blackbird-op-linux-1c2003a1d6445f939c8628116452c7bbeff6759c.zip |
[ARM] Kirkwood: add support for rev A1 of the 88f6192 and 88f6180 chips.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/common.c')
-rw-r--r-- | arch/arm/mach-kirkwood/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index 6072eaa5e66a..c780c4a30434 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c @@ -891,11 +891,15 @@ static char * __init kirkwood_id(void) return "MV88F6192-Z0"; else if (rev == MV88F6192_REV_A0) return "MV88F6192-A0"; + else if (rev == MV88F6192_REV_A1) + return "MV88F6192-A1"; else return "MV88F6192-Rev-Unsupported"; } else if (dev == MV88F6180_DEV_ID) { if (rev == MV88F6180_REV_A0) return "MV88F6180-Rev-A0"; + else if (rev == MV88F6180_REV_A1) + return "MV88F6180-Rev-A1"; else return "MV88F6180-Rev-Unsupported"; } else { |