Skip to content
Snippets Groups Projects
Commit c7cc4e95 authored by Birger Koblitz's avatar Birger Koblitz Committed by Daniel Golle
Browse files

realtek: Add support for detecting RTL9303 SoCs


Adds support for detecting RTL9303 SoCs as found e.g.
in the Ubiquiti USW switch.

Signed-off-by: default avatarBirger Koblitz <git@birger-koblitz.de>
parent 60df655d
No related branches found
No related tags found
No related merge requests found
......@@ -170,6 +170,10 @@ void __init prom_init(void)
identify_rtl9302();
soc_info.family = RTL9300_FAMILY_ID;
break;
case 0x9303:
soc_info.name = "RTL9303";
soc_info.family = RTL9300_FAMILY_ID;
break;
case 0x9313:
soc_info.name = "RTL9313";
soc_info.family = RTL9310_FAMILY_ID;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment