[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1303474109-6212-8-git-send-email-subhasish@mistralsolutions.com>
Date: Fri, 22 Apr 2011 17:38:25 +0530
From: Subhasish Ghosh <subhasish@...tralsolutions.com>
To: davinci-linux-open-source@...ux.davincidsp.com
Cc: linux-arm-kernel@...ts.infradead.org, m-watkins@...com,
nsekhar@...com, sachi@...tralsolutions.com,
Subhasish Ghosh <subhasish@...tralsolutions.com>,
Kevin Hilman <khilman@...com> (supporter:TI DAVINCI MACHIN...),
Russell King <linux@....linux.org.uk> (maintainer:ARM PORT),
linux-kernel@...r.kernel.org (open list)
Subject: [PATCH v4 07/11] da850: pruss SUART platform specific additions.
This patch adds the McASP clock alias.
The alias is used by the pruss suart driver
for enabling the McASP PSC.
Signed-off-by: Subhasish Ghosh <subhasish@...tralsolutions.com>
---
arch/arm/mach-davinci/devices-da8xx.c | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
index f51c9ad..8f41ae4 100644
--- a/arch/arm/mach-davinci/devices-da8xx.c
+++ b/arch/arm/mach-davinci/devices-da8xx.c
@@ -567,9 +567,27 @@ static struct platform_device da8xx_pruss_mfddev = {
.resource = da8xx_pruss_resources,
};
+#ifdef CONFIG_SERIAL_PRUSS_SUART_MODULE
+static int da8xx_mcasp_clk_add_alias(void)
+{
+ return clk_add_alias(NULL, "da8xx_pruss_uart.0",
+ NULL, &da850_mcasp_device.dev);
+}
+#else
+static int da8xx_mcasp_clk_add_alias(void)
+{
+ return 0;
+}
+#endif
int __init da8xx_register_pruss_mfd(struct mfd_cell *cell)
{
+ int ret;
+
da8xx_pruss_mfddev.dev.platform_data = cell;
+
+ ret = da8xx_mcasp_clk_add_alias();
+ if (ret < 0)
+ return ret;
return platform_device_register(&da8xx_pruss_mfddev);
}
--
1.7.2.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists