Skip to content

Commit be090fa

Browse files
stkidtsbogend
authored andcommitted
MIPS: BCM47XX: Remove the needless check with the 1074K
As there is no known soc powered by mips 1074K in bcm47xx series, the check with 1074K is needless. So just remove it. Link: https://wireless.wiki.kernel.org/en/users/Drivers/b43/soc Fixes: 442e14a ("MIPS: Add 1074K CPU support explicitly.") Signed-off-by: Wei Li <liwei391@huawei.com> Acked-by: Rafał Miłecki <rafal@milecki.pl> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
1 parent e393fbe commit be090fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/mips/bcm47xx/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void __init plat_mem_setup(void)
148148
{
149149
struct cpuinfo_mips *c = &current_cpu_data;
150150

151-
if ((c->cputype == CPU_74K) || (c->cputype == CPU_1074K)) {
151+
if (c->cputype == CPU_74K) {
152152
pr_info("Using bcma bus\n");
153153
#ifdef CONFIG_BCM47XX_BCMA
154154
bcm47xx_bus_type = BCM47XX_BUS_TYPE_BCMA;

0 commit comments

Comments
 (0)