Skip to content

Commit

Permalink
realtek: Add support for detecting RTL9303 SoCs
Browse files Browse the repository at this point in the history
Adds support for detecting RTL9303 SoCs as found e.g.
in the Ubiquiti USW switch.

Signed-off-by: Birger Koblitz <git@birger-koblitz.de>
  • Loading branch information
Birger Koblitz authored and dangowrt committed Feb 17, 2022
1 parent 60df655 commit c7cc4e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions target/linux/realtek/files-5.10/arch/mips/rtl838x/prom.c
Expand Up @@ -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;
Expand Down

0 comments on commit c7cc4e9

Please sign in to comment.