diff options
| author | Dave Airlie <airlied@redhat.com> | 2010-05-18 19:35:51 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2010-05-18 19:35:51 -0400 |
| commit | 05ea893c46805b2981ea8ba6df881e3d65edd63b (patch) | |
| tree | ea381e22d99f49bd2c95238f88491d48b797a17b /arch/arm/kernel/process.c | |
| parent | 26481fb15644b5fd85d4cea020f74a234cdf6803 (diff) | |
| parent | a7c542782e92f9487c62a571565637be3d6b0ffd (diff) | |
Merge remote branch 'anholt/drm-intel-next' into drm-next
* anholt/drm-intel-next: (515 commits)
drm/i915: Fix out of tree builds
drm/i915: move fence lru to struct drm_i915_fence_reg
drm/i915: don't allow tiling changes on pinned buffers v2
drm/i915: Be extra careful about A/D matching for multifunction SDVO
drm/i915: Fix DDC bus selection for multifunction SDVO
drm/i915: cleanup mode setting before unmapping registers
drm/i915: Make fbc control wrapper functions
drm/i915: Wait for the GPU whilst shrinking, if truly desperate.
drm/i915: Use spatio-temporal dithering on PCH
[MTD] Remove zero-length files mtdbdi.c and internal.ho
pata_pcmcia / ide-cs: Fix bad hashes for Transcend and kingston IDs
libata: Fix several inaccuracies in developer's guide
slub: Fix bad boundary check in init_kmem_cache_nodes()
raid6: fix recovery performance regression
KEYS: call_sbin_request_key() must write lock keyrings before modifying them
KEYS: Use RCU dereference wrappers in keyring key type code
KEYS: find_keyring_by_name() can gain access to a freed keyring
ALSA: hda: Fix 0 dB for Packard Bell models using Conexant CX20549 (Venice)
ALSA: hda - Add quirk for Dell Inspiron 19T using a Conexant CX20582
ALSA: take tu->qlock with irqs disabled
...
Diffstat (limited to 'arch/arm/kernel/process.c')
| -rw-r--r-- | arch/arm/kernel/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index 0e12e0acbf26..acf5e6fdb6dc 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
| @@ -355,7 +355,7 @@ EXPORT_SYMBOL(dump_fpu); | |||
| 355 | * the thread function, and r3 points to the exit function. | 355 | * the thread function, and r3 points to the exit function. |
| 356 | */ | 356 | */ |
| 357 | extern void kernel_thread_helper(void); | 357 | extern void kernel_thread_helper(void); |
| 358 | asm( ".section .text\n" | 358 | asm( ".pushsection .text\n" |
| 359 | " .align\n" | 359 | " .align\n" |
| 360 | " .type kernel_thread_helper, #function\n" | 360 | " .type kernel_thread_helper, #function\n" |
| 361 | "kernel_thread_helper:\n" | 361 | "kernel_thread_helper:\n" |
| @@ -363,11 +363,11 @@ asm( ".section .text\n" | |||
| 363 | " mov lr, r3\n" | 363 | " mov lr, r3\n" |
| 364 | " mov pc, r2\n" | 364 | " mov pc, r2\n" |
| 365 | " .size kernel_thread_helper, . - kernel_thread_helper\n" | 365 | " .size kernel_thread_helper, . - kernel_thread_helper\n" |
| 366 | " .previous"); | 366 | " .popsection"); |
| 367 | 367 | ||
| 368 | #ifdef CONFIG_ARM_UNWIND | 368 | #ifdef CONFIG_ARM_UNWIND |
| 369 | extern void kernel_thread_exit(long code); | 369 | extern void kernel_thread_exit(long code); |
| 370 | asm( ".section .text\n" | 370 | asm( ".pushsection .text\n" |
| 371 | " .align\n" | 371 | " .align\n" |
| 372 | " .type kernel_thread_exit, #function\n" | 372 | " .type kernel_thread_exit, #function\n" |
| 373 | "kernel_thread_exit:\n" | 373 | "kernel_thread_exit:\n" |
| @@ -377,7 +377,7 @@ asm( ".section .text\n" | |||
| 377 | " nop\n" | 377 | " nop\n" |
| 378 | " .fnend\n" | 378 | " .fnend\n" |
| 379 | " .size kernel_thread_exit, . - kernel_thread_exit\n" | 379 | " .size kernel_thread_exit, . - kernel_thread_exit\n" |
| 380 | " .previous"); | 380 | " .popsection"); |
| 381 | #else | 381 | #else |
| 382 | #define kernel_thread_exit do_exit | 382 | #define kernel_thread_exit do_exit |
| 383 | #endif | 383 | #endif |
