* [PATCH] ARM: OMAP: rework mutex_init() for RT compatibility
@ 2006-06-21 19:49 Kevin Hilman
2006-08-11 10:18 ` Tony Lindgren
0 siblings, 1 reply; 2+ messages in thread
From: Kevin Hilman @ 2006-06-21 19:49 UTC (permalink / raw)
To: linux-omap-open-source
Replace remaining __MUTEX_INITIALIZER() calls with mutex_init() to
enable compatibility with the realtime-preempt patchset.
Signed-off-by: Kevin Hilman <khilman@deeprooted.net>
Index: rt-dev/arch/arm/plat-omap/dsp/dsp_common.c
===================================================================
--- rt-dev.orig/arch/arm/plat-omap/dsp/dsp_common.c
+++ rt-dev/arch/arm/plat-omap/dsp/dsp_common.c
@@ -59,7 +59,6 @@ struct cpustat {
void (*mem_rel_cb)(void);
};
struct cpustat cpustat = {
- .lock = __MUTEX_INITIALIZER(cpustat.lock),
.stat = CPUSTAT_RESET,
.icrmask = 0xffff,
};
@@ -243,6 +242,8 @@ static int init_done;
static int __init omap_dsp_init(void)
{
+ mutex_init(&cpustat.lock);
+
dspmem_size = 0;
#ifdef CONFIG_ARCH_OMAP15XX
if (cpu_is_omap1510()) {
Index: rt-dev/sound/oss/omap-audio-aic23.c
===================================================================
--- rt-dev.orig/sound/oss/omap-audio-aic23.c
+++ rt-dev/sound/oss/omap-audio-aic23.c
@@ -244,7 +244,6 @@ static audio_state_t aic23_state = {
.hw_remove = __exit_p(omap_aic23_remove),
.hw_suspend = omap_aic23_suspend,
.hw_resume = omap_aic23_resume,
- .mutex = __MUTEX_INITIALIZER(aic23_state.mutex),
};
/* This will be defined in the audio.h */
@@ -673,6 +672,8 @@ static int __init audio_aic23_init(void)
if (machine_is_omap_h2() || machine_is_omap_h3())
return -ENODEV;
+ mutex_init(&aic23_state.mutex);
+
if (machine_is_omap_osk()) {
/* Set MCLK to be clock input for AIC23 */
aic23_mclk = clk_get(0, "mclk");
Index: rt-dev/sound/oss/omap-audio-tsc2101.c
===================================================================
--- rt-dev.orig/sound/oss/omap-audio-tsc2101.c
+++ rt-dev/sound/oss/omap-audio-tsc2101.c
@@ -326,7 +326,6 @@ static audio_state_t tsc2101_state = {
.hw_remove = omap_tsc2101_remove,
.hw_suspend = omap_tsc2101_suspend,
.hw_resume = omap_tsc2101_resume,
- .mutex = __MUTEX_INITIALIZER(tsc2101_state.mutex),
};
/* This will be defined in the Audio.h */
@@ -1031,6 +1030,8 @@ static int __init audio_tsc2101_init(voi
if (machine_is_omap_osk() || machine_is_omap_innovator())
return -ENODEV;
+ mutex_init(&tsc2101_state.mutex);
+
/* register the codec with the audio driver */
if ((err = audio_register_codec(&tsc2101_state))) {
printk(KERN_ERR
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ARM: OMAP: rework mutex_init() for RT compatibility
2006-06-21 19:49 [PATCH] ARM: OMAP: rework mutex_init() for RT compatibility Kevin Hilman
@ 2006-08-11 10:18 ` Tony Lindgren
0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2006-08-11 10:18 UTC (permalink / raw)
To: Kevin Hilman; +Cc: linux-omap-open-source
* Kevin Hilman <khilman@mvista.com> [060621 22:46]:
> Replace remaining __MUTEX_INITIALIZER() calls with mutex_init() to
> enable compatibility with the realtime-preempt patchset.
Pushing today.
Tony
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-08-11 10:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-21 19:49 [PATCH] ARM: OMAP: rework mutex_init() for RT compatibility Kevin Hilman
2006-08-11 10:18 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox