···138138139139 Set active the IRQ edge(s)/level. This replaces the140140 SA1111 INTPOL manipulation, and the set_GPIO_IRQ_edge()141141- function. Type should be one of the following:142142-143143- #define IRQT_NOEDGE (0)144144- #define IRQT_RISING (__IRQT_RISEDGE)145145- #define IRQT_FALLING (__IRQT_FALEDGE)146146- #define IRQT_BOTHEDGE (__IRQT_RISEDGE|__IRQT_FALEDGE)147147- #define IRQT_LOW (__IRQT_LOWLVL)148148- #define IRQT_HIGH (__IRQT_HIGHLVL)141141+ function. Type should be one of IRQ_TYPE_xxx defined in142142+ <linux/irq.h>1491431501443. set_GPIO_IRQ_edge() is obsolete, and should be replaced by set_irq_type.151145
+3-3
arch/arm/Kconfig
···314314 select PLAT_IOP315315 select PCI316316 select GENERIC_GPIO317317- select HAVE_GPIO_LIB317317+ select ARCH_REQUIRE_GPIOLIB318318 help319319 Support for Intel's 80219 and IOP32X (XScale) family of320320 processors.···325325 select PLAT_IOP326326 select PCI327327 select GENERIC_GPIO328328- select HAVE_GPIO_LIB328328+ select ARCH_REQUIRE_GPIOLIB329329 help330330 Support for Intel's IOP33X (XScale) family of processors.331331···418418 select GENERIC_CLOCKEVENTS419419 select ARCH_MTD_XIP420420 select GENERIC_GPIO421421- select HAVE_GPIO_LIB421421+ select ARCH_REQUIRE_GPIOLIB422422 help423423 Support for Freescale MXC/iMX-based family of processors424424
···331331332332 mask = 1 << (irq - LOCOMO_IRQ_GPIO_START);333333334334- if (type == IRQT_PROBE) {334334+ if (type == IRQ_TYPE_PROBE) {335335 if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask)336336 return 0;337337- type = __IRQT_RISEDGE | __IRQT_FALEDGE;337337+ type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;338338 }339339340340- if (type & __IRQT_RISEDGE)340340+ if (type & IRQ_TYPE_EDGE_RISING)341341 GPIO_IRQ_rising_edge |= mask;342342 else343343 GPIO_IRQ_rising_edge &= ~mask;344344- if (type & __IRQT_FALEDGE)344344+ if (type & IRQ_TYPE_EDGE_FALLING)345345 GPIO_IRQ_falling_edge |= mask;346346 else347347 GPIO_IRQ_falling_edge &= ~mask;···473473 /*474474 * Install handler for IRQ_LOCOMO_HW.475475 */476476- set_irq_type(lchip->irq, IRQT_FALLING);476476+ set_irq_type(lchip->irq, IRQ_TYPE_EDGE_FALLING);477477 set_irq_chip_data(lchip->irq, irqbase);478478 set_irq_chained_handler(lchip->irq, locomo_handler);479479
+7-7
arch/arm/common/sa1111.c
···241241 void __iomem *mapbase = get_irq_chip_data(irq);242242 unsigned long ip0;243243244244- if (flags == IRQT_PROBE)244244+ if (flags == IRQ_TYPE_PROBE)245245 return 0;246246247247- if ((!(flags & __IRQT_RISEDGE) ^ !(flags & __IRQT_FALEDGE)) == 0)247247+ if ((!(flags & IRQ_TYPE_EDGE_RISING) ^ !(flags & IRQ_TYPE_EDGE_FALLING)) == 0)248248 return -EINVAL;249249250250 ip0 = sa1111_readl(mapbase + SA1111_INTPOL0);251251- if (flags & __IRQT_RISEDGE)251251+ if (flags & IRQ_TYPE_EDGE_RISING)252252 ip0 &= ~mask;253253 else254254 ip0 |= mask;···338338 void __iomem *mapbase = get_irq_chip_data(irq);339339 unsigned long ip1;340340341341- if (flags == IRQT_PROBE)341341+ if (flags == IRQ_TYPE_PROBE)342342 return 0;343343344344- if ((!(flags & __IRQT_RISEDGE) ^ !(flags & __IRQT_FALEDGE)) == 0)344344+ if ((!(flags & IRQ_TYPE_EDGE_RISING) ^ !(flags & IRQ_TYPE_EDGE_FALLING)) == 0)345345 return -EINVAL;346346347347 ip1 = sa1111_readl(mapbase + SA1111_INTPOL1);348348- if (flags & __IRQT_RISEDGE)348348+ if (flags & IRQ_TYPE_EDGE_RISING)349349 ip1 &= ~mask;350350 else351351 ip1 |= mask;···427427 /*428428 * Register SA1111 interrupt429429 */430430- set_irq_type(sachip->irq, IRQT_RISING);430430+ set_irq_type(sachip->irq, IRQ_TYPE_EDGE_RISING);431431 set_irq_data(sachip->irq, irqbase);432432 set_irq_chained_handler(sachip->irq, sa1111_irq_handler);433433}
+480-633
arch/arm/configs/eseries_pxa_defconfig
···11#22# Automatically generated make config: don't edit33-# Linux kernel version: 2.6.21-hh1744-# Fri Nov 9 20:23:03 200733+# Linux kernel version: 2.6.2644+# Sat Jul 26 22:28:46 200855#66CONFIG_ARM=y77CONFIG_SYS_SUPPORTS_APM_EMULATION=y88CONFIG_GENERIC_GPIO=y99CONFIG_GENERIC_TIME=y1010+CONFIG_GENERIC_CLOCKEVENTS=y1011CONFIG_MMU=y1112# CONFIG_NO_IOPORT is not set1213CONFIG_GENERIC_HARDIRQS=y1414+CONFIG_STACKTRACE_SUPPORT=y1515+CONFIG_HAVE_LATENCYTOP_SUPPORT=y1616+CONFIG_LOCKDEP_SUPPORT=y1317CONFIG_TRACE_IRQFLAGS_SUPPORT=y1418CONFIG_HARDIRQS_SW_RESEND=y1519CONFIG_GENERIC_IRQ_PROBE=y···2218# CONFIG_ARCH_HAS_ILOG2_U64 is not set2319CONFIG_GENERIC_HWEIGHT=y2420CONFIG_GENERIC_CALIBRATE_DELAY=y2121+CONFIG_ARCH_SUPPORTS_AOUT=y2522CONFIG_ZONE_DMA=y2623CONFIG_ARCH_MTD_XIP=y2424+CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y2725CONFIG_VECTORS_BASE=0xffff00002826CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"29273028#3131-# Code maturity level options2929+# General setup3230#3331CONFIG_EXPERIMENTAL=y3432CONFIG_BROKEN_ON_SMP=y3533CONFIG_INIT_ENV_ARG_LIMIT=323636-3737-#3838-# General setup3939-#4034CONFIG_LOCALVERSION=""4135CONFIG_LOCALVERSION_AUTO=y4236CONFIG_SWAP=y4337CONFIG_SYSVIPC=y4444-# CONFIG_IPC_NS is not set4538CONFIG_SYSVIPC_SYSCTL=y4639# CONFIG_POSIX_MQUEUE is not set4740# CONFIG_BSD_PROCESS_ACCT is not set4841# CONFIG_TASKSTATS is not set4949-# CONFIG_UTS_NS is not set5042# CONFIG_AUDIT is not set5143# CONFIG_IKCONFIG is not set4444+CONFIG_LOG_BUF_SHIFT=144545+# CONFIG_CGROUPS is not set4646+# CONFIG_GROUP_SCHED is not set5247CONFIG_SYSFS_DEPRECATED=y4848+CONFIG_SYSFS_DEPRECATED_V2=y5349# CONFIG_RELAY is not set5454-CONFIG_BLK_DEV_INITRD=y5555-CONFIG_INITRAMFS_SOURCE=""5050+# CONFIG_NAMESPACES is not set5151+# CONFIG_BLK_DEV_INITRD is not set5652# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set5753CONFIG_SYSCTL=y5854CONFIG_EMBEDDED=y5955CONFIG_UID16=y6056CONFIG_SYSCTL_SYSCALL=y5757+CONFIG_SYSCTL_SYSCALL_CHECK=y6158# CONFIG_KALLSYMS is not set6259CONFIG_HOTPLUG=y6360CONFIG_PRINTK=y6461CONFIG_BUG=y6562CONFIG_ELF_CORE=y6363+CONFIG_COMPAT_BRK=y6664CONFIG_BASE_FULL=y6765CONFIG_FUTEX=y6666+CONFIG_ANON_INODES=y6867CONFIG_EPOLL=y6868+CONFIG_SIGNALFD=y6969+CONFIG_TIMERFD=y7070+CONFIG_EVENTFD=y6971CONFIG_SHMEM=y7070-CONFIG_SLAB=y7172CONFIG_VM_EVENT_COUNTERS=y7373+CONFIG_SLAB=y7474+# CONFIG_SLUB is not set7575+# CONFIG_SLOB is not set7676+# CONFIG_PROFILING is not set7777+# CONFIG_MARKERS is not set7878+CONFIG_HAVE_OPROFILE=y7979+# CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is not set8080+# CONFIG_HAVE_IOREMAP_PROT is not set8181+CONFIG_HAVE_KPROBES=y8282+CONFIG_HAVE_KRETPROBES=y8383+# CONFIG_HAVE_ARCH_TRACEHOOK is not set8484+# CONFIG_HAVE_DMA_ATTRS is not set8585+# CONFIG_USE_GENERIC_SMP_HELPERS is not set8686+CONFIG_HAVE_CLK=y8787+CONFIG_PROC_PAGE_MONITOR=y8888+CONFIG_SLABINFO=y7289CONFIG_RT_MUTEXES=y7390# CONFIG_TINY_SHMEM is not set7491CONFIG_BASE_SMALL=07575-# CONFIG_SLOB is not set7676-7777-#7878-# Loadable module support7979-#8092CONFIG_MODULES=y9393+# CONFIG_MODULE_FORCE_LOAD is not set8194CONFIG_MODULE_UNLOAD=y8295CONFIG_MODULE_FORCE_UNLOAD=y8396# CONFIG_MODVERSIONS is not set8497# CONFIG_MODULE_SRCVERSION_ALL is not set8598CONFIG_KMOD=y8686-8787-#8888-# Block layer8989-#9099CONFIG_BLOCK=y91100# CONFIG_LBD is not set92101# CONFIG_BLK_DEV_IO_TRACE is not set93102# CONFIG_LSF is not set103103+# CONFIG_BLK_DEV_BSG is not set104104+# CONFIG_BLK_DEV_INTEGRITY is not set9410595106#96107# IO Schedulers···119100# CONFIG_DEFAULT_CFQ is not set120101# CONFIG_DEFAULT_NOOP is not set121102CONFIG_DEFAULT_IOSCHED="anticipatory"103103+CONFIG_CLASSIC_RCU=y122104123105#124106# System Type···131111# CONFIG_ARCH_AT91 is not set132112# CONFIG_ARCH_CLPS7500 is not set133113# CONFIG_ARCH_CLPS711X is not set134134-# CONFIG_ARCH_CO285 is not set135114# CONFIG_ARCH_EBSA110 is not set136115# CONFIG_ARCH_EP93XX is not set137116# CONFIG_ARCH_FOOTBRIDGE is not set138117# CONFIG_ARCH_NETX is not set139118# CONFIG_ARCH_H720X is not set140119# CONFIG_ARCH_IMX is not set120120+# CONFIG_ARCH_IOP13XX is not set141121# CONFIG_ARCH_IOP32X is not set142122# CONFIG_ARCH_IOP33X is not set143143-# CONFIG_ARCH_IOP13XX is not set144144-# CONFIG_ARCH_IXP4XX is not set145145-# CONFIG_ARCH_IXP2000 is not set146123# CONFIG_ARCH_IXP23XX is not set124124+# CONFIG_ARCH_IXP2000 is not set125125+# CONFIG_ARCH_IXP4XX is not set147126# CONFIG_ARCH_L7200 is not set127127+# CONFIG_ARCH_KIRKWOOD is not set128128+# CONFIG_ARCH_KS8695 is not set148129# CONFIG_ARCH_NS9XXX is not set130130+# CONFIG_ARCH_LOKI is not set131131+# CONFIG_ARCH_MV78XX0 is not set132132+# CONFIG_ARCH_MXC is not set133133+# CONFIG_ARCH_ORION5X is not set149134# CONFIG_ARCH_PNX4008 is not set150135CONFIG_ARCH_PXA=y151136# CONFIG_ARCH_RPC is not set···158133# CONFIG_ARCH_S3C2410 is not set159134# CONFIG_ARCH_SHARK is not set160135# CONFIG_ARCH_LH7A40X is not set136136+# CONFIG_ARCH_DAVINCI is not set161137# CONFIG_ARCH_OMAP is not set162162-# CONFIG_BOARD_IRQ_MAP_SMALL is not set163163-CONFIG_BOARD_IRQ_MAP_BIG=y164164-CONFIG_DMABOUNCE=y138138+# CONFIG_ARCH_MSM7X00A is not set165139166140#167167-# Intel PXA2xx Implementations141141+# Intel PXA2xx/PXA3xx Implementations168142#143143+# CONFIG_ARCH_GUMSTIX is not set169144# CONFIG_ARCH_LUBBOCK is not set170145# CONFIG_MACH_LOGICPD_PXA270 is not set171146# CONFIG_MACH_MAINSTONE is not set172147# CONFIG_ARCH_PXA_IDP is not set173173-CONFIG_TOSHIBA_TMIO_OHCI=y174174-CONFIG_ARCH_ESERIES=y148148+# CONFIG_PXA_SHARPSL is not set149149+CONFIG_ARCH_PXA_ESERIES=y175150CONFIG_MACH_E330=y151151+CONFIG_MACH_E350=y176152CONFIG_MACH_E740=y177153CONFIG_MACH_E750=y178154CONFIG_MACH_E400=y179155CONFIG_MACH_E800=y180180-CONFIG_E330_LCD=y181181-CONFIG_E740_LCD=y182182-CONFIG_E750_LCD=y183183-CONFIG_E400_LCD=y184184-CONFIG_E800_LCD=y185185-CONFIG_ESERIES_UDC=y186186-CONFIG_E330_TC6387XB=y187187-CONFIG_E740_T7L66XB=y188188-CONFIG_E400_T7L66XB=y189189-CONFIG_E750_E800_TC6393XB=y190190-CONFIG_E740_PCMCIA=m191191-CONFIG_E750_PCMCIA=m192192-CONFIG_E800_PCMCIA=m193193-# CONFIG_MACH_A620 is not set194194-# CONFIG_MACH_A716 is not set195195-# CONFIG_MACH_A730 is not set196196-# CONFIG_ARCH_H1900 is not set197197-# CONFIG_ARCH_H2200 is not set198198-# CONFIG_MACH_H3900 is not set199199-# CONFIG_MACH_H4000 is not set200200-# CONFIG_MACH_H4700 is not set201201-# CONFIG_MACH_HX2750 is not set202202-# CONFIG_ARCH_H5400 is not set203203-# CONFIG_MACH_HIMALAYA is not set204204-# CONFIG_MACH_HTCUNIVERSAL is not set205205-# CONFIG_MACH_HTCALPINE is not set206206-# CONFIG_MACH_MAGICIAN is not set207207-# CONFIG_MACH_HTCAPACHE is not set208208-# CONFIG_MACH_BLUEANGEL is not set209209-210210-#211211-# HTC_HW6X00212212-#213213-# CONFIG_MACH_HTCBEETLES is not set214214-# CONFIG_MACH_HW6900 is not set215215-# CONFIG_MACH_HTCATHENA is not set216216-# CONFIG_ARCH_AXIMX3 is not set217217-# CONFIG_ARCH_AXIMX5 is not set218218-# CONFIG_MACH_X50 is not set219219-# CONFIG_ARCH_ROVERP1 is not set220220-# CONFIG_ARCH_ROVERP5P is not set221221-# CONFIG_MACH_XSCALE_PALMLD is not set222222-# CONFIG_MACH_T3XSCALE is not set223223-# CONFIG_MACH_RECON is not set224224-# CONFIG_MACH_GHI270HG is not set225225-# CONFIG_MACH_GHI270 is not set226226-# CONFIG_MACH_LOOXC550 is not set227227-# CONFIG_PXA_SHARPSL is not set228156# CONFIG_MACH_TRIZEPS4 is not set157157+# CONFIG_MACH_EM_X270 is not set158158+# CONFIG_MACH_COLIBRI is not set159159+# CONFIG_MACH_ZYLONITE is not set160160+# CONFIG_MACH_LITTLETON is not set161161+# CONFIG_MACH_TAVOREVB is not set162162+# CONFIG_MACH_SAAR is not set163163+# CONFIG_MACH_ARMCORE is not set164164+# CONFIG_MACH_MAGICIAN is not set165165+# CONFIG_MACH_PCM027 is not set166166+# CONFIG_ARCH_PXA_PALM is not set167167+# CONFIG_PXA_EZX is not set229168CONFIG_PXA25x=y169169+# CONFIG_PXA_PWM is not set230170231171#232232-# Linux As Bootloader172172+# Boot options233173#234234-# CONFIG_LAB is not set174174+175175+#176176+# Power management177177+#235178236179#237180# Processor Type···208215CONFIG_CPU_XSCALE=y209216CONFIG_CPU_32v5=y210217CONFIG_CPU_ABRT_EV5T=y218218+CONFIG_CPU_PABRT_NOIFAR=y211219CONFIG_CPU_CACHE_VIVT=y212220CONFIG_CPU_TLB_V4WBI=y213221CONFIG_CPU_CP15=y···226232#227233# Bus support228234#229229-230230-#231231-# PCCARD (PCMCIA/CardBus) support232232-#233233-CONFIG_PCCARD=m235235+# CONFIG_PCI_SYSCALL is not set236236+# CONFIG_ARCH_SUPPORTS_MSI is not set237237+CONFIG_PCCARD=y234238# CONFIG_PCMCIA_DEBUG is not set235239CONFIG_PCMCIA=m236240CONFIG_PCMCIA_LOAD_CIS=y···237245#238246# PC-card bridges239247#240240-CONFIG_PCMCIA_PXA2XX=m241248242249#243250# Kernel Features244251#252252+CONFIG_TICK_ONESHOT=y253253+# CONFIG_NO_HZ is not set254254+# CONFIG_HIGH_RES_TIMERS is not set255255+CONFIG_GENERIC_CLOCKEVENTS_BUILD=y245256# CONFIG_PREEMPT is not set246257CONFIG_HZ=100247258CONFIG_AEABI=y···257262CONFIG_FLATMEM=y258263CONFIG_FLAT_NODE_MEM_MAP=y259264# CONFIG_SPARSEMEM_STATIC is not set265265+# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set266266+CONFIG_PAGEFLAGS_EXTENDED=y260267CONFIG_SPLIT_PTLOCK_CPUS=4096261268# CONFIG_RESOURCES_64BIT is not set262269CONFIG_ZONE_DMA_FLAG=1270270+CONFIG_BOUNCE=y271271+CONFIG_VIRT_TO_BUS=y263272CONFIG_ALIGNMENT_TRAP=y264273265274#···274275CONFIG_CMDLINE=""275276# CONFIG_XIP_KERNEL is not set276277CONFIG_KEXEC=y277277-# CONFIG_TXTOFFSET_DELTA is not set278278+CONFIG_ATAGS_PROC=y278279279280#280281# CPU Frequency scaling···303304# Power management options304305#305306CONFIG_PM=y306306-CONFIG_PM_LEGACY=y307307# CONFIG_PM_DEBUG is not set308308-# CONFIG_DPM_DEBUG is not set309309-# CONFIG_PM_SYSFS_DEPRECATED is not set308308+CONFIG_PM_SLEEP=y309309+CONFIG_SUSPEND=y310310+CONFIG_SUSPEND_FREEZER=y310311# CONFIG_APM_EMULATION is not set312312+CONFIG_ARCH_SUSPEND_POSSIBLE=y311313312314#313315# Networking···318318#319319# Networking options320320#321321-# CONFIG_NETDEBUG is not set322321# CONFIG_PACKET is not set323322CONFIG_UNIX=y324323CONFIG_XFRM=y325324# CONFIG_XFRM_USER is not set326325# CONFIG_XFRM_SUB_POLICY is not set327326# CONFIG_XFRM_MIGRATE is not set327327+# CONFIG_XFRM_STATISTICS is not set328328# CONFIG_NET_KEY is not set329329CONFIG_INET=y330330# CONFIG_IP_MULTICAST is not set···339339# CONFIG_INET_ESP is not set340340# CONFIG_INET_IPCOMP is not set341341# CONFIG_INET_XFRM_TUNNEL is not set342342-# CONFIG_INET_TUNNEL is not set342342+CONFIG_INET_TUNNEL=y343343CONFIG_INET_XFRM_MODE_TRANSPORT=y344344CONFIG_INET_XFRM_MODE_TUNNEL=y345345CONFIG_INET_XFRM_MODE_BEET=y346346+# CONFIG_INET_LRO is not set346347CONFIG_INET_DIAG=y347348CONFIG_INET_TCP_DIAG=y348349# CONFIG_TCP_CONG_ADVANCED is not set349350CONFIG_TCP_CONG_CUBIC=y350351CONFIG_DEFAULT_TCP_CONG="cubic"351352# CONFIG_TCP_MD5SIG is not set352352-# CONFIG_IPV6 is not set353353+CONFIG_IPV6=y354354+# CONFIG_IPV6_PRIVACY is not set355355+# CONFIG_IPV6_ROUTER_PREF is not set356356+# CONFIG_IPV6_OPTIMISTIC_DAD is not set357357+# CONFIG_INET6_AH is not set358358+# CONFIG_INET6_ESP is not set359359+# CONFIG_INET6_IPCOMP is not set360360+# CONFIG_IPV6_MIP6 is not set353361# CONFIG_INET6_XFRM_TUNNEL is not set354362# CONFIG_INET6_TUNNEL is not set363363+CONFIG_INET6_XFRM_MODE_TRANSPORT=y364364+CONFIG_INET6_XFRM_MODE_TUNNEL=y365365+CONFIG_INET6_XFRM_MODE_BEET=y366366+# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set367367+CONFIG_IPV6_SIT=y368368+CONFIG_IPV6_NDISC_NODETYPE=y369369+# CONFIG_IPV6_TUNNEL is not set370370+# CONFIG_IPV6_MULTIPLE_TABLES is not set371371+# CONFIG_IPV6_MROUTE is not set355372# CONFIG_NETWORK_SECMARK is not set356373# CONFIG_NETFILTER is not set357357-358358-#359359-# DCCP Configuration (EXPERIMENTAL)360360-#361374# CONFIG_IP_DCCP is not set362362-363363-#364364-# SCTP Configuration (EXPERIMENTAL)365365-#366375# CONFIG_IP_SCTP is not set367367-368368-#369369-# TIPC Configuration (EXPERIMENTAL)370370-#371376# CONFIG_TIPC is not set372377# CONFIG_ATM is not set373378# CONFIG_BRIDGE is not set···385380# CONFIG_LAPB is not set386381# CONFIG_ECONET is not set387382# CONFIG_WAN_ROUTER is not set388388-389389-#390390-# QoS and/or fair queueing391391-#392383# CONFIG_NET_SCHED is not set393384394385#···392391#393392# CONFIG_NET_PKTGEN is not set394393# CONFIG_HAMRADIO is not set395395-# CONFIG_IRDA is not set394394+# CONFIG_CAN is not set395395+CONFIG_IRDA=y396396+397397+#398398+# IrDA protocols399399+#400400+CONFIG_IRLAN=m401401+CONFIG_IRCOMM=m402402+CONFIG_IRDA_ULTRA=y403403+404404+#405405+# IrDA options406406+#407407+CONFIG_IRDA_CACHE_LAST_LSAP=y408408+CONFIG_IRDA_FAST_RR=y409409+# CONFIG_IRDA_DEBUG is not set410410+411411+#412412+# Infrared-port device drivers413413+#414414+415415+#416416+# SIR device drivers417417+#418418+# CONFIG_IRTTY_SIR is not set419419+420420+#421421+# Dongle support422422+#423423+# CONFIG_KINGSUN_DONGLE is not set424424+# CONFIG_KSDAZZLE_DONGLE is not set425425+# CONFIG_KS959_DONGLE is not set426426+427427+#428428+# FIR device drivers429429+#430430+# CONFIG_USB_IRDA is not set431431+# CONFIG_SIGMATEL_FIR is not set432432+CONFIG_PXA_FICP=y433433+# CONFIG_MCS_FIR is not set396434# CONFIG_BT is not set435435+# CONFIG_AF_RXRPC is not set436436+437437+#438438+# Wireless439439+#440440+CONFIG_CFG80211=m441441+CONFIG_NL80211=y442442+CONFIG_WIRELESS_EXT=y443443+CONFIG_WIRELESS_EXT_SYSFS=y444444+CONFIG_MAC80211=m445445+446446+#447447+# Rate control algorithm selection448448+#449449+CONFIG_MAC80211_RC_PID=y450450+CONFIG_MAC80211_RC_DEFAULT_PID=y451451+CONFIG_MAC80211_RC_DEFAULT="pid"452452+# CONFIG_MAC80211_MESH is not set453453+# CONFIG_MAC80211_LEDS is not set454454+# CONFIG_MAC80211_DEBUG_MENU is not set397455CONFIG_IEEE80211=m398456# CONFIG_IEEE80211_DEBUG is not set399457CONFIG_IEEE80211_CRYPT_WEP=m400400-# CONFIG_IEEE80211_CRYPT_CCMP is not set401401-# CONFIG_IEEE80211_CRYPT_TKIP is not set402402-# CONFIG_IEEE80211_SOFTMAC is not set403403-CONFIG_WIRELESS_EXT=y458458+CONFIG_IEEE80211_CRYPT_CCMP=m459459+CONFIG_IEEE80211_CRYPT_TKIP=m460460+# CONFIG_RFKILL is not set461461+# CONFIG_NET_9P is not set404462405463#406464# Device Drivers···468408#469409# Generic Driver Options470410#411411+CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"471412# CONFIG_STANDALONE is not set472413CONFIG_PREVENT_FIRMWARE_BUILD=y473414CONFIG_FW_LOADER=y415415+CONFIG_FIRMWARE_IN_KERNEL=y416416+CONFIG_EXTRA_FIRMWARE=""474417# CONFIG_SYS_HYPERVISOR is not set475475-476476-#477477-# Connector - unified userspace <-> kernelspace linker478478-#479418# CONFIG_CONNECTOR is not set480480-481481-#482482-# Memory Technology Devices (MTD)483483-#484419CONFIG_MTD=m485420# CONFIG_MTD_DEBUG is not set486421# CONFIG_MTD_CONCAT is not set487487-CONFIG_MTD_PARTITIONS=y488488-# CONFIG_MTD_REDBOOT_PARTS is not set489489-# CONFIG_MTD_AFS_PARTS is not set422422+# CONFIG_MTD_PARTITIONS is not set490423491424#492425# User Modules And Translation Layers493426#494494-CONFIG_MTD_CHAR=m495495-CONFIG_MTD_BLKDEVS=m496496-CONFIG_MTD_BLOCK=m427427+# CONFIG_MTD_CHAR is not set428428+# CONFIG_MTD_BLKDEVS is not set429429+# CONFIG_MTD_BLOCK is not set497430# CONFIG_MTD_BLOCK_RO is not set498431# CONFIG_FTL is not set499432# CONFIG_NFTL is not set500433# CONFIG_INFTL is not set501434# CONFIG_RFD_FTL is not set502435# CONFIG_SSFDC is not set436436+# CONFIG_MTD_OOPS is not set503437504438#505439# RAM/ROM/Flash chip drivers···513459# CONFIG_MTD_RAM is not set514460# CONFIG_MTD_ROM is not set515461# CONFIG_MTD_ABSENT is not set516516-# CONFIG_MTD_OBSOLETE_CHIPS is not set517462518463#519464# Mapping drivers for chip access···535482# CONFIG_MTD_DOC2000 is not set536483# CONFIG_MTD_DOC2001 is not set537484# CONFIG_MTD_DOC2001PLUS is not set538538-539539-#540540-# NAND Flash Device Drivers541541-#542485CONFIG_MTD_NAND=m543543-CONFIG_MTD_NAND_VERIFY_WRITE=y486486+# CONFIG_MTD_NAND_VERIFY_WRITE is not set544487# CONFIG_MTD_NAND_ECC_SMC is not set545545-# CONFIG_MTD_NAND_H1900 is not set488488+# CONFIG_MTD_NAND_MUSEUM_IDS is not set546489CONFIG_MTD_NAND_IDS=m547490# CONFIG_MTD_NAND_DISKONCHIP is not set548491# CONFIG_MTD_NAND_SHARPSL is not set549549-# CONFIG_MTD_NAND_NANDSIM is not set550550-551551-#552552-# OneNAND Flash Device Drivers553553-#492492+# CONFIG_MTD_NAND_PLATFORM is not set493493+# CONFIG_MTD_ALAUDA is not set554494# CONFIG_MTD_ONENAND is not set555495556496#557557-# Parallel port support497497+# UBI - Unsorted block images558498#499499+# CONFIG_MTD_UBI is not set559500# CONFIG_PARPORT is not set560560-561561-#562562-# Plug and Play support563563-#564564-# CONFIG_PNPACPI is not set565565-566566-#567567-# Block devices568568-#501501+CONFIG_BLK_DEV=y569502# CONFIG_BLK_DEV_COW_COMMON is not set570503CONFIG_BLK_DEV_LOOP=m571504# CONFIG_BLK_DEV_CRYPTOLOOP is not set572505# CONFIG_BLK_DEV_NBD is not set573506# CONFIG_BLK_DEV_UB is not set574574-CONFIG_BLK_DEV_RAM=y575575-CONFIG_BLK_DEV_RAM_COUNT=16576576-CONFIG_BLK_DEV_RAM_SIZE=6144577577-CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024507507+# CONFIG_BLK_DEV_RAM is not set578508# CONFIG_CDROM_PKTCDVD is not set579509# CONFIG_ATA_OVER_ETH is not set580580-581581-#582582-# ATA/ATAPI/MFM/RLL support583583-#584584-CONFIG_IDE=m585585-CONFIG_IDE_MAX_HWIFS=4586586-CONFIG_BLK_DEV_IDE=m587587-588588-#589589-# Please see Documentation/ide.txt for help/info on IDE drives590590-#591591-# CONFIG_BLK_DEV_IDE_SATA is not set592592-CONFIG_BLK_DEV_IDEDISK=m593593-# CONFIG_IDEDISK_MULTI_MODE is not set594594-# CONFIG_BLK_DEV_IDECS is not set595595-# CONFIG_BLK_DEV_IDECD is not set596596-# CONFIG_BLK_DEV_IDETAPE is not set597597-# CONFIG_BLK_DEV_IDEFLOPPY is not set598598-# CONFIG_BLK_DEV_IDESCSI is not set599599-# CONFIG_IDE_TASK_IOCTL is not set600600-601601-#602602-# IDE chipset support/bugfixes603603-#604604-# CONFIG_IDE_GENERIC is not set605605-# CONFIG_IDE_ARM is not set606606-# CONFIG_BLK_DEV_IDEDMA is not set607607-# CONFIG_BLK_DEV_HD is not set510510+CONFIG_MISC_DEVICES=y511511+# CONFIG_EEPROM_93CX6 is not set512512+# CONFIG_ENCLOSURE_SERVICES is not set513513+CONFIG_HAVE_IDE=y514514+# CONFIG_IDE is not set608515609516#610517# SCSI device support611518#612519# CONFIG_RAID_ATTRS is not set613520CONFIG_SCSI=m521521+CONFIG_SCSI_DMA=y614522# CONFIG_SCSI_TGT is not set615523# CONFIG_SCSI_NETLINK is not set616524# CONFIG_SCSI_PROC_FS is not set···579565#580566# SCSI support type (disk, tape, CD-ROM)581567#582582-# CONFIG_BLK_DEV_SD is not set568568+CONFIG_BLK_DEV_SD=m583569# CONFIG_CHR_DEV_ST is not set584570# CONFIG_CHR_DEV_OSST is not set585571# CONFIG_BLK_DEV_SR is not set···593579# CONFIG_SCSI_CONSTANTS is not set594580# CONFIG_SCSI_LOGGING is not set595581# CONFIG_SCSI_SCAN_ASYNC is not set582582+CONFIG_SCSI_WAIT_SCAN=m596583597584#598585# SCSI Transports···601586# CONFIG_SCSI_SPI_ATTRS is not set602587# CONFIG_SCSI_FC_ATTRS is not set603588# CONFIG_SCSI_ISCSI_ATTRS is not set604604-# CONFIG_SCSI_SAS_ATTRS is not set605589# CONFIG_SCSI_SAS_LIBSAS is not set606606-607607-#608608-# SCSI low-level drivers609609-#610610-# CONFIG_ISCSI_TCP is not set611611-# CONFIG_SCSI_DEBUG is not set612612-613613-#614614-# PCMCIA SCSI adapter support615615-#616616-# CONFIG_PCMCIA_AHA152X is not set617617-# CONFIG_PCMCIA_FDOMAIN is not set618618-# CONFIG_PCMCIA_NINJA_SCSI is not set619619-# CONFIG_PCMCIA_QLOGIC is not set620620-# CONFIG_PCMCIA_SYM53C500 is not set621621-622622-#623623-# Serial ATA (prod) and Parallel ATA (experimental) drivers624624-#625625-# CONFIG_ATA is not set626626-627627-#628628-# Multi-device support (RAID and LVM)629629-#590590+# CONFIG_SCSI_SRP_ATTRS is not set591591+# CONFIG_SCSI_LOWLEVEL is not set592592+# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set593593+# CONFIG_SCSI_DH is not set594594+CONFIG_ATA=m595595+# CONFIG_ATA_NONSTANDARD is not set596596+# CONFIG_SATA_PMP is not set597597+CONFIG_ATA_SFF=y598598+# CONFIG_SATA_MV is not set599599+CONFIG_PATA_PCMCIA=m600600+# CONFIG_PATA_PLATFORM is not set630601# CONFIG_MD is not set631631-632632-#633633-# Fusion MPT device support634634-#635635-# CONFIG_FUSION is not set636636-637637-#638638-# IEEE 1394 (FireWire) support639639-#640640-641641-#642642-# I2O device support643643-#644644-645645-#646646-# Network device support647647-#648602CONFIG_NETDEVICES=y649603# CONFIG_DUMMY is not set650604# CONFIG_BONDING is not set605605+# CONFIG_MACVLAN is not set651606# CONFIG_EQUALIZER is not set652607# CONFIG_TUN is not set653653-654654-#655655-# PHY device support656656-#657657-658658-#659659-# Ethernet (10 or 100Mbit)660660-#608608+# CONFIG_VETH is not set661609# CONFIG_NET_ETHERNET is not set610610+# CONFIG_NETDEV_1000 is not set611611+# CONFIG_NETDEV_10000 is not set662612663613#664664-# Ethernet (1000 Mbit)614614+# Wireless LAN665615#666666-667667-#668668-# Ethernet (10000 Mbit)669669-#670670-671671-#672672-# Token Ring devices673673-#674674-675675-#676676-# Wireless LAN (non-hamradio)677677-#678678-CONFIG_NET_RADIO=y679679-# CONFIG_NET_WIRELESS_RTNETLINK is not set680680-681681-#682682-# Obsolete Wireless cards support (pre-802.11)683683-#684684-# CONFIG_STRIP is not set685685-# CONFIG_PCMCIA_WAVELAN is not set686686-# CONFIG_PCMCIA_NETWAVE is not set687687-688688-#689689-# Wireless 802.11 Frequency Hopping cards support690690-#616616+# CONFIG_WLAN_PRE80211 is not set617617+CONFIG_WLAN_80211=y691618# CONFIG_PCMCIA_RAYCS is not set692692-693693-#694694-# Wireless 802.11b ISA/PCI cards support695695-#696696-# CONFIG_HERMES is not set619619+# CONFIG_LIBERTAS is not set620620+CONFIG_HERMES=m621621+CONFIG_PCMCIA_HERMES=m622622+# CONFIG_PCMCIA_SPECTRUM is not set697623# CONFIG_ATMEL is not set698698-699699-#700700-# Wireless 802.11b Pcmcia/Cardbus cards support701701-#702624# CONFIG_AIRO_CS is not set703625# CONFIG_PCMCIA_WL3501 is not set704626# CONFIG_USB_ZD1201 is not set705705-CONFIG_HOSTAP=m706706-# CONFIG_HOSTAP_FIRMWARE is not set707707-# CONFIG_HOSTAP_CS is not set708708-# CONFIG_ACX is not set709709-CONFIG_NET_WIRELESS=y627627+# CONFIG_USB_NET_RNDIS_WLAN is not set628628+# CONFIG_RTL8187 is not set629629+# CONFIG_MAC80211_HWSIM is not set630630+# CONFIG_P54_COMMON is not set631631+# CONFIG_IWLWIFI_LEDS is not set632632+# CONFIG_HOSTAP is not set633633+# CONFIG_B43 is not set634634+# CONFIG_B43LEGACY is not set635635+# CONFIG_ZD1211RW is not set636636+# CONFIG_RT2X00 is not set710637711638#712712-# PCMCIA network device support639639+# USB Network Adapters713640#714714-# CONFIG_NET_PCMCIA is not set715715-716716-#717717-# Wan interfaces718718-#641641+# CONFIG_USB_CATC is not set642642+# CONFIG_USB_KAWETH is not set643643+# CONFIG_USB_PEGASUS is not set644644+# CONFIG_USB_RTL8150 is not set645645+# CONFIG_USB_USBNET is not set646646+CONFIG_NET_PCMCIA=y647647+# CONFIG_PCMCIA_3C589 is not set648648+# CONFIG_PCMCIA_3C574 is not set649649+# CONFIG_PCMCIA_FMVJ18X is not set650650+CONFIG_PCMCIA_PCNET=m651651+# CONFIG_PCMCIA_NMCLAN is not set652652+# CONFIG_PCMCIA_SMC91C92 is not set653653+# CONFIG_PCMCIA_XIRC2PS is not set654654+# CONFIG_PCMCIA_AXNET is not set719655# CONFIG_WAN is not set720656# CONFIG_PPP is not set721657# CONFIG_SLIP is not set722722-# CONFIG_SHAPER is not set723658# CONFIG_NETCONSOLE is not set724659# CONFIG_NETPOLL is not set725660# CONFIG_NET_POLL_CONTROLLER is not set726726-727727-#728728-# ISDN subsystem729729-#730661# CONFIG_ISDN is not set731662732663#···680719#681720CONFIG_INPUT=y682721# CONFIG_INPUT_FF_MEMLESS is not set722722+# CONFIG_INPUT_POLLDEV is not set683723684724#685725# Userland interfaces686726#687727# CONFIG_INPUT_MOUSEDEV is not set688728# CONFIG_INPUT_JOYDEV is not set689689-CONFIG_INPUT_TSDEV=m690690-CONFIG_INPUT_TSDEV_SCREEN_X=240691691-CONFIG_INPUT_TSDEV_SCREEN_Y=320692729CONFIG_INPUT_EVDEV=m693730# CONFIG_INPUT_EVBUG is not set694694-# CONFIG_INPUT_LED_TRIGGER is not set695731696732#697733# Input Device Drivers698734#699699-# CONFIG_INPUT_KEYBOARD is not set735735+CONFIG_INPUT_KEYBOARD=y736736+# CONFIG_KEYBOARD_ATKBD is not set737737+# CONFIG_KEYBOARD_SUNKBD is not set738738+# CONFIG_KEYBOARD_LKKBD is not set739739+# CONFIG_KEYBOARD_XTKBD is not set740740+# CONFIG_KEYBOARD_NEWTON is not set741741+# CONFIG_KEYBOARD_STOWAWAY is not set742742+CONFIG_KEYBOARD_GPIO=m700743# CONFIG_INPUT_MOUSE is not set701744# CONFIG_INPUT_JOYSTICK is not set745745+# CONFIG_INPUT_TABLET is not set702746CONFIG_INPUT_TOUCHSCREEN=y747747+# CONFIG_TOUCHSCREEN_FUJITSU is not set703748# CONFIG_TOUCHSCREEN_GUNZE is not set704749# CONFIG_TOUCHSCREEN_ELO is not set705750# CONFIG_TOUCHSCREEN_MTOUCH is not set751751+# CONFIG_TOUCHSCREEN_INEXIO is not set706752# CONFIG_TOUCHSCREEN_MK712 is not set707707-CONFIG_TOUCHSCREEN_WM97XX=m708708-CONFIG_TOUCHSCREEN_WM9705=y709709-CONFIG_TOUCHSCREEN_WM9712=y710710-CONFIG_TOUCHSCREEN_WM9713=y711753# CONFIG_TOUCHSCREEN_PENMOUNT is not set712754# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set713755# CONFIG_TOUCHSCREEN_TOUCHWIN is not set714756# CONFIG_TOUCHSCREEN_UCB1400 is not set757757+CONFIG_TOUCHSCREEN_WM97XX=m758758+CONFIG_TOUCHSCREEN_WM9705=y759759+CONFIG_TOUCHSCREEN_WM9712=y760760+CONFIG_TOUCHSCREEN_WM9713=y761761+# CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE is not set762762+# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set763763+# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set715764# CONFIG_INPUT_MISC is not set716765717766#···734763# Character devices735764#736765CONFIG_VT=y766766+CONFIG_CONSOLE_TRANSLATIONS=y737767CONFIG_VT_CONSOLE=y738768CONFIG_HW_CONSOLE=y739769# CONFIG_VT_HW_CONSOLE_BINDING is not set770770+CONFIG_DEVKMEM=y740771# CONFIG_SERIAL_NONSTANDARD is not set741772742773#···750777# Non-8250 serial port support751778#752779# CONFIG_SERIAL_PXA is not set753753-# CONFIG_RS232_SERIAL is not set754780CONFIG_UNIX98_PTYS=y755781# CONFIG_LEGACY_PTYS is not set756756-757757-#758758-# IPMI759759-#760782# CONFIG_IPMI_HANDLER is not set761761-762762-#763763-# Watchdog Cards764764-#765765-# CONFIG_WATCHDOG is not set766783CONFIG_HW_RANDOM=m767784# CONFIG_NVRAM is not set768768-# CONFIG_SA1100_RTC is not set769769-# CONFIG_DTLK is not set770785# CONFIG_R3964 is not set771771-# CONFIG_TIHTC is not set772786773787#774788# PCMCIA character devices···763803# CONFIG_SYNCLINK_CS is not set764804# CONFIG_CARDMAN_4000 is not set765805# CONFIG_CARDMAN_4040 is not set806806+# CONFIG_IPWIRELESS is not set766807# CONFIG_RAW_DRIVER is not set767767-768768-#769769-# TPM devices770770-#771808# CONFIG_TCG_TPM is not set772772-773773-#774774-# I2C support775775-#776809# CONFIG_I2C is not set777777-778778-#779779-# SPI support780780-#781810# CONFIG_SPI is not set782782-# CONFIG_SPI_MASTER is not set811811+CONFIG_ARCH_REQUIRE_GPIOLIB=y812812+CONFIG_GPIOLIB=y813813+# CONFIG_GPIO_SYSFS is not set783814784815#785785-# Dallas's 1-wire bus816816+# I2C GPIO expanders:817817+#818818+819819+#820820+# PCI GPIO expanders:821821+#822822+823823+#824824+# SPI GPIO expanders:786825#787826# CONFIG_W1 is not set788788-789789-#790790-# Hardware Monitoring support791791-#792792-# CONFIG_HWMON is not set793793-# CONFIG_HWMON_VID is not set794827# CONFIG_POWER_SUPPLY is not set828828+# CONFIG_HWMON is not set829829+# CONFIG_WATCHDOG is not set795830796831#797797-# L3 serial bus support832832+# Sonics Silicon Backplane798833#799799-# CONFIG_L3 is not set800800-801801-#802802-# Misc devices803803-#804804-805805-#806806-# Multimedia Capabilities Port drivers807807-#808808-# CONFIG_ADC is not set809809-810810-#811811-# Compaq/iPAQ Drivers812812-#813813-814814-#815815-# Compaq/HP iPAQ Drivers816816-#817817-# CONFIG_IPAQ_SLEEVE is not set818818-# CONFIG_SLEEVE_DEBUG is not set834834+CONFIG_SSB_POSSIBLE=y835835+# CONFIG_SSB is not set819836820837#821838# Multifunction device drivers822839#840840+CONFIG_MFD_CORE=y823841# CONFIG_MFD_SM501 is not set824824-# CONFIG_HTC_ASIC2 is not set825825-# CONFIG_HTC_ASIC3 is not set826826-# CONFIG_HTC_PASIC3 is not set827842# CONFIG_HTC_EGPIO is not set828828-# CONFIG_HTC_BBKEYS is not set829829-# CONFIG_HTC_ASIC3_DS1WM is not set830830-# CONFIG_SOC_SAMCOP is not set831831-# CONFIG_SOC_HAMCOP is not set832832-# CONFIG_SOC_MQ11XX is not set833833-CONFIG_SOC_T7L66XB=y834834-# CONFIG_SOC_TC6387XB is not set835835-CONFIG_SOC_TC6393XB=y836836-# CONFIG_SOC_TSC2101 is not set837837-# CONFIG_SOC_TSC2200 is not set838838-839839-#840840-# LED devices841841-#842842-# CONFIG_NEW_LEDS is not set843843-844844-#845845-# LED drivers846846-#847847-848848-#849849-# LED Triggers850850-#851851-# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set843843+# CONFIG_HTC_PASIC3 is not set844844+CONFIG_MFD_TC6393XB=y852845853846#854847# Multimedia devices855848#856856-# CONFIG_VIDEO_DEV is not set857849858850#859859-# Digital Video Broadcasting Devices851851+# Multimedia core support860852#861861-# CONFIG_DVB is not set862862-# CONFIG_USB_DABUSB is not set853853+# CONFIG_VIDEO_DEV is not set854854+# CONFIG_DVB_CORE is not set855855+# CONFIG_VIDEO_MEDIA is not set856856+857857+#858858+# Multimedia drivers859859+#860860+# CONFIG_DAB is not set863861864862#865863# Graphics support866864#867867-CONFIG_BACKLIGHT_LCD_SUPPORT=y868868-CONFIG_BACKLIGHT_CLASS_DEVICE=y869869-CONFIG_LCD_CLASS_DEVICE=y870870-CONFIG_BACKLIGHT_CORGI=y865865+# CONFIG_VGASTATE is not set866866+# CONFIG_VIDEO_OUTPUT_CONTROL is not set871867CONFIG_FB=y872868# CONFIG_FIRMWARE_EDID is not set873869# CONFIG_FB_DDC is not set874870CONFIG_FB_CFB_FILLRECT=y875871CONFIG_FB_CFB_COPYAREA=y876872CONFIG_FB_CFB_IMAGEBLIT=y873873+# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set874874+# CONFIG_FB_SYS_FILLRECT is not set875875+# CONFIG_FB_SYS_COPYAREA is not set876876+# CONFIG_FB_SYS_IMAGEBLIT is not set877877+# CONFIG_FB_FOREIGN_ENDIAN is not set878878+# CONFIG_FB_SYS_FOPS is not set877879# CONFIG_FB_SVGALIB is not set878880# CONFIG_FB_MACMODES is not set879881# CONFIG_FB_BACKLIGHT is not set···845923#846924# Frame buffer hardware drivers847925#848848-# CONFIG_FB_IMAGEON is not set849926# CONFIG_FB_S1D13XXX is not set850927CONFIG_FB_PXA=y928928+# CONFIG_FB_PXA_SMARTPANEL is not set851929# CONFIG_FB_PXA_PARAMETERS is not set852930# CONFIG_FB_MBX is not set853931CONFIG_FB_W100=y932932+# CONFIG_FB_AM200EPD is not set854933# CONFIG_FB_VIRTUAL is not set855855-# CONFIG_FB_VSFB is not set934934+CONFIG_BACKLIGHT_LCD_SUPPORT=y935935+CONFIG_LCD_CLASS_DEVICE=y936936+# CONFIG_LCD_ILI9320 is not set937937+# CONFIG_LCD_PLATFORM is not set938938+CONFIG_BACKLIGHT_CLASS_DEVICE=y939939+CONFIG_BACKLIGHT_CORGI=y940940+941941+#942942+# Display device support943943+#944944+# CONFIG_DISPLAY_SUPPORT is not set856945857946#858947# Console display driver support···871938# CONFIG_VGA_CONSOLE is not set872939CONFIG_DUMMY_CONSOLE=y873940CONFIG_FRAMEBUFFER_CONSOLE=y941941+# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set874942# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set875943CONFIG_FONTS=y876944# CONFIG_FONT_8x8 is not set···879945# CONFIG_FONT_6x11 is not set880946# CONFIG_FONT_7x14 is not set881947# CONFIG_FONT_PEARL_8x8 is not set882882-CONFIG_FONT_ACORN_8x8=y883883-# CONFIG_FONT_MINI_4x6 is not set948948+# CONFIG_FONT_ACORN_8x8 is not set949949+CONFIG_FONT_MINI_4x6=y884950# CONFIG_FONT_SUN8x16 is not set885951# CONFIG_FONT_SUN12x22 is not set886952# CONFIG_FONT_10x18 is not set887887-888888-#889889-# Logo configuration890890-#891891-CONFIG_LOGO=y892892-# CONFIG_LOGO_LINUX_MONO is not set893893-# CONFIG_LOGO_LINUX_VGA16 is not set894894-CONFIG_LOGO_LINUX_CLUT224=y895895-896896-#897897-# Sound898898-#953953+# CONFIG_LOGO is not set899954CONFIG_SOUND=y900900-901901-#902902-# Advanced Linux Sound Architecture903903-#904955CONFIG_SND=m905956CONFIG_SND_TIMER=m906957CONFIG_SND_PCM=m···899980CONFIG_SND_VERBOSE_PROCFS=y900981CONFIG_SND_VERBOSE_PRINTK=y901982# CONFIG_SND_DEBUG is not set902902-903903-#904904-# Generic devices905905-#983983+CONFIG_SND_DRIVERS=y906984# CONFIG_SND_DUMMY is not set907985# CONFIG_SND_MTPAV is not set908986# CONFIG_SND_SERIAL_U16550 is not set909987# CONFIG_SND_MPU401 is not set910910-911911-#912912-# ALSA ARM devices913913-#988988+CONFIG_SND_ARM=y914989# CONFIG_SND_PXA2XX_AC97 is not set915915-# CONFIG_SND_RECON is not set916916-917917-#918918-# USB devices919919-#920920-# CONFIG_SND_USB_AUDIO is not set921921-922922-#923923-# PCMCIA devices924924-#925925-# CONFIG_SND_VXPOCKET is not set926926-# CONFIG_SND_PDAUDIOCF is not set927927-928928-#929929-# SoC audio support930930-#931931-CONFIG_SND_SOC_AC97_BUS=y990990+# CONFIG_SND_USB is not set991991+# CONFIG_SND_PCMCIA is not set932992CONFIG_SND_SOC=m933933-934934-#935935-# SoC Platforms936936-#937937-938938-#939939-# SoC Audio for the Atmel AT91940940-#941941-942942-#943943-# SoC Audio for the Intel PXA2xx944944-#993993+CONFIG_SND_SOC_AC97_BUS=y945994CONFIG_SND_PXA2XX_SOC=m946995CONFIG_SND_PXA2XX_SOC_AC97=m947947-CONFIG_SND_PXA2XX_SOC_E740_WM9705=m948948-CONFIG_SND_PXA2XX_SOC_E750_WM9705=m949949-CONFIG_SND_PXA2XX_SOC_E800_WM9712=m950950-# CONFIG_SND_PXA2XX_SOC_MAGICIAN is not set951951-# CONFIG_SND_PXA2XX_SOC_BLUEANGEL is not set952952-# CONFIG_SND_PXA2XX_SOC_H5000 is not set953953-954954-#955955-# SoC Audio for the Freescale i.MX956956-#957957-958958-#959959-# SoC Audio for the Samsung S3C24XX960960-#961961-# CONFIG_SND_SOC_AC97_CODEC is not set962962-# CONFIG_SND_SOC_WM8711 is not set963963-# CONFIG_SND_SOC_WM8510 is not set964964-# CONFIG_SND_SOC_WM8731 is not set965965-# CONFIG_SND_SOC_WM8750 is not set966966-# CONFIG_SND_SOC_WM8753 is not set967967-# CONFIG_SND_SOC_WM8772 is not set968968-# CONFIG_SND_SOC_WM8971 is not set969969-# CONFIG_SND_SOC_WM8956 is not set970970-# CONFIG_SND_SOC_WM8960 is not set971971-# CONFIG_SND_SOC_WM8976 is not set972972-# CONFIG_SND_SOC_WM8974 is not set973973-# CONFIG_SND_SOC_WM8980 is not set974974-CONFIG_SND_SOC_WM9705=m975975-# CONFIG_SND_SOC_WM9713 is not set996996+CONFIG_SND_PXA2XX_SOC_E800=m976997CONFIG_SND_SOC_WM9712=m977977-# CONFIG_SND_SOC_UDA1380 is not set978978-# CONFIG_SND_SOC_AK4535 is not set979979-980980-#981981-# Open Sound System982982-#983998# CONFIG_SOUND_PRIME is not set984999CONFIG_AC97_BUS=m985985-986986-#987987-# HID Devices988988-#10001000+CONFIG_HID_SUPPORT=y9891001CONFIG_HID=y9901002# CONFIG_HID_DEBUG is not set10031003+# CONFIG_HIDRAW is not set99110049921005#993993-# USB support10061006+# USB Input Devices9941007#10081008+CONFIG_USB_HID=m10091009+# CONFIG_USB_HIDINPUT_POWERBOOK is not set10101010+# CONFIG_HID_FF is not set10111011+# CONFIG_USB_HIDDEV is not set10121012+10131013+#10141014+# USB HID Boot Protocol drivers10151015+#10161016+# CONFIG_USB_KBD is not set10171017+# CONFIG_USB_MOUSE is not set10181018+CONFIG_USB_SUPPORT=y9951019CONFIG_USB_ARCH_HAS_HCD=y996996-CONFIG_USB_ARCH_HAS_OHCI=y10201020+# CONFIG_USB_ARCH_HAS_OHCI is not set9971021# CONFIG_USB_ARCH_HAS_EHCI is not set9981022CONFIG_USB=m999999-CONFIG_USB_DEBUG=y10231023+# CONFIG_USB_DEBUG is not set10241024+# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set1000102510011026#10021027# Miscellaneous USB options10031028#10041004-CONFIG_USB_DEVICEFS=y10051005-CONFIG_USB_DYNAMIC_MINORS=y10291029+# CONFIG_USB_DEVICEFS is not set10301030+CONFIG_USB_DEVICE_CLASS=y10311031+# CONFIG_USB_DYNAMIC_MINORS is not set10061032# CONFIG_USB_SUSPEND is not set10071033# CONFIG_USB_OTG is not set10341034+# CONFIG_USB_OTG_WHITELIST is not set10351035+# CONFIG_USB_OTG_BLACKLIST_HUB is not set1008103610091037#10101038# USB Host Controller Drivers10111039#10401040+# CONFIG_USB_C67X00_HCD is not set10121041# CONFIG_USB_ISP116X_HCD is not set10131013-# CONFIG_USB_OHCI_HCD is not set10421042+# CONFIG_USB_ISP1760_HCD is not set10141043# CONFIG_USB_SL811_HCD is not set10441044+# CONFIG_USB_R8A66597_HCD is not set1015104510161046#10171047# USB Device Class drivers10181048#10191049# CONFIG_USB_ACM is not set10201050# CONFIG_USB_PRINTER is not set10511051+# CONFIG_USB_WDM is not set1021105210221053#10231054# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'···9761107#9771108# may also be needed; see USB_STORAGE Help for more information9781109#979979-CONFIG_USB_STORAGE=m980980-# CONFIG_USB_STORAGE_DEBUG is not set981981-# CONFIG_USB_STORAGE_DATAFAB is not set982982-# CONFIG_USB_STORAGE_FREECOM is not set983983-# CONFIG_USB_STORAGE_ISD200 is not set984984-# CONFIG_USB_STORAGE_DPCM is not set985985-# CONFIG_USB_STORAGE_USBAT is not set986986-# CONFIG_USB_STORAGE_SDDR09 is not set987987-# CONFIG_USB_STORAGE_SDDR55 is not set988988-# CONFIG_USB_STORAGE_JUMPSHOT is not set989989-# CONFIG_USB_STORAGE_ALAUDA is not set990990-# CONFIG_USB_STORAGE_KARMA is not set11101110+# CONFIG_USB_STORAGE is not set9911111# CONFIG_USB_LIBUSUAL is not set992992-993993-#994994-# USB Input Devices995995-#996996-# CONFIG_USB_HID is not set997997-998998-#999999-# USB HID Boot Protocol drivers10001000-#10011001-# CONFIG_USB_KBD is not set10021002-# CONFIG_USB_MOUSE is not set10031003-# CONFIG_USB_AIPTEK is not set10041004-# CONFIG_USB_WACOM is not set10051005-# CONFIG_USB_ACECAD is not set10061006-# CONFIG_USB_KBTAB is not set10071007-# CONFIG_USB_POWERMATE is not set10081008-# CONFIG_USB_TOUCHSCREEN is not set10091009-# CONFIG_USB_YEALINK is not set10101010-# CONFIG_USB_XPAD is not set10111011-# CONFIG_USB_ATI_REMOTE is not set10121012-# CONFIG_USB_ATI_REMOTE2 is not set10131013-# CONFIG_USB_KEYSPAN_REMOTE is not set10141014-# CONFIG_USB_APPLETOUCH is not set10151015-# CONFIG_USB_GTCO is not set1016111210171113#10181114# USB Imaging devices10191115#10201116# CONFIG_USB_MDC800 is not set10211117# CONFIG_USB_MICROTEK is not set10221022-10231023-#10241024-# USB Network Adapters10251025-#10261026-# CONFIG_USB_CATC is not set10271027-# CONFIG_USB_KAWETH is not set10281028-# CONFIG_USB_PEGASUS is not set10291029-# CONFIG_USB_RTL8150 is not set10301030-# CONFIG_USB_USBNET_MII is not set10311031-# CONFIG_USB_USBNET is not set10321032-# CONFIG_USB_MON is not set11181118+CONFIG_USB_MON=y1033111910341120#10351121# USB port drivers10361036-#10371037-10381038-#10391039-# USB Serial Converter support10401122#10411123# CONFIG_USB_SERIAL is not set10421124···10121192# CONFIG_USB_LD is not set10131193# CONFIG_USB_TRANCEVIBRATOR is not set10141194# CONFIG_USB_IOWARRIOR is not set10151015-# CONFIG_USB_TEST is not set10161016-10171017-#10181018-# USB DSL modem support10191019-#10201020-10211021-#10221022-# USB Gadget Support10231023-#11951195+# CONFIG_USB_ISIGHTFW is not set10241196CONFIG_USB_GADGET=y10251197# CONFIG_USB_GADGET_DEBUG_FILES is not set10261198CONFIG_USB_GADGET_SELECTED=y11991199+# CONFIG_USB_GADGET_AMD5536UDC is not set12001200+# CONFIG_USB_GADGET_ATMEL_USBA is not set12011201+# CONFIG_USB_GADGET_FSL_USB2 is not set10271202# CONFIG_USB_GADGET_NET2280 is not set10281028-CONFIG_USB_GADGET_PXA2XX=y10291029-CONFIG_USB_PXA2XX=y10301030-# CONFIG_USB_PXA2XX_SMALL is not set12031203+CONFIG_USB_GADGET_PXA25X=y12041204+CONFIG_USB_PXA25X=y12051205+CONFIG_USB_PXA25X_SMALL=y12061206+# CONFIG_USB_GADGET_M66592 is not set10311207# CONFIG_USB_GADGET_PXA27X is not set10321208# CONFIG_USB_GADGET_GOKU is not set10331033-# CONFIG_USB_GADGET_MQ11XX is not set10341209# CONFIG_USB_GADGET_LH7A40X is not set10351035-# CONFIG_USB_GADGET_S3C2410 is not set10361210# CONFIG_USB_GADGET_OMAP is not set12111211+# CONFIG_USB_GADGET_S3C2410 is not set10371212# CONFIG_USB_GADGET_AT91 is not set10381213# CONFIG_USB_GADGET_DUMMY_HCD is not set10391214# CONFIG_USB_GADGET_DUALSPEED is not set10401215# CONFIG_USB_ZERO is not set10411041-CONFIG_USB_ETH=y12161216+CONFIG_USB_ETH=m10421217# CONFIG_USB_ETH_RNDIS is not set10431218# CONFIG_USB_GADGETFS is not set10441219# CONFIG_USB_FILE_STORAGE is not set10451220# CONFIG_USB_G_SERIAL is not set10461221# CONFIG_USB_MIDI_GADGET is not set10471047-# CONFIG_USB_G_CHAR is not set10481048-# CONFIG_USB_PXA2XX_GPIO is not set10491049-10501050-#10511051-# MMC/SD Card support10521052-#12221222+# CONFIG_USB_G_PRINTER is not set12231223+# CONFIG_USB_CDC_COMPOSITE is not set10531224CONFIG_MMC=y10541225# CONFIG_MMC_DEBUG is not set10551055-CONFIG_MMC_BLOCK=y10561056-# CONFIG_MMC_PXA is not set10571057-CONFIG_MMC_TMIO=y10581058-# CONFIG_MMC_SAMCOP is not set12261226+CONFIG_MMC_UNSAFE_RESUME=y1059122710601228#10611061-# Real Time Clock12291229+# MMC/SD Card Drivers10621230#12311231+CONFIG_MMC_BLOCK=y12321232+CONFIG_MMC_BLOCK_BOUNCE=y12331233+# CONFIG_SDIO_UART is not set12341234+# CONFIG_MMC_TEST is not set12351235+12361236+#12371237+# MMC/SD Host Controller Drivers12381238+#12391239+# CONFIG_MMC_PXA is not set12401240+# CONFIG_MMC_SDHCI is not set12411241+# CONFIG_NEW_LEDS is not set10631242CONFIG_RTC_LIB=y10641243# CONFIG_RTC_CLASS is not set12441244+# CONFIG_DMADEVICES is not set12451245+# CONFIG_UIO is not set1065124610661247#10671248# File systems···10761255# CONFIG_JFS_FS is not set10771256# CONFIG_FS_POSIX_ACL is not set10781257# CONFIG_XFS_FS is not set10791079-# CONFIG_GFS2_FS is not set10801258# CONFIG_OCFS2_FS is not set10811081-# CONFIG_MINIX_FS is not set10821082-# CONFIG_ROMFS_FS is not set12591259+CONFIG_DNOTIFY=y10831260CONFIG_INOTIFY=y10841261CONFIG_INOTIFY_USER=y10851262# CONFIG_QUOTA is not set10861086-CONFIG_DNOTIFY=y10871263# CONFIG_AUTOFS_FS is not set10881264# CONFIG_AUTOFS4_FS is not set10891265# CONFIG_FUSE_FS is not set···11101292CONFIG_TMPFS=y11111293# CONFIG_TMPFS_POSIX_ACL is not set11121294# CONFIG_HUGETLB_PAGE is not set11131113-CONFIG_RAMFS=y11141295# CONFIG_CONFIGFS_FS is not set1115129611161297#···11221305# CONFIG_BEFS_FS is not set11231306# CONFIG_BFS_FS is not set11241307# CONFIG_EFS_FS is not set11251125-CONFIG_JFFS2_FS=m11261126-CONFIG_JFFS2_FS_DEBUG=011271127-CONFIG_JFFS2_FS_WRITEBUFFER=y11281128-# CONFIG_JFFS2_SUMMARY is not set11291129-# CONFIG_JFFS2_FS_XATTR is not set11301130-# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set11311131-CONFIG_JFFS2_ZLIB=y11321132-CONFIG_JFFS2_RTIME=y11331133-# CONFIG_JFFS2_RUBIN is not set13081308+# CONFIG_JFFS2_FS is not set11341309# CONFIG_CRAMFS is not set11351310# CONFIG_VXFS_FS is not set13111311+# CONFIG_MINIX_FS is not set13121312+# CONFIG_OMFS_FS is not set11361313# CONFIG_HPFS_FS is not set11371314# CONFIG_QNX4FS_FS is not set13151315+# CONFIG_ROMFS_FS is not set11381316# CONFIG_SYSV_FS is not set11391317# CONFIG_UFS_FS is not set11401140-11411141-#11421142-# Network File Systems11431143-#13181318+CONFIG_NETWORK_FILESYSTEMS=y11441319CONFIG_NFS_FS=y11451320CONFIG_NFS_V3=y11461321# CONFIG_NFS_V3_ACL is not set11471322# CONFIG_NFS_V4 is not set11481148-# CONFIG_NFS_DIRECTIO is not set11491323# CONFIG_NFSD is not set11501324CONFIG_LOCKD=y11511325CONFIG_LOCKD_V4=y···11491341# CONFIG_NCP_FS is not set11501342# CONFIG_CODA_FS is not set11511343# CONFIG_AFS_FS is not set11521152-# CONFIG_9P_FS is not set1153134411541345#11551346# Partition Types···11701363# CONFIG_SUN_PARTITION is not set11711364# CONFIG_KARMA_PARTITION is not set11721365# CONFIG_EFI_PARTITION is not set11731173-11741174-#11751175-# Native Language Support11761176-#13661366+# CONFIG_SYSV68_PARTITION is not set11771367CONFIG_NLS=y11781368CONFIG_NLS_DEFAULT="iso8859-1"11791369CONFIG_NLS_CODEPAGE_437=y···12111407# CONFIG_NLS_KOI8_R is not set12121408# CONFIG_NLS_KOI8_U is not set12131409# CONFIG_NLS_UTF8 is not set12141214-12151215-#12161216-# Distributed Lock Manager12171217-#12181410# CONFIG_DLM is not set12191219-12201220-#12211221-# Profiling support12221222-#12231223-# CONFIG_PROFILING is not set1224141112251412#12261413# Kernel hacking12271414#12281415# CONFIG_PRINTK_TIME is not set12291229-CONFIG_ENABLE_MUST_CHECK=y14161416+# CONFIG_ENABLE_WARN_DEPRECATED is not set14171417+# CONFIG_ENABLE_MUST_CHECK is not set14181418+CONFIG_FRAME_WARN=102412301419# CONFIG_MAGIC_SYSRQ is not set12311420# CONFIG_UNUSED_SYMBOLS is not set12321421# CONFIG_DEBUG_FS is not set12331422# CONFIG_HEADERS_CHECK is not set12341423# CONFIG_DEBUG_KERNEL is not set12351235-CONFIG_LOG_BUF_SHIFT=1412361424# CONFIG_DEBUG_BUGVERBOSE is not set14251425+# CONFIG_DEBUG_MEMORY_INIT is not set12371426CONFIG_FRAME_POINTER=y14271427+# CONFIG_LATENCYTOP is not set14281428+CONFIG_HAVE_FTRACE=y14291429+CONFIG_HAVE_DYNAMIC_FTRACE=y14301430+# CONFIG_FTRACE is not set14311431+# CONFIG_IRQSOFF_TRACER is not set14321432+# CONFIG_SCHED_TRACER is not set14331433+# CONFIG_CONTEXT_SWITCH_TRACER is not set14341434+# CONFIG_SAMPLES is not set14351435+CONFIG_HAVE_ARCH_KGDB=y12381436# CONFIG_DEBUG_USER is not set1239143712401438#···12441438#12451439# CONFIG_KEYS is not set12461440# CONFIG_SECURITY is not set14411441+# CONFIG_SECURITY_FILE_CAPABILITIES is not set14421442+CONFIG_CRYPTO=y1247144312481444#12491249-# Cryptographic options14451445+# Crypto core or helper12501446#12511251-CONFIG_CRYPTO=y12521447CONFIG_CRYPTO_ALGAPI=m12531448CONFIG_CRYPTO_BLKCIPHER=m12541449CONFIG_CRYPTO_MANAGER=m12551255-# CONFIG_CRYPTO_HMAC is not set12561256-# CONFIG_CRYPTO_XCBC is not set12571257-# CONFIG_CRYPTO_NULL is not set12581258-# CONFIG_CRYPTO_MD4 is not set12591259-# CONFIG_CRYPTO_MD5 is not set12601260-# CONFIG_CRYPTO_SHA1 is not set12611261-# CONFIG_CRYPTO_SHA256 is not set12621262-# CONFIG_CRYPTO_SHA512 is not set12631263-# CONFIG_CRYPTO_WP512 is not set12641264-# CONFIG_CRYPTO_TGR192 is not set12651450# CONFIG_CRYPTO_GF128MUL is not set12661266-CONFIG_CRYPTO_ECB=m12671267-CONFIG_CRYPTO_CBC=m12681268-CONFIG_CRYPTO_PCBC=m12691269-# CONFIG_CRYPTO_LRW is not set12701270-# CONFIG_CRYPTO_DES is not set12711271-# CONFIG_CRYPTO_FCRYPT is not set12721272-# CONFIG_CRYPTO_BLOWFISH is not set12731273-# CONFIG_CRYPTO_TWOFISH is not set12741274-# CONFIG_CRYPTO_SERPENT is not set12751275-# CONFIG_CRYPTO_AES is not set12761276-# CONFIG_CRYPTO_CAST5 is not set12771277-# CONFIG_CRYPTO_CAST6 is not set12781278-# CONFIG_CRYPTO_TEA is not set12791279-CONFIG_CRYPTO_ARC4=m12801280-# CONFIG_CRYPTO_KHAZAD is not set12811281-# CONFIG_CRYPTO_ANUBIS is not set12821282-# CONFIG_CRYPTO_DEFLATE is not set12831283-# CONFIG_CRYPTO_MICHAEL_MIC is not set12841284-# CONFIG_CRYPTO_CRC32C is not set12851285-# CONFIG_CRYPTO_CAMELLIA is not set14511451+# CONFIG_CRYPTO_NULL is not set14521452+# CONFIG_CRYPTO_CRYPTD is not set14531453+# CONFIG_CRYPTO_AUTHENC is not set12861454# CONFIG_CRYPTO_TEST is not set1287145512881456#12891289-# Hardware crypto devices14571457+# Authenticated Encryption with Associated Data12901458#14591459+# CONFIG_CRYPTO_CCM is not set14601460+# CONFIG_CRYPTO_GCM is not set14611461+# CONFIG_CRYPTO_SEQIV is not set14621462+14631463+#14641464+# Block modes14651465+#14661466+CONFIG_CRYPTO_CBC=m14671467+# CONFIG_CRYPTO_CTR is not set14681468+# CONFIG_CRYPTO_CTS is not set14691469+CONFIG_CRYPTO_ECB=m14701470+# CONFIG_CRYPTO_LRW is not set14711471+CONFIG_CRYPTO_PCBC=m14721472+# CONFIG_CRYPTO_XTS is not set14731473+14741474+#14751475+# Hash modes14761476+#14771477+# CONFIG_CRYPTO_HMAC is not set14781478+# CONFIG_CRYPTO_XCBC is not set14791479+14801480+#14811481+# Digest14821482+#14831483+# CONFIG_CRYPTO_CRC32C is not set14841484+# CONFIG_CRYPTO_MD4 is not set14851485+# CONFIG_CRYPTO_MD5 is not set14861486+CONFIG_CRYPTO_MICHAEL_MIC=m14871487+# CONFIG_CRYPTO_RMD128 is not set14881488+# CONFIG_CRYPTO_RMD160 is not set14891489+# CONFIG_CRYPTO_RMD256 is not set14901490+# CONFIG_CRYPTO_RMD320 is not set14911491+# CONFIG_CRYPTO_SHA1 is not set14921492+# CONFIG_CRYPTO_SHA256 is not set14931493+# CONFIG_CRYPTO_SHA512 is not set14941494+# CONFIG_CRYPTO_TGR192 is not set14951495+# CONFIG_CRYPTO_WP512 is not set14961496+14971497+#14981498+# Ciphers14991499+#15001500+CONFIG_CRYPTO_AES=m15011501+# CONFIG_CRYPTO_ANUBIS is not set15021502+CONFIG_CRYPTO_ARC4=m15031503+# CONFIG_CRYPTO_BLOWFISH is not set15041504+# CONFIG_CRYPTO_CAMELLIA is not set15051505+# CONFIG_CRYPTO_CAST5 is not set15061506+# CONFIG_CRYPTO_CAST6 is not set15071507+# CONFIG_CRYPTO_DES is not set15081508+# CONFIG_CRYPTO_FCRYPT is not set15091509+# CONFIG_CRYPTO_KHAZAD is not set15101510+# CONFIG_CRYPTO_SALSA20 is not set15111511+# CONFIG_CRYPTO_SEED is not set15121512+# CONFIG_CRYPTO_SERPENT is not set15131513+# CONFIG_CRYPTO_TEA is not set15141514+# CONFIG_CRYPTO_TWOFISH is not set15151515+15161516+#15171517+# Compression15181518+#15191519+# CONFIG_CRYPTO_DEFLATE is not set15201520+# CONFIG_CRYPTO_LZO is not set15211521+CONFIG_CRYPTO_HW=y1291152212921523#12931524# Library routines12941525#12951526CONFIG_BITREVERSE=y12961296-# CONFIG_CRC_CCITT is not set15271527+# CONFIG_GENERIC_FIND_FIRST_BIT is not set15281528+# CONFIG_GENERIC_FIND_NEXT_BIT is not set15291529+CONFIG_CRC_CCITT=y12971530# CONFIG_CRC16 is not set15311531+# CONFIG_CRC_T10DIF is not set15321532+# CONFIG_CRC_ITU_T is not set12981533CONFIG_CRC32=y15341534+# CONFIG_CRC7 is not set12991535# CONFIG_LIBCRC32C is not set13001300-CONFIG_ZLIB_INFLATE=m13011301-CONFIG_ZLIB_DEFLATE=m13021536CONFIG_PLIST=y13031537CONFIG_HAS_IOMEM=y13041538CONFIG_HAS_IOPORT=y15391539+CONFIG_HAS_DMA=y
···5656 unsigned int smr, srctype;57575858 switch (type) {5959- case IRQT_HIGH:5959+ case IRQ_TYPE_LEVEL_HIGH:6060 srctype = AT91_AIC_SRCTYPE_HIGH;6161 break;6262- case IRQT_RISING:6262+ case IRQ_TYPE_EDGE_RISING:6363 srctype = AT91_AIC_SRCTYPE_RISING;6464 break;6565- case IRQT_LOW:6565+ case IRQ_TYPE_LEVEL_LOW:6666 if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */6767 srctype = AT91_AIC_SRCTYPE_LOW;6868 else6969 return -EINVAL;7070 break;7171- case IRQT_FALLING:7171+ case IRQ_TYPE_EDGE_FALLING:7272 if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */7373 srctype = AT91_AIC_SRCTYPE_FALLING;7474 else
+7-7
arch/arm/mach-ep93xx/core.c
···226226 int port = line >> 3;227227 int port_mask = 1 << (line & 7);228228229229- if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQT_BOTHEDGE) {229229+ if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH) {230230 gpio_int_type2[port] ^= port_mask; /* switch edge direction */231231 ep93xx_gpio_update_int_params(port);232232 }···240240 int port = line >> 3;241241 int port_mask = 1 << (line & 7);242242243243- if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQT_BOTHEDGE)243243+ if ((irq_desc[irq].status & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)244244 gpio_int_type2[port] ^= port_mask; /* switch edge direction */245245246246 gpio_int_unmasked[port] &= ~port_mask;···283283 gpio_direction_input(gpio);284284285285 switch (type) {286286- case IRQT_RISING:286286+ case IRQ_TYPE_EDGE_RISING:287287 gpio_int_type1[port] |= port_mask;288288 gpio_int_type2[port] |= port_mask;289289 desc->handle_irq = handle_edge_irq;290290 break;291291- case IRQT_FALLING:291291+ case IRQ_TYPE_EDGE_FALLING:292292 gpio_int_type1[port] |= port_mask;293293 gpio_int_type2[port] &= ~port_mask;294294 desc->handle_irq = handle_edge_irq;295295 break;296296- case IRQT_HIGH:296296+ case IRQ_TYPE_LEVEL_HIGH:297297 gpio_int_type1[port] &= ~port_mask;298298 gpio_int_type2[port] |= port_mask;299299 desc->handle_irq = handle_level_irq;300300 break;301301- case IRQT_LOW:301301+ case IRQ_TYPE_LEVEL_LOW:302302 gpio_int_type1[port] &= ~port_mask;303303 gpio_int_type2[port] &= ~port_mask;304304 desc->handle_irq = handle_level_irq;305305 break;306306- case IRQT_BOTHEDGE:306306+ case IRQ_TYPE_EDGE_BOTH:307307 gpio_int_type1[port] |= port_mask;308308 /* set initial polarity based on current input level */309309 if (gpio_get_value(gpio))
+6-6
arch/arm/mach-imx/irq.c
···111111 reg = irq >> 5;112112 bit = 1 << (irq % 32);113113114114- if (type == IRQT_PROBE) {114114+ if (type == IRQ_TYPE_PROBE) {115115 /* Don't mess with enabled GPIOs using preconfigured edges or116116 GPIOs set to alternate function during probe */117117 /* TODO: support probe */···120120// return 0;121121// if (GAFR(gpio) & (0x3 << (((gpio) & 0xf)*2)))122122// return 0;123123-// type = __IRQT_RISEDGE | __IRQT_FALEDGE;123123+// type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;124124 }125125126126 GIUS(reg) |= bit;···128128129129 DEBUG_IRQ("setting type of irq %d to ", _irq);130130131131- if (type & __IRQT_RISEDGE) {131131+ if (type & IRQ_TYPE_EDGE_RISING) {132132 DEBUG_IRQ("rising edges\n");133133 irq_type = 0x0;134134 }135135- if (type & __IRQT_FALEDGE) {135135+ if (type & IRQ_TYPE_EDGE_FALLING) {136136 DEBUG_IRQ("falling edges\n");137137 irq_type = 0x1;138138 }139139- if (type & __IRQT_LOWLVL) {139139+ if (type & IRQ_TYPE_LEVEL_LOW) {140140 DEBUG_IRQ("low level\n");141141 irq_type = 0x3;142142 }143143- if (type & __IRQT_HIGHLVL) {143143+ if (type & IRQ_TYPE_LEVEL_HIGH) {144144 DEBUG_IRQ("high level\n");145145 irq_type = 0x2;146146 }
+4-4
arch/arm/mach-ixp2000/core.c
···329329 /*330330 * Then, set the proper trigger type.331331 */332332- if (type & IRQT_FALLING)332332+ if (type & IRQ_TYPE_EDGE_FALLING)333333 GPIO_IRQ_falling_edge |= 1 << line;334334 else335335 GPIO_IRQ_falling_edge &= ~(1 << line);336336- if (type & IRQT_RISING)336336+ if (type & IRQ_TYPE_EDGE_RISING)337337 GPIO_IRQ_rising_edge |= 1 << line;338338 else339339 GPIO_IRQ_rising_edge &= ~(1 << line);340340- if (type & IRQT_LOW)340340+ if (type & IRQ_TYPE_LEVEL_LOW)341341 GPIO_IRQ_level_low |= 1 << line;342342 else343343 GPIO_IRQ_level_low &= ~(1 << line);344344- if (type & IRQT_HIGH)344344+ if (type & IRQ_TYPE_LEVEL_HIGH)345345 GPIO_IRQ_level_high |= 1 << line;346346 else347347 GPIO_IRQ_level_high &= ~(1 << line);
+5-5
arch/arm/mach-ixp23xx/core.c
···126126 return -EINVAL;127127128128 switch (type) {129129- case IRQT_BOTHEDGE:129129+ case IRQ_TYPE_EDGE_BOTH:130130 int_style = IXP23XX_GPIO_STYLE_TRANSITIONAL;131131 irq_type = IXP23XX_IRQ_EDGE;132132 break;133133- case IRQT_RISING:133133+ case IRQ_TYPE_EDGE_RISING:134134 int_style = IXP23XX_GPIO_STYLE_RISING_EDGE;135135 irq_type = IXP23XX_IRQ_EDGE;136136 break;137137- case IRQT_FALLING:137137+ case IRQ_TYPE_EDGE_FALLING:138138 int_style = IXP23XX_GPIO_STYLE_FALLING_EDGE;139139 irq_type = IXP23XX_IRQ_EDGE;140140 break;141141- case IRQT_HIGH:141141+ case IRQ_TYPE_LEVEL_HIGH:142142 int_style = IXP23XX_GPIO_STYLE_ACTIVE_HIGH;143143 irq_type = IXP23XX_IRQ_LEVEL;144144 break;145145- case IRQT_LOW:145145+ case IRQ_TYPE_LEVEL_LOW:146146 int_style = IXP23XX_GPIO_STYLE_ACTIVE_LOW;147147 irq_type = IXP23XX_IRQ_LEVEL;148148 break;
···7272 ctrl = __raw_readl(KS8695_GPIO_VA + KS8695_IOPC);73737474 switch (type) {7575- case IRQT_HIGH:7575+ case IRQ_TYPE_LEVEL_HIGH:7676 mode = IOPC_TM_HIGH;7777 level_triggered = 1;7878 break;7979- case IRQT_LOW:7979+ case IRQ_TYPE_LEVEL_LOW:8080 mode = IOPC_TM_LOW;8181 level_triggered = 1;8282 break;8383- case IRQT_RISING:8383+ case IRQ_TYPE_EDGE_RISING:8484 mode = IOPC_TM_RISING;8585 break;8686- case IRQT_FALLING:8686+ case IRQ_TYPE_EDGE_FALLING:8787 mode = IOPC_TM_FALLING;8888 break;8989- case IRQT_BOTHEDGE:8989+ case IRQ_TYPE_EDGE_BOTH:9090 mode = IOPC_TM_EDGE;9191 break;9292 default:
+4-4
arch/arm/mach-netx/generic.c
···9999100100 irq = _irq - NETX_IRQ_HIF_CHAINED(0);101101102102- if (type & __IRQT_RISEDGE) {102102+ if (type & IRQ_TYPE_EDGE_RISING) {103103 DEBUG_IRQ("rising edges\n");104104 val |= (1 << 26) << irq;105105 }106106- if (type & __IRQT_FALEDGE) {106106+ if (type & IRQ_TYPE_EDGE_FALLING) {107107 DEBUG_IRQ("falling edges\n");108108 val &= ~((1 << 26) << irq);109109 }110110- if (type & __IRQT_LOWLVL) {110110+ if (type & IRQ_TYPE_LEVEL_LOW) {111111 DEBUG_IRQ("low level\n");112112 val &= ~((1 << 26) << irq);113113 }114114- if (type & __IRQT_HIGHLVL) {114114+ if (type & IRQ_TYPE_LEVEL_HIGH) {115115 DEBUG_IRQ("high level\n");116116 val |= (1 << 26) << irq;117117 }
+3-3
arch/arm/mach-omap1/board-osk.c
···288288 return;289289 }290290 /* the CF I/O IRQ is really active-low */291291- set_irq_type(OMAP_GPIO_IRQ(62), IRQT_FALLING);291291+ set_irq_type(OMAP_GPIO_IRQ(62), IRQ_TYPE_EDGE_FALLING);292292}293293294294static void __init osk_init_irq(void)···483483 omap_cfg_reg(P20_1610_GPIO4); /* PENIRQ */484484 gpio_request(4, "ts_int");485485 gpio_direction_input(4);486486- set_irq_type(OMAP_GPIO_IRQ(4), IRQT_FALLING);486486+ set_irq_type(OMAP_GPIO_IRQ(4), IRQ_TYPE_EDGE_FALLING);487487488488 spi_register_board_info(mistral_boardinfo,489489 ARRAY_SIZE(mistral_boardinfo));···494494 int ret = 0;495495496496 gpio_direction_input(OMAP_MPUIO(2));497497- set_irq_type(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), IRQT_RISING);497497+ set_irq_type(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), IRQ_TYPE_EDGE_RISING);498498#ifdef CONFIG_PM499499 /* share the IRQ in case someone wants to use the500500 * button for more than wakeup from system sleep.
+2-2
arch/arm/mach-omap1/board-palmz71.c
···298298 if (omap_get_gpio_datain(PALMZ71_USBDETECT_GPIO)) {299299 printk(KERN_INFO "PM: Power cable connected\n");300300 set_irq_type(OMAP_GPIO_IRQ(PALMZ71_USBDETECT_GPIO),301301- IRQT_FALLING);301301+ IRQ_TYPE_EDGE_FALLING);302302 } else {303303 printk(KERN_INFO "PM: Power cable disconnected\n");304304 set_irq_type(OMAP_GPIO_IRQ(PALMZ71_USBDETECT_GPIO),305305- IRQT_RISING);305305+ IRQ_TYPE_EDGE_RISING);306306 }307307 return IRQ_HANDLED;308308}
···3737 pgd_t *pgd;3838 pmd_t *pmd;3939 pte_t *pte, entry;4040- int ret = 0;4040+ int ret;41414242 pgd = pgd_offset(vma->vm_mm, address);4343 if (pgd_none(*pgd))···5555 entry = *pte;56565757 /*5858+ * If this page is present, it's actually being shared.5959+ */6060+ ret = pte_present(entry);6161+6262+ /*5863 * If this page isn't present, or is already setup to5964 * fault (ie, is old), we can safely ignore any issues.6065 */6161- if (pte_present(entry) && pte_val(entry) & shared_pte_mask) {6666+ if (ret && pte_val(entry) & shared_pte_mask) {6267 flush_cache_page(vma, address, pte_pfn(entry));6368 pte_val(entry) &= ~shared_pte_mask;6469 set_pte_at(vma->vm_mm, address, pte, entry);6570 flush_tlb_page(vma, address);6666- ret = 1;6771 }6872 pte_unmap(pte);6973 return ret;
+5-5
arch/arm/plat-mxc/gpio.c
···7373 void __iomem *reg = port->base;74747575 switch (type) {7676- case IRQT_RISING:7676+ case IRQ_TYPE_EDGE_RISING:7777 edge = GPIO_INT_RISE_EDGE;7878 break;7979- case IRQT_FALLING:7979+ case IRQ_TYPE_EDGE_FALLING:8080 edge = GPIO_INT_FALL_EDGE;8181 break;8282- case IRQT_LOW:8282+ case IRQ_TYPE_LEVEL_LOW:8383 edge = GPIO_INT_LOW_LEV;8484 break;8585- case IRQT_HIGH:8585+ case IRQ_TYPE_LEVEL_HIGH:8686 edge = GPIO_INT_HIGH_LEV;8787 break;8888- default: /* this includes IRQT_BOTHEDGE */8888+ default: /* this includes IRQ_TYPE_EDGE_BOTH */8989 return -EINVAL;9090 }9191
+14-14
arch/arm/plat-omap/gpio.c
···517517 u32 gpio_bit = 1 << gpio;518518519519 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT0, gpio_bit,520520- trigger & __IRQT_LOWLVL);520520+ trigger & IRQ_TYPE_LEVEL_LOW);521521 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT1, gpio_bit,522522- trigger & __IRQT_HIGHLVL);522522+ trigger & IRQ_TYPE_LEVEL_HIGH);523523 MOD_REG_BIT(OMAP24XX_GPIO_RISINGDETECT, gpio_bit,524524- trigger & __IRQT_RISEDGE);524524+ trigger & IRQ_TYPE_EDGE_RISING);525525 MOD_REG_BIT(OMAP24XX_GPIO_FALLINGDETECT, gpio_bit,526526- trigger & __IRQT_FALEDGE);526526+ trigger & IRQ_TYPE_EDGE_FALLING);527527528528 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {529529 if (trigger != 0)···555555 case METHOD_MPUIO:556556 reg += OMAP_MPUIO_GPIO_INT_EDGE;557557 l = __raw_readl(reg);558558- if (trigger & __IRQT_RISEDGE)558558+ if (trigger & IRQ_TYPE_EDGE_RISING)559559 l |= 1 << gpio;560560- else if (trigger & __IRQT_FALEDGE)560560+ else if (trigger & IRQ_TYPE_EDGE_FALLING)561561 l &= ~(1 << gpio);562562 else563563 goto bad;···567567 case METHOD_GPIO_1510:568568 reg += OMAP1510_GPIO_INT_CONTROL;569569 l = __raw_readl(reg);570570- if (trigger & __IRQT_RISEDGE)570570+ if (trigger & IRQ_TYPE_EDGE_RISING)571571 l |= 1 << gpio;572572- else if (trigger & __IRQT_FALEDGE)572572+ else if (trigger & IRQ_TYPE_EDGE_FALLING)573573 l &= ~(1 << gpio);574574 else575575 goto bad;···584584 gpio &= 0x07;585585 l = __raw_readl(reg);586586 l &= ~(3 << (gpio << 1));587587- if (trigger & __IRQT_RISEDGE)587587+ if (trigger & IRQ_TYPE_EDGE_RISING)588588 l |= 2 << (gpio << 1);589589- if (trigger & __IRQT_FALEDGE)589589+ if (trigger & IRQ_TYPE_EDGE_FALLING)590590 l |= 1 << (gpio << 1);591591 if (trigger)592592 /* Enable wake-up during idle for dynamic tick */···599599 case METHOD_GPIO_730:600600 reg += OMAP730_GPIO_INT_CONTROL;601601 l = __raw_readl(reg);602602- if (trigger & __IRQT_RISEDGE)602602+ if (trigger & IRQ_TYPE_EDGE_RISING)603603 l |= 1 << gpio;604604- else if (trigger & __IRQT_FALEDGE)604604+ else if (trigger & IRQ_TYPE_EDGE_FALLING)605605 l &= ~(1 << gpio);606606 else607607 goto bad;···887887 _set_gpio_direction(bank, get_gpio_index(gpio), 1);888888 _set_gpio_irqenable(bank, gpio, 0);889889 _clear_gpio_irqstatus(bank, gpio);890890- _set_gpio_triggering(bank, get_gpio_index(gpio), IRQT_NOEDGE);890890+ _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);891891}892892893893/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */···924924 /* Set trigger to none. You need to enable the desired trigger with925925 * request_irq() or set_irq_type().926926 */927927- _set_gpio_triggering(bank, get_gpio_index(gpio), IRQT_NOEDGE);927927+ _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);928928929929#ifdef CONFIG_ARCH_OMAP15XX930930 if (bank->method == METHOD_GPIO_1510) {
+1-1
arch/arm/plat-s3c24xx/Kconfig
···99 depends on ARCH_S3C24101010 default y if ARCH_S3C24101111 select NO_IOPORT1212- select HAVE_GPIO_LIB1212+ select ARCH_REQUIRE_GPIOLIB1313 help1414 Base platform code for any Samsung S3C24XX device1515
+6-6
arch/arm/plat-s3c24xx/irq.c
···292292 /* Set the external interrupt to pointed trigger type */293293 switch (type)294294 {295295- case IRQT_NOEDGE:295295+ case IRQ_TYPE_NONE:296296 printk(KERN_WARNING "No edge setting!\n");297297 break;298298299299- case IRQT_RISING:299299+ case IRQ_TYPE_EDGE_RISING:300300 newvalue = S3C2410_EXTINT_RISEEDGE;301301 break;302302303303- case IRQT_FALLING:303303+ case IRQ_TYPE_EDGE_FALLING:304304 newvalue = S3C2410_EXTINT_FALLEDGE;305305 break;306306307307- case IRQT_BOTHEDGE:307307+ case IRQ_TYPE_EDGE_BOTH:308308 newvalue = S3C2410_EXTINT_BOTHEDGE;309309 break;310310311311- case IRQT_LOW:311311+ case IRQ_TYPE_LEVEL_LOW:312312 newvalue = S3C2410_EXTINT_LOWLEV;313313 break;314314315315- case IRQT_HIGH:315315+ case IRQ_TYPE_LEVEL_HIGH:316316 newvalue = S3C2410_EXTINT_HILEV;317317 break;318318
+5-3
arch/x86/kernel/head_32.S
···4564561:457457#endif /* CONFIG_SMP */458458 jmp *(initial_code)459459-.align 4460460-ENTRY(initial_code)461461- .long i386_start_kernel462459463460/*464461 * We depend on ET to be correct. This checks for 287/387.···597600 popl %eax598601#endif599602 iret603603+604604+.section .cpuinit.data,"wa"605605+.align 4606606+ENTRY(initial_code)607607+ .long i386_start_kernel600608601609.section .text602610/*
···22#define _ASM_ARCH_PXA25X_UDC_H3344#ifdef _ASM_ARCH_PXA27X_UDC_H55-#error You can't include both PXA25x and PXA27x UDC support55+#error "You can't include both PXA25x and PXA27x UDC support"66#endif7788#define UDC_RES1 __REG(0x40600004) /* UDC Undocumented - Reserved1 */
+1-1
include/asm-arm/arch-sa1100/ide.h
···61616262 /* Enable GPIO as interrupt line */6363 GPDR &= ~LART_GPIO_IDE;6464- set_irq_type(LART_IRQ_IDE, IRQT_RISING);6464+ set_irq_type(LART_IRQ_IDE, IRQ_TYPE_EDGE_RISING);65656666 /* set PCMCIA interface timing */6767 MECR = 0x00060006;
+8-1
include/asm-arm/bitops.h
···277277 * the clz instruction for much better code efficiency.278278 */279279280280-#define fls(x) \280280+#define __fls(x) \281281 ( __builtin_constant_p(x) ? constant_fls(x) : \282282 ({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) )283283+284284+/* Implement fls() in C so that 64-bit args are suitably truncated */285285+static inline int fls(int x)286286+{287287+ return __fls(x);288288+}289289+283290#define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })284291#define __ffs(x) (ffs(x) - 1)285292#define ffz(x) __ffs( ~(x) )
+13-4
include/asm-arm/cacheflush.h
···459459#define __cacheid_vivt_asid_tagged_instr(val) (__cacheid_type_v7(val) ? ((val & (3 << 14)) == (1 << 14)) : 0)460460461461#if defined(CONFIG_CPU_CACHE_VIVT) && !defined(CONFIG_CPU_CACHE_VIPT)462462-462462+/*463463+ * VIVT caches only464464+ */463465#define cache_is_vivt() 1464466#define cache_is_vipt() 0465467#define cache_is_vipt_nonaliasing() 0466468#define cache_is_vipt_aliasing() 0467469#define icache_is_vivt_asid_tagged() 0468470469469-#elif defined(CONFIG_CPU_CACHE_VIPT)470470-471471+#elif !defined(CONFIG_CPU_CACHE_VIVT) && defined(CONFIG_CPU_CACHE_VIPT)472472+/*473473+ * VIPT caches only474474+ */471475#define cache_is_vivt() 0472476#define cache_is_vipt() 1473477#define cache_is_vipt_nonaliasing() \···493489 })494490495491#else496496-492492+/*493493+ * VIVT or VIPT caches. Note that this is unreliable since ARM926494494+ * and V6 CPUs satisfy the "(val & (15 << 25)) == (14 << 25)" test.495495+ * There's no way to tell from the CacheType register what type (!)496496+ * the cache is.497497+ */497498#define cache_is_vivt() \498499 ({ \499500 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \
···11/*22- * proc_io_accounting: a structure which is used for recording a single task's22+ * task_io_accounting: a structure which is used for recording a single task's33 * IO statistics.44 *55 * Don't include this header file directly - it is designed to be dragged in via···88 * Blame akpm@osdl.org for all this.99 */10101111+struct task_io_accounting {1112#ifdef CONFIG_TASK_XACCT1212-struct task_chr_io_accounting {1313 /* bytes read */1414 u64 rchar;1515 /* bytes written */···1818 u64 syscr;1919 /* # of write syscalls */2020 u64 syscw;2121-};2222-#else /* CONFIG_TASK_XACCT */2323-struct task_chr_io_accounting {2424-};2521#endif /* CONFIG_TASK_XACCT */26222723#ifdef CONFIG_TASK_IO_ACCOUNTING2828-struct task_io_accounting {2924 /*3025 * The number of bytes which this task has caused to be read from3126 * storage.···4146 * information loss in doing that.4247 */4348 u64 cancelled_write_bytes;4444-};4545-#else /* CONFIG_TASK_IO_ACCOUNTING */4646-struct task_io_accounting {4747-};4849#endif /* CONFIG_TASK_IO_ACCOUNTING */4949-5050-struct proc_io_accounting {5151- struct task_chr_io_accounting chr;5252- struct task_io_accounting blk;5350};