aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-04-08 17:33:59 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-08 17:33:59 -0400
commitd2e2d7ca14f123cb1d03408c2bc6db8d402f416d (patch)
treefb8558272384fccce3bcce99bd471113e97b3e47 /include/linux/sched.h
parent7831d56b0a3544cbb6f82f76c34ca95e24d5b676 (diff)
parentab5a643cf597f2214feb6ff7288c72589661bde1 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc: mmc_spi: support for non-byte-aligned cards omap_hsmmc: Do not expect cmd/data to be non-null when CC/TC occurs mmc: Fix compile for omap_hsmmc.c mmc_spi: convert timeout handling to jiffies and avoid busy waiting mmc_spi: do not check CID and CSD blocks with CRC16 omap_hsmmc: Flush posted write to IRQ New mail address for Pierre Ossman imxmmc: move RSSR BLR imxmmc: init-exit rework mmc: Accept EXT_CSD rev 1.3 since it is backwards compatible with 1.2
Diffstat (limited to 'include/linux/sched.h')
0 files changed, 0 insertions, 0 deletions
* Exception table */ __start___ex_table = .; *(__ex_table) __stop___ex_table = .; *(.rodata) *(.rodata.*) *(__vermagic) /* Kernel version magic */ *(__markers_strings) *(.rodata1) *(.rodata.str1.1) /* Kernel symbol table: Normal symbols */ . = ALIGN(4); __start___ksymtab = .; *(__ksymtab) __stop___ksymtab = .; /* Kernel symbol table: GPL-only symbols */ __start___ksymtab_gpl = .; *(__ksymtab_gpl) __stop___ksymtab_gpl = .; /* Kernel symbol table: Normal unused symbols */ __start___ksymtab_unused = .; *(__ksymtab_unused) __stop___ksymtab_unused = .; /* Kernel symbol table: GPL-only unused symbols */ __start___ksymtab_unused_gpl = .; *(__ksymtab_unused_gpl) __stop___ksymtab_unused_gpl = .; /* Kernel symbol table: GPL-future symbols */ __start___ksymtab_gpl_future = .; *(__ksymtab_gpl_future) __stop___ksymtab_gpl_future = .; /* Kernel symbol table: Normal symbols */ __start___kcrctab = .; *(__kcrctab) __stop___kcrctab = .; /* Kernel symbol table: GPL-only symbols */ __start___kcrctab_gpl = .; *(__kcrctab_gpl) __stop___kcrctab_gpl = .; /* Kernel symbol table: Normal unused symbols */ __start___kcrctab_unused = .; *(__kcrctab_unused) __stop___kcrctab_unused = .; /* Kernel symbol table: GPL-only unused symbols */ __start___kcrctab_unused_gpl = .; *(__kcrctab_unused_gpl) __stop___kcrctab_unused_gpl = .; /* Kernel symbol table: GPL-future symbols */ __start___kcrctab_gpl_future = .; *(__kcrctab_gpl_future) __stop___kcrctab_gpl_future = .; /* Kernel symbol table: strings */ *(__ksymtab_strings) /* Built-in module parameters */ . = ALIGN(4) ; __start___param = .; *(__param) __stop___param = .; . = ALIGN(4) ; _etext = . ; } > TEXT .data DATA_ADDR : { . = ALIGN(4); _sdata = . ; DATA_DATA . = ALIGN(32); *(.data.cacheline_aligned) . = ALIGN(8192) ; *(.data.init_task) _edata = . ; } > DATA .init : { . = ALIGN(4096); __init_begin = .; _sinittext = .; INIT_TEXT _einittext = .; INIT_DATA . = ALIGN(16); __setup_start = .; *(.init.setup) __setup_end = .; __initcall_start = .; INITCALLS __initcall_end = .; __con_initcall_start = .; *(.con_initcall.init) __con_initcall_end = .; __security_initcall_start = .; *(.security_initcall.init) __security_initcall_end = .; #ifdef CONFIG_BLK_DEV_INITRD . = ALIGN(4); __initramfs_start = .; *(.init.ramfs) __initramfs_end = .; #endif . = ALIGN(4096); __init_end = .; } > INIT .bss : { . = ALIGN(4); _sbss = . ; *(.bss) *(COMMON) . = ALIGN(4) ; _ebss = . ; _end = . ; } > BSS DISCARDS }