Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48868
b: refs/heads/master
c: 6936c62
h: refs/heads/master
v: v3
  • Loading branch information
Kumar Gala committed Feb 17, 2007
1 parent 43f8f67 commit 5359e9f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 24 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 520948796335111cf91970efabca7e5d064db344
refs/heads/master: 6936c62571d8dc580725775b628ee73d2ac97b6f
17 changes: 3 additions & 14 deletions trunk/arch/powerpc/platforms/85xx/mpc8568_mds.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ static void __init mpc8568_mds_setup_arch(void)
struct device_node *np;
static u8 *bcsr_regs = NULL;


if (ppc_md.progress)
ppc_md.progress("mpc8568_mds_setup_arch()", 0);

Expand Down Expand Up @@ -206,7 +205,6 @@ static void __init mpc8568_mds_pic_init(void)

mpic_init(mpic);


#ifdef CONFIG_QUICC_ENGINE
np = of_find_node_by_type(NULL, "qeic");
if (!np)
Expand All @@ -217,24 +215,15 @@ static void __init mpc8568_mds_pic_init(void)
#endif /* CONFIG_QUICC_ENGINE */
}


static int __init mpc8568_mds_probe(void)
{
char *model = of_get_flat_dt_prop(of_get_flat_dt_root(),
"model", NULL);
if (model == NULL)
return 0;
if (strcmp(model, "MPC8568EMDS"))
return 0;

DBG("MPC8568EMDS found\n");
unsigned long root = of_get_flat_dt_root();

return 1;
return of_flat_dt_is_compatible(root, "MPC85xxMDS");
}


define_machine(mpc8568_mds) {
.name = "MPC8568E MDS",
.name = "MPC85xx MDS",
.probe = mpc8568_mds_probe,
.setup_arch = mpc8568_mds_setup_arch,
.init_IRQ = mpc8568_mds_pic_init,
Expand Down
7 changes: 3 additions & 4 deletions trunk/arch/powerpc/platforms/85xx/mpc85xx_ads.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,9 @@ static void mpc85xx_ads_show_cpuinfo(struct seq_file *m)
*/
static int __init mpc85xx_ads_probe(void)
{
/* We always match for now, eventually we should look at the flat
dev tree to ensure this is the board we are suppose to run on
*/
return 1;
unsigned long root = of_get_flat_dt_root();

return of_flat_dt_is_compatible(root, "MPC85xxADS");
}

define_machine(mpc85xx_ads) {
Expand Down
8 changes: 3 additions & 5 deletions trunk/arch/powerpc/platforms/85xx/mpc85xx_cds.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,9 @@ static void mpc85xx_cds_show_cpuinfo(struct seq_file *m)
*/
static int __init mpc85xx_cds_probe(void)
{
/* We always match for now, eventually we should look at
* the flat dev tree to ensure this is the board we are
* supposed to run on
*/
return 1;
unsigned long root = of_get_flat_dt_root();

return of_flat_dt_is_compatible(root, "MPC85xxCDS");
}

define_machine(mpc85xx_cds) {
Expand Down

0 comments on commit 5359e9f

Please sign in to comment.