diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-02-04 12:50:53 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-02-04 14:04:21 -0600 |
commit | 04a641df25c73283ce22dc5fdf8bc6d56d1d3742 (patch) | |
tree | 7febecbbc0f4e8be4749abe0866a0f2633e7ce76 /arch | |
parent | d34897d32985c056efa1efd5ce7f1544a8c02fc3 (diff) | |
download | u-boot-imx-04a641df25c73283ce22dc5fdf8bc6d56d1d3742.zip u-boot-imx-04a641df25c73283ce22dc5fdf8bc6d56d1d3742.tar.gz u-boot-imx-04a641df25c73283ce22dc5fdf8bc6d56d1d3742.tar.bz2 |
powerpc/8xxx: Fix possible compile issue related to P1013
The P1013 is a single core version of P1022 and thus should use the
p1022_serdes.c code. It was acciently pointing to p1013_serdes.c which
doesn't exist.
Reported-by: Renaud Barbier <renaud.barbier@ge.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/Makefile b/arch/powerpc/cpu/mpc85xx/Makefile index b7f51e7..cbb0fc6 100644 --- a/arch/powerpc/cpu/mpc85xx/Makefile +++ b/arch/powerpc/cpu/mpc85xx/Makefile @@ -89,7 +89,7 @@ COBJS-$(CONFIG_MPC8569) += mpc8569_serdes.o COBJS-$(CONFIG_MPC8572) += mpc8572_serdes.o COBJS-$(CONFIG_P1011) += p1021_serdes.o COBJS-$(CONFIG_P1012) += p1021_serdes.o -COBJS-$(CONFIG_P1013) += p1013_serdes.o +COBJS-$(CONFIG_P1013) += p1022_serdes.o COBJS-$(CONFIG_P1020) += p1021_serdes.o COBJS-$(CONFIG_P1021) += p1021_serdes.o COBJS-$(CONFIG_P1022) += p1022_serdes.o |