diff options
| author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-16 19:40:27 +0100 | 
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-16 19:40:27 +0100 | 
| commit | d5efccd5b6843c504042735c1e20d9252daefd98 (patch) | |
| tree | 87994943963bf2f34b3f1fa982d909fd82f56746 /arch/powerpc/kernel/process.c | |
| parent | 516541a00c6a6bced133158f0146b602a18dcbe5 (diff) | |
| parent | e816b57a337ea3b755de72bec38c10c864f23015 (diff) | |
| download | olio-linux-3.10-d5efccd5b6843c504042735c1e20d9252daefd98.tar.xz olio-linux-3.10-d5efccd5b6843c504042735c1e20d9252daefd98.zip  | |
ASoC: Merge tag 'v3.4-rc3' into for-3.5
Linux 3.4-rc3 contains a bunch of Tegra changes which are conflicting
annoyingly with the new development that's going on for Tegra so merge
it up to resolve those conflicts.
Conflicts:
	sound/soc/soc-core.c
	sound/soc/tegra/tegra_i2s.c
	sound/soc/tegra/tegra_spdif.c
Diffstat (limited to 'arch/powerpc/kernel/process.c')
| -rw-r--r-- | arch/powerpc/kernel/process.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index f88698c0f33..4937c969009 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c @@ -1235,7 +1235,7 @@ void __ppc64_runlatch_on(void)  	ctrl |= CTRL_RUNLATCH;  	mtspr(SPRN_CTRLT, ctrl); -	ti->local_flags |= TLF_RUNLATCH; +	ti->local_flags |= _TLF_RUNLATCH;  }  /* Called with hard IRQs off */ @@ -1244,7 +1244,7 @@ void __ppc64_runlatch_off(void)  	struct thread_info *ti = current_thread_info();  	unsigned long ctrl; -	ti->local_flags &= ~TLF_RUNLATCH; +	ti->local_flags &= ~_TLF_RUNLATCH;  	ctrl = mfspr(SPRN_CTRLF);  	ctrl &= ~CTRL_RUNLATCH;  |