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

Commit 5d1034f0 authored by Grant Likely's avatar Grant Likely
Browse files

powerpc/83xx: fix build failures on dt compatible list.



Commit a4f740cf, "of/flattree: Add of_flat_dt_match() helper function"
introduced build failures in arch/powerpc/platform/83xx by mistyping
'static' as 'struct' in the compatible string list, and omitting a few
semicolons.  This patch fixes it.

Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent c56eb8fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -57,12 +57,12 @@ static void __init mpc830x_rdb_init_IRQ(void)
	ipic_set_default_priority();
	ipic_set_default_priority();
}
}


struct const char *board[] __initdata = {
static const char *board[] __initdata = {
	"MPC8308RDB",
	"MPC8308RDB",
	"fsl,mpc8308rdb",
	"fsl,mpc8308rdb",
	"denx,mpc8308_p1m",
	"denx,mpc8308_p1m",
	NULL
	NULL
}
};


/*
/*
 * Called very early, MMU is off, device-tree isn't unflattened
 * Called very early, MMU is off, device-tree isn't unflattened
+2 −2
Original line number Original line Diff line number Diff line
@@ -60,11 +60,11 @@ static void __init mpc831x_rdb_init_IRQ(void)
	ipic_set_default_priority();
	ipic_set_default_priority();
}
}


struct const char *board[] __initdata = {
static const char *board[] __initdata = {
	"MPC8313ERDB",
	"MPC8313ERDB",
	"fsl,mpc8315erdb",
	"fsl,mpc8315erdb",
	NULL
	NULL
}
};


/*
/*
 * Called very early, MMU is off, device-tree isn't unflattened
 * Called very early, MMU is off, device-tree isn't unflattened