Commit c5bab5e9 authored by Wolfgang Grandegger's avatar Wolfgang Grandegger Committed by David S. Miller

can: mscan-mpc5xxx: fix broken support for the MPC5200

Due to an invalid "#ifdef CONFIG_PPC_MPC5200", the real clock setup
function was not called for the MPC5200.
Signed-off-by: default avatarWolfgang Grandegger <wg@denx.de>
Acked-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3a4d5c94
...@@ -43,7 +43,7 @@ struct mpc5xxx_can_data { ...@@ -43,7 +43,7 @@ struct mpc5xxx_can_data {
int *mscan_clksrc); int *mscan_clksrc);
}; };
#ifdef CONFIG_PPC_MPC5200 #ifdef CONFIG_PPC_MPC52xx
static struct of_device_id __devinitdata mpc52xx_cdm_ids[] = { static struct of_device_id __devinitdata mpc52xx_cdm_ids[] = {
{ .compatible = "fsl,mpc5200-cdm", }, { .compatible = "fsl,mpc5200-cdm", },
{} {}
...@@ -84,7 +84,7 @@ static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev, ...@@ -84,7 +84,7 @@ static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev,
/* Determine SYS_XTAL_IN frequency from the clock domain settings */ /* Determine SYS_XTAL_IN frequency from the clock domain settings */
np_cdm = of_find_matching_node(NULL, mpc52xx_cdm_ids); np_cdm = of_find_matching_node(NULL, mpc52xx_cdm_ids);
if (!np_cdm) { if (!np_cdm) {
dev_err(&of->dev, "can't get clock node!\n"); dev_err(&ofdev->dev, "can't get clock node!\n");
return 0; return 0;
} }
cdm = of_iomap(np_cdm, 0); cdm = of_iomap(np_cdm, 0);
...@@ -101,14 +101,14 @@ static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev, ...@@ -101,14 +101,14 @@ static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev,
return freq; return freq;
} }
#else /* !CONFIG_PPC_MPC5200 */ #else /* !CONFIG_PPC_MPC52xx */
static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev, static u32 __devinit mpc52xx_can_get_clock(struct of_device *ofdev,
const char *clock_name, const char *clock_name,
int *mscan_clksrc) int *mscan_clksrc)
{ {
return 0; return 0;
} }
#endif /* CONFIG_PPC_MPC5200 */ #endif /* CONFIG_PPC_MPC52xx */
#ifdef CONFIG_PPC_MPC512x #ifdef CONFIG_PPC_MPC512x
struct mpc512x_clockctl { struct mpc512x_clockctl {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment