Re: [PATCH] ASoC drivers for the Freescale MPC8610 SoC
From: Jon Loeliger <hidden>
Date: 2007-12-20 14:47:43
Also in:
alsa-devel
So, like, the other day Timur Tabi mumbled:
quoted hunk
diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c index 6390895..6e1bde3 100644--- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c +++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c@@ -34,9 +34,27 @@ #include <asm/mpic.h> +#include <asm/of_platform.h> #include <sysdev/fsl_pci.h> #include <sysdev/fsl_soc.h>
Please dont' re-introduce these. I just submitted patches to move all of the PowerPC instances to using <linux/of_platform.h>
quoted hunk
diff --git a/sound/soc/fsl/mpc8610_hpcd.c b/sound/soc/fsl/mpc8610_hpcd.c new file mode 100644 index 0000000..5421a5c --- /dev/null +++ b/sound/soc/fsl/mpc8610_hpcd.c@@ -0,0 +1,621 @@ +/** + * Freescale MPC8610HPCD ALSA SoC Fabric driver + * + * Author: Timur Tabi <timur@freescale.com> + * + * Copyright 2007 Freescale Semiconductor, Inc. This file is licensed under + * the terms of the GNU General Public License version 2. This program + * is licensed "as is" without any warranty of any kind, whether express + * or implied. + */ + +#include <linux/module.h> +#include <linux/moduleparam.h> +#include <linux/version.h> +#include <linux/kernel.h> +#include <linux/interrupt.h> +#include <linux/platform_device.h> +#include <asm/of_device.h> +#include <asm/of_platform.h>
Again, this should be moved up as <linux/of_platform.h>. Thanks, jdl