From: Marcin Juszkiewicz <openembedded@hrw.one.pl>
To: linux-omap-open-source@linux.omap.com
Subject: Re: Disable DSPGW fails
Date: Wed, 4 Oct 2006 12:11:52 +0200 [thread overview]
Message-ID: <200610041211.53114.openembedded@hrw.one.pl> (raw)
In-Reply-To: <4523752A.8020601@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 757 bytes --]
Dnia środa, 4 października 2006 10:47, Dirk Behme napisał:
> while debugging the OSK issue, I tried to disable DSPGW
> completely (CONFIG_OMAP_DSP is not set). On most recent git
> this fails with
>
> arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_free':
> mcbsp.c:(.text+0x44b8): undefined reference to
> `omap_dsp_release_mem'
> arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_request':
> mcbsp.c:(.text+0x45cc): undefined reference to
> `omap_dsp_request_mem'
>
> Anybody with an idea how to fix this?
Attached patch fix it. Feel free to push it into correct maintainer to get
it included in GIT tree.
--
JID: hrw-jabber.org
OpenEmbedded developer
Today is the first day of the rest of your life.
[-- Attachment #2: linux-omap-no-dsp-fix.patch --]
[-- Type: text/x-diff, Size: 1345 bytes --]
while debugging the OSK issue, I tried to disable DSPGW
completely (CONFIG_OMAP_DSP is not set).
On most recent git this fails with
arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_free':
mcbsp.c:(.text+0x44b8): undefined reference to
`omap_dsp_release_mem'
arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_request':
mcbsp.c:(.text+0x45cc): undefined reference to
`omap_dsp_request_mem'
This patch fixes it.
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Index: git/arch/arm/plat-omap/mcbsp.c
===================================================================
--- git.orig/arch/arm/plat-omap/mcbsp.c 2006-09-27 12:17:21.000000000 +0200
+++ git/arch/arm/plat-omap/mcbsp.c 2006-09-27 12:17:01.000000000 +0200
@@ -197,7 +197,9 @@
static void omap_mcbsp_dsp_request(void)
{
if (cpu_is_omap15xx() || cpu_is_omap16xx()) {
+#ifdef CONFIG_OMAP_DSP
omap_dsp_request_mem();
+#endif
clk_enable(mcbsp_dsp_ck);
clk_enable(mcbsp_api_ck);
@@ -216,7 +218,9 @@
static void omap_mcbsp_dsp_free(void)
{
if (cpu_is_omap15xx() || cpu_is_omap16xx()) {
+#ifdef CONFIG_OMAP_DSP
omap_dsp_release_mem();
+#endif
clk_disable(mcbsp_dspxor_ck);
clk_disable(mcbsp_dsp_ck);
clk_disable(mcbsp_api_ck);
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
next prev parent reply other threads:[~2006-10-04 10:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-04 8:47 Disable DSPGW fails Dirk Behme
2006-10-04 10:11 ` Marcin Juszkiewicz [this message]
2006-10-19 13:50 ` Tony Lindgren
2006-10-19 14:10 ` Marcin Juszkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200610041211.53114.openembedded@hrw.one.pl \
--to=openembedded@hrw.one.pl \
--cc=linux-omap-open-source@linux.omap.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.