forked from ckaestne/TypeChef-LinuxAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
completedConf.h_withBoolean
2014 lines (2014 loc) · 56.5 KB
/
completedConf.h_withBoolean
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#undef CONFIG_MTD_NAND_OMAP2
#undef CONFIG_SPI_SH_MSIOF
#undef CONFIG_FB_Q40
#undef CONFIG_SERIAL_SA1100
#undef CONFIG_BFIN548_EZKIT
#undef CONFIG_FB_OMAP_048M3R
#undef CONFIG_CRYPTO_DES_S390
#undef CONFIG_MACH_DAVINCI_EVM
#undef CONFIG_HAVE_LMB
#undef CONFIG_TULIP_DM910X
#undef CONFIG_FB_ARMCLCD_AUO_A070VW01_WIDE
#undef CONFIG_AT91RM9200_WATCHDOG
#undef CONFIG_MTD_XIP
#undef CONFIG_PATA_PALMLD
#undef CONFIG_EP7211_DONGLE
#undef CONFIG_ARCH_PXA_PALM
#undef CONFIG_UART0_CTS_PIN
#undef CONFIG_I2C_HIGHLANDER
#undef CONFIG_BFIN527_EZKIT
#undef CONFIG_FB_INTSRAM
#undef CONFIG_SND_OMAP_SOC_AM3517EVM
#undef CONFIG_SERIAL_SUNSAB
#undef CONFIG_MTD_PCMCIA
#define CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST
#undef CONFIG_SND_OMAP_SOC_N810
#undef CONFIG_KEYBOARD_OMAP
#undef CONFIG_XTENSA_XT2000_SONIC
#undef CONFIG_DECLANCE
#undef CONFIG_SERIAL_TXX9
#undef CONFIG_I2C_IMX
#undef CONFIG_MTD_TQM8XXL
#undef CONFIG_MFD_WM8351_CONFIG_MODE_0
#undef CONFIG_AMIGA_PCMCIA
#undef CONFIG_MTD_AFS_PARTS
#undef CONFIG_APOLLO
#undef CONFIG_MENELAUS
#undef CONFIG_ARCH_IXDP2X01
#undef CONFIG_SND_PXA2XX_SOC_E740
#undef CONFIG_M32R
#undef CONFIG_AGP_UNINORTH
#undef CONFIG_ARCH_AT91RM9200
#undef CONFIG_APM_POWER
#undef CONFIG_M520x
#undef CONFIG_S390_VMUR
#undef CONFIG_SH_HIGHLANDER
#undef CONFIG_ALPHA_MARVEL
#undef CONFIG_WINDFARM_PM121
#undef CONFIG_VIDEOBUF_DMA_CONTIG
#undef CONFIG_SA1100_BITSY
#undef CONFIG_KEYBOARD_SPITZ
#undef CONFIG_PARISC
#undef CONFIG_STMMAC_DA
#undef CONFIG_PPC_MAPLE
#undef CONFIG_MTD_H720X
#undef CONFIG_PATA_OCTEON_CF
#undef CONFIG_BFIN_SIR
#undef CONFIG_ARCH_INLINE_READ_LOCK
#undef CONFIG_PMAC_SMU
#undef CONFIG_ATMEL_TCB_CLKSRC_BLOCK
#undef CONFIG_CRYPTO_AES_S390
#undef CONFIG_I2C_POWERMAC
#undef CONFIG_SERIAL_DZ_CONSOLE
#undef CONFIG_MPC8610
#undef CONFIG_ARCH_ORION5X
#undef CONFIG_SND_AOA_SOUNDBUS
#undef CONFIG_S5K3E2FX
#undef CONFIG_MVME147
#define CONFIG_IO_DELAY_TYPE_NONE
#undef CONFIG_SERIAL_MPSC_CONSOLE
#define CONFIG_VIRT_TO_BUS
#undef CONFIG_M32R_CFC_NUM
#undef CONFIG_MACH_PALMTX
#undef CONFIG_FB_AU1200
#undef CONFIG_MMC_MSM7X00A
#undef CONFIG_BFIN_SIR1
#undef CONFIG_INLINE_SPIN_UNLOCK_BH
#undef CONFIG_PCMCIA_SA1100
#undef CONFIG_IA64_HP_ZX1
#undef CONFIG_BINFMT_SOM
#undef CONFIG_ARCH_LH7A40X
#undef CONFIG_FB_SBUS
#undef CONFIG_SIBYTE_WDOG
#undef CONFIG_ARCH_AT91SAM9G45
#undef CONFIG_CAN_BFIN
#undef CONFIG_RTC_DRV_S3C
#undef CONFIG_MSM_CAMERA_DEBUG
#undef CONFIG_TI_DAVINCI_EMAC
#undef CONFIG_SND_DAVINCI_SOC_I2S
#undef CONFIG_PXA25x
#undef CONFIG_FB_SA1100
#undef CONFIG_SERIAL_S3C2410
#undef CONFIG_ADB_PMU
#undef CONFIG_CRYPTO_DEV_TALITOS
#undef CONFIG_PLAT_M32700UT
#undef CONFIG_ATARI_SCSI_RESET_BOOT
#undef CONFIG_SERIAL_BFIN_SPORT
#undef CONFIG_KEYBOARD_HIL
#undef CONFIG_RTC_DRV_MV
#undef CONFIG_USB_TUSB6010
#undef CONFIG_MT9V022_PCA9536_SWITCH
#undef CONFIG_I2C_S6000
#undef CONFIG_SERIAL_SPORT_BAUD_RATE_9600
#define CONFIG_DEFAULT_IO_DELAY_TYPE
#undef CONFIG_ARCH_SHARK
#undef CONFIG_CAN_MSCAN
#define CONFIG_HAVE_KERNEL_LZMA
#undef CONFIG_FB_EP93XX
#undef CONFIG_SERIAL_BFIN_UART0
#undef CONFIG_SERIO_RPCKBD
#undef CONFIG_SOUND_VIDC
#undef CONFIG_I2C_STU300
#undef CONFIG_XPS_USB_HCD_XILINX
#undef CONFIG_SBC8560
#undef CONFIG_PMAC_APM_EMU
#undef CONFIG_BVME6000_NET
#undef CONFIG_RTC_DRV_STARFIRE
#undef CONFIG_GEF_SBC310
#undef CONFIG_SERIAL_ATMEL_PDC
#undef CONFIG_SOUND_AU1550_AC97
#undef CONFIG_BLK_DEV_FALCON_IDE
#undef CONFIG_MMC_MVSDIO
#undef CONFIG_VIDEO_M32R_AR_M64278
#undef CONFIG_FB_FM2
#undef CONFIG_DW_DMAC
#undef CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND
#undef CONFIG_SND_POWERMAC
#undef CONFIG_DIO
#undef CONFIG_FHCI_DEBUG
#undef CONFIG_SND_S3C24XX_SOC_SIMTEC
#undef CONFIG_UART0_RTS_PIN
#undef CONFIG_IXP4XX_QMGR
#undef CONFIG_BVME6000_SCSI
#undef CONFIG_SERIAL_MSM_CONSOLE
#undef CONFIG_ARCH_OMAP16XX
#undef CONFIG_WLAN_80211
#undef CONFIG_FB_AMIGA_ECS
#undef CONFIG_RTC_DRV_AT91SAM9_GPBR
//#undef CONFIG_WANT_PAGE_DEBUG_FLAGS
#undef CONFIG_MTD_NAND_OMAP_PREFETCH
#undef CONFIG_GPIO_VR41XX
#undef CONFIG_SND_SGI_HAL2
#undef CONFIG_GEF_PPC9A
#undef CONFIG_FB_ACORN
#undef CONFIG_RTC_DRV_VR41XX
#undef CONFIG_HOTPLUG_PCI_SGI
#define CONFIG_HZ
#undef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
#undef CONFIG_CRYPTO_SHA256_S390
#undef CONFIG_ARM_AMBA
#undef CONFIG_SERIAL_8250_HP300
#undef CONFIG_SND_SOC_PCM_SH7760
#undef CONFIG_SERIAL_SUNSAB_CONSOLE
#undef CONFIG_SH_WDT
#undef CONFIG_AU1000_FIR
#undef CONFIG_PCMCIA_VRC4173
#define CONFIG_ZONE_DMA
#undef CONFIG_MTD_NAND_ATMEL_ECC_HW
#undef CONFIG_FB_SH7760
#undef CONFIG_HVCS
#undef CONFIG_UNDEFINED
#undef CONFIG_WLAGS49_H2
#undef CONFIG_SND_S3C24XX_SOC_S3C24XX_UDA134X
#undef CONFIG_USB_ATMEL_USBA
#undef CONFIG_SERIAL_MPC52xx
#undef CONFIG_ARCH_IOP13XX
#undef CONFIG_ATARI
#undef CONFIG_S390_TAPE_34XX
#undef CONFIG_SOUND_WAVEARTIST
#undef CONFIG_SERIAL_SUNZILOG
#undef CONFIG_SND_DAVINCI_SOC_SFFSDR
#undef CONFIG_RPXLITE
#undef CONFIG_MACH_EM_X270
#undef CONFIG_PS3_PS3AV
#define CONFIG_HAVE_KERNEL_GZIP
#undef CONFIG_MT9D112
#undef CONFIG_SERIAL_LH7A40X_CONSOLE
#undef CONFIG_TOUCHSCREEN_HP600
#undef CONFIG_FB_PRE_INIT_FB
#undef CONFIG_ARCH_OMAP2
#undef CONFIG_USB_MUSB_HOST
#undef CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE
#undef CONFIG_MPCORE_WATCHDOG
#undef CONFIG_ARCH_RPC
#undef CONFIG_SERIAL_AMBA_PL011
#undef CONFIG_SND_PXA2XX_SOC_SPITZ
#undef CONFIG_AGP_PARISC
#undef CONFIG_ARCH_KIRKWOOD
#undef CONFIG_BF534
#undef CONFIG_I2C_AT91
#undef CONFIG_SND_S3C24XX_SOC_SIMTEC_TLV320AIC23
#undef CONFIG_USB_OMAP
#undef CONFIG_M527x
#undef CONFIG_ADB_MACIO
#undef CONFIG_LEDS_GPIO_OF
#undef CONFIG_IA64_SGI_SN2
#undef CONFIG_ARCH_AT91X40
#undef CONFIG_IBMVETH
#undef CONFIG_BLK_DEV_IDE_PMAC
#undef CONFIG_KEYBOARD_PXA930_ROTARY
#undef CONFIG_SND_PXA2XX_SOC_AC97
#undef CONFIG_CPU_SUBTYPE_SH7786
#undef CONFIG_GEF_WDT
#undef CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE
#undef CONFIG_MACH_DAVINCI_DA830_EVM
#undef CONFIG_I2C_SH7760
#undef CONFIG_SH_DMA
#undef CONFIG_MACH_OMAP_H4_OTG
#undef CONFIG_MTD_NAND_BF5XX
#undef CONFIG_UML
#undef CONFIG_USB_FSL_USB2
#undef CONFIG_CPU_S3C2440
#undef CONFIG_MIPS_COBALT
#undef CONFIG_PATA_MACIO
#undef CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE
#undef CONFIG_OMAP_WATCHDOG
#undef CONFIG_GEF_SBC610
#undef CONFIG_INTEL_IOP_ADMA
#undef CONFIG_SIBYTE_SWARM
#undef CONFIG_VIDEO_VPFE_CAPTURE
#undef CONFIG_SPIDER_NET
#undef CONFIG_TOUCHSCREEN_WM97XX_MAINSTONE
#undef CONFIG_QE_GPIO
#undef CONFIG_DASD_ECKD
#undef CONFIG_OF_MDIO
#undef CONFIG_MACH_SMDK6410
#undef CONFIG_THERM_PM72
#undef CONFIG_SND_ATMEL_SOC_SSC
#undef CONFIG_SND_PXA2XX_SOC_EM_X270
#undef CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ
#undef CONFIG_TXX9_WDT
#undef CONFIG_PPC_MPC52xx
#undef CONFIG_PPC_PREP
#undef CONFIG_FB_PLATINUM
#undef CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE
#undef CONFIG_SND_AT91_SOC_AFEB9260
#undef CONFIG_PCMCIA_AU1X00
#undef CONFIG_FB_CG3
#undef CONFIG_SND_SOC_MPC5200_AC97
#undef CONFIG_ARCH_REALVIEW
#undef CONFIG_SCSI_ZALON
#undef CONFIG_MACH_INTELMOTE2
#undef CONFIG_EDAC_AMD8111
#undef CONFIG_ARCH_STMP3XXX
#undef CONFIG_SERIAL_BCM63XX
#undef CONFIG_ATARI_FLOPPY
#undef CONFIG_SND_PXA2XX_SOC_TOSA
#undef CONFIG_MTD_IXP4XX
#undef CONFIG_PCMCIA_PXA2XX
#undef CONFIG_PLAT_ORION
#undef CONFIG_SERIO_AT32PSIF
#undef CONFIG_VLYNQ_DEBUG
#undef CONFIG_MX3_VIDEO
#undef CONFIG_BF523
#undef CONFIG_HAVE_CLK
#undef CONFIG_FB_LEO
#undef CONFIG_BLK_DEV_Q40IDE
#undef CONFIG_SND_S6000_SOC
#undef CONFIG_MTD_NAND_BCM_UMI
#undef CONFIG_FB_ARMCLCD_SHARP_LQ64D343
#undef CONFIG_RC32434_WDT
#undef CONFIG_ATARI_KBD_CORE
#undef CONFIG_BLK_DEV_CELLEB
#undef CONFIG_PANEL_SHARP_LS037V7DW01
#undef CONFIG_BATTERY_COLLIE
#undef CONFIG_no
#undef CONFIG_SND_SOC_TXX9ACLC
#undef CONFIG_OMAP2_DSS
#undef CONFIG_MPC85xx
#undef CONFIG_MG_DISK_RES
#undef CONFIG_ALPHA_TITAN
#undef CONFIG_BFIN533_STAMP
#undef CONFIG_FB_AMIGA_OCS
#undef CONFIG_ARCH_INLINE_READ_UNLOCK
#define CONFIG_X86_INTERNODE_CACHE_SHIFT
#undef CONFIG_INLINE_SPIN_LOCK_BH
#undef CONFIG_MTD_SA1100
#undef CONFIG_TN3270_FS
#undef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
#undef CONFIG_SOC_AU1200
#undef CONFIG_ARCH_MMP
#undef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
#undef CONFIG_INIT_ALL_POSSIBLE
#undef CONFIG_CPU_SUBTYPE_SH7724
#undef CONFIG_OF
#undef CONFIG_GIANFAR
#undef CONFIG_SND_MIPS
#undef CONFIG_FB_HP300
#undef CONFIG_MTD_NAND_MXC
#undef CONFIG_SHARP_LOCOMO
#undef CONFIG_BF512
#undef CONFIG_ARCH_OMAP1
#undef CONFIG_ARM_AT91_ETHER
#undef CONFIG_SERIAL_SAMSUNG
#undef CONFIG_SND_OMAP_SOC_OMAP3_PANDORA
#undef CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
#undef CONFIG_SMSGIUCV
#undef CONFIG_PPC_BOOK3S_64
#undef CONFIG_GVP11_SCSI
#undef CONFIG_SERIAL_PMACZILOG
#undef CONFIG_MTD_NAND_ATMEL_ECC_SOFT
#undef CONFIG_MTD_CEIVA
#undef CONFIG_OF_DEVICE
#undef CONFIG_MTD_NAND_TXX9NDFMC
#undef CONFIG_MOUSE_RISCPC
#undef CONFIG_MIPS_AU1X00_ENET
#undef CONFIG_LEDS_H1940
#undef CONFIG_PPC_86xx
#undef CONFIG_SPI_S3C24XX_FIQ
#undef CONFIG_CPU_SUBTYPE_ST40
#undef CONFIG_I2C_PNX
#undef CONFIG_PPC_8xx
#undef CONFIG_KEYBOARD_HP6XX
#undef CONFIG_LEDS_COBALT_QUBE
#undef CONFIG_SND_AOA_SOUNDBUS_I2S
#undef CONFIG_SGI_IP27
#define CONFIG_HAS_IOMEM
#undef CONFIG_RIONET_TX_SIZE
#undef CONFIG_ARM
#undef CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ
#undef CONFIG_MPC8610_HPCD
#undef CONFIG_SND_ARM
#undef CONFIG_MACB
#undef CONFIG_LEDS_AMS_DELTA
#undef CONFIG_MACH_JAZZ
#undef CONFIG_MMC_S3C_PIO
#undef CONFIG_ASYNC_MEMSET
#undef CONFIG_ARCH_MX25
#undef CONFIG_INPUT_BFIN_ROTARY
#undef CONFIG_SND_SOC_SH4_FSI
#undef CONFIG_BRIQ_PANEL
#undef CONFIG_SMC911X
#undef CONFIG_SND_S3C24XX_SOC_NEO1973_WM8753
#undef CONFIG_MBX
#undef CONFIG_MAC_FLOPPY
#undef CONFIG_ARCH_CLPS711X
#undef CONFIG_SSB_EMBEDDED
#undef CONFIG_X86_DS
#undef CONFIG_SERIAL_UARTLITE_CONSOLE
#undef CONFIG_WANT_COMPAT_NETLINK_MESSAGES
#undef CONFIG_USB_FSL_QE
#undef CONFIG_XILINX_LL_TEMAC
#undef CONFIG_USB_TI_CPPI_DMA
#undef CONFIG_MCP_UCB1200_TS
#undef CONFIG_VIDEO_DAVINCI_VPIF
#undef CONFIG_BLK_DEV_IDE_AT91
#undef CONFIG_FB_BFIN_LQ035Q1
#undef CONFIG_ATARILANCE
#undef CONFIG_IA64_HP_SIM
#undef CONFIG_LCD_HP700
#undef CONFIG_SERIAL_MPSC
#undef CONFIG_SERIAL_SUNHV
#undef CONFIG_MFD_WM8350_CONFIG_MODE_1
#undef CONFIG_STMMAC_DUAL_MAC
#undef CONFIG_NR_QUICK
#undef CONFIG_FB_OF
#undef CONFIG_WATCHDOG_CP1XXX
#undef CONFIG_HOTPLUG_PCI_RPA_DLPAR
#define CONFIG_IO_DELAY_TYPE_0XED
#undef CONFIG_MTD_LART
#define CONFIG_FIX_EARLYCON_MEM
#undef CONFIG_SERIAL_S3C2440
#undef CONFIG_HVC_RTAS
#undef CONFIG_DMV182
#undef CONFIG_TN3270_TTY
#undef CONFIG_FB_COBALT
#undef CONFIG_BFIN_UART2_CTSRTS
#undef CONFIG_RIONET
#undef CONFIG_ARCH_NOMADIK
#undef CONFIG_SERIAL_SH_SCI_CONSOLE
#undef CONFIG_SERIAL_PMACZILOG_TTYS
#undef CONFIG_MACH_DAVINCI_DM6467_EVM
#undef CONFIG_S3C_DEV_USB_HSOTG
#undef CONFIG_FB_AU1100
#undef CONFIG_KEYBOARD_ATARI
#undef CONFIG_SERIO_GSCPS2
#undef CONFIG_ARCH_AT91SAM9261
#undef CONFIG_SND_PXA2XX_PCM
#undef CONFIG_SUNBMAC
#undef CONFIG_ARCH_U300
#undef CONFIG_ADB_CUDA
#undef CONFIG_IXP2000_WATCHDOG
#undef CONFIG_HOTPLUG_PCI_RPA
#undef CONFIG_SERIAL_GRLIB_GAISLER_APBUART_CONSOLE
#undef CONFIG_INLINE_WRITE_LOCK_IRQSAVE
#define CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
#undef CONFIG_MMC_ATMELMCI
#undef CONFIG_SERIAL_MCF_BAUDRATE
#define CONFIG_HAVE_KERNEL_BZIP2
#undef CONFIG_MACH_PALMTE2
#undef CONFIG_ARM_ETHER1
#undef CONFIG_PANEL_TAAL
#undef CONFIG_FB_PS3
#undef CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD
#undef CONFIG_SCSI_ARXESCSI
#undef CONFIG_CPU_SUBTYPE_SH7720
#undef CONFIG_S6GMAC
#undef CONFIG_DAVINCI_WATCHDOG
#undef CONFIG_INPUT_RB532_BUTTON
#undef CONFIG_SH_ETH
#undef CONFIG_SERIAL_SUNZILOG_CONSOLE
#undef CONFIG_IBM_NEW_EMAC_ZMII
#undef CONFIG_SUPERH
#undef CONFIG_IXP4XX_HSS
#undef CONFIG_MMAP_ALLOW_UNINITIALIZED
#undef CONFIG_MACH_AAED2000
#undef CONFIG_MMC_AU1X
#undef CONFIG_ARCH_MX1
#undef CONFIG_MACH_TS72XX
#define CONFIG_GENERIC_FIND_FIRST_BIT
#undef CONFIG_ARCH_EBSA110
#undef CONFIG_ARCH_OMAP3
#undef CONFIG_MTD_NAND_BCM_UMI_HWCS
#undef CONFIG_SCLP_CONSOLE
#undef CONFIG_REED_SOLOMON_ENC16
#undef CONFIG_MSP_FLASH_MAP_LIMIT
#undef CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH
#undef CONFIG_DASD_FBA
#undef CONFIG_X86_POWERNOW_K7_ACPI
#undef CONFIG_MFD_WM8350_CONFIG_MODE_3
#undef CONFIG_RTC_DRV_NUC900
#undef CONFIG_ARCH_DAVINCI_DM355
#undef CONFIG_RAPIDIO
#undef CONFIG_MYRI_SBUS
#undef CONFIG_FB_BW2
#undef CONFIG_SERIAL_SH_SCI
#undef CONFIG_FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
#undef CONFIG_ARCH_IOP33X
#define CONFIG_HAVE_DYNAMIC_FTRACE
#undef CONFIG_I2C_PXA
#undef CONFIG_MFD_WM8351_CONFIG_MODE_1
#undef CONFIG_CPU_S3C2400
#undef CONFIG_BINFMT_FLAT
#undef CONFIG_I2C_AU1550
#undef CONFIG_KEYBOARD_CORGI
#undef CONFIG_S390
#undef CONFIG_SND_SOC_AU1XPSC_I2S
#undef CONFIG_SCSI_LASI700
#define CONFIG_INIT_ENV_ARG_LIMIT
#undef CONFIG_CPU_SB1
#undef CONFIG_PXA_SHARPSL
#undef CONFIG_SND_MPC52xx_DMA
#undef CONFIG_MACH_SMDK2443
#undef CONFIG_INLINE_READ_LOCK
#undef CONFIG_SERIAL_SC26XX
#undef CONFIG_SH_WDT_MMAP
#undef CONFIG_HAS_TXX9_SERIAL
#undef CONFIG_DMASOUND
#undef CONFIG_CAN_SJA1000_OF_PLATFORM
#undef CONFIG_ARCH_IXP4XX
#undef CONFIG_SND_S3C64XX_SOC_WM8580
#undef CONFIG_EP93XX_ETH
#undef CONFIG_ARCH_DAVINCI_DA8XX
#undef CONFIG_MFD_TMIO
#undef CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST
#define CONFIG_ARCH_WANT_FRAME_POINTERS
#undef CONFIG_STMMAC_TMU_TIMER
#undef CONFIG_PPC_PMAC64
#undef CONFIG_SERIAL_MPC52xx_CONSOLE
#undef CONFIG_SSB_SERIAL
#undef CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE
#undef CONFIG_TSI108_BRIDGE
#undef CONFIG_SERIAL_8250_GSC
#undef CONFIG_ARCH_INLINE_WRITE_UNLOCK
#undef CONFIG_LOGO_BLACKFIN_VGA16
#undef CONFIG_PPC_OF
#undef CONFIG_LOGO_M32R_CLUT224
#undef CONFIG_BROKEN
#undef CONFIG_INPUT_COBALT_BTNS
#undef CONFIG_QETH
#define CONFIG_ANON_INODES
#undef CONFIG_ARCH_OMAP34XX
#undef CONFIG_MV64X60_WDT
#undef CONFIG_8xx
#undef CONFIG_FB_ATMEL
#undef CONFIG_SND_ATMEL_ABDAC
#undef CONFIG_MTD_NAND_S3C2410_DEBUG
#undef CONFIG_PATA_MPC52xx
#undef CONFIG_UGETH_TX_ON_DEMAND
#undef CONFIG_SND_PXA2XX_SOC_IMOTE2
#undef CONFIG_ARCH_PXA_ESERIES
#undef CONFIG_MACH_OMAP_ZOOM2
#undef CONFIG_MFD_T7L66XB
#undef CONFIG_FB_XVR500
#undef CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL
#undef CONFIG_ADB_IOP
#undef CONFIG_M528x
#undef CONFIG_BF549
#define CONFIG_HAS_IOPORT
#undef CONFIG_MMC_ATMELMCI_DMA
#undef CONFIG_PATA_BF54X
#undef CONFIG_SPI_MPC8xxx
#undef CONFIG_53C700_LE_ON_BE
#undef CONFIG_SND_SOC_SH4_HAC
#undef CONFIG_SERIAL_LH7A40X
#undef CONFIG_SERIO_MACEPS2
#undef CONFIG_SERIAL_KS8695
#undef CONFIG_WDT_MTX1
#undef CONFIG_SPARC
#undef CONFIG_SERIAL_AMBA_PL010_CONSOLE
#undef CONFIG_MT9M001_PCA9536_SWITCH
#undef CONFIG_MMC_SDHCI_S3C_DMA
#undef CONFIG_MCP
#undef CONFIG_PMC_MSP
#undef CONFIG_ARCH_INLINE_READ_TRYLOCK
#undef CONFIG_OF_SPI
#undef CONFIG_FS_ENET_MDIO_FEC
#undef CONFIG_RALINK_RT305X
#undef CONFIG_EFI_RTC
#define CONFIG_HAVE_IDE
#undef CONFIG_OMAP2_DSS_RFBI
#undef CONFIG_NO_DMA
#undef CONFIG_MACH_CM_X300
#undef CONFIG_USB_LH7A40X
#undef CONFIG_MFD_SH_MOBILE_SDHI
#undef CONFIG_HAVE_SYSCALL_WRAPPERS
#define CONFIG_USER_STACKTRACE_SUPPORT
#undef CONFIG_SH_DMAE
#undef CONFIG_MACH_AMS_DELTA
#define CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC
#undef CONFIG_SND_BF5XX_SOC_SPORT
#undef CONFIG_SUN3
#undef CONFIG_DMAR_BROKEN_GFX_WA
#undef CONFIG_SND_SOC_WM9712
#undef CONFIG_SA1100_LART
#undef CONFIG_SERIAL_UARTLITE
#undef CONFIG_SND_PXA2XX_SOC_MAGICIAN
#undef CONFIG_USB_GADGET_ATMEL_USBA
#undef CONFIG_ARCH_AT91CAP9
#undef CONFIG_ARM_UNWIND
#undef CONFIG_HAVE_PATA_PLATFORM
#undef CONFIG_SERIAL_BFIN_UART1
#undef CONFIG_BATTERY_TOSA
#undef CONFIG_FB_PXA
#undef CONFIG_FS_ENET_HAS_FEC
#undef CONFIG_SCSI_IBMVFC_TRACE
#undef CONFIG_MACH_STARGATE2
#undef CONFIG_ZORRO
#undef CONFIG_MACH_MIOA701
#undef CONFIG_CPU_SH3
#undef CONFIG_SERIAL_68328_RTS_CTS
#undef CONFIG_ARM_KS8695_ETHER
#undef CONFIG_SND_S3C24XX_SOC_NEO1973_GTA02_WM8753
#undef CONFIG_USB_S3C2410
#undef CONFIG_BFIN_SIR2
#undef CONFIG_PXA_SHARP_Cxx00
#undef CONFIG_HYDRA
#undef CONFIG_SA1100_WATCHDOG
#undef CONFIG_AT91_CF
#undef CONFIG_USB_GADGET_PXA25X
#undef CONFIG_CPU_AT32AP700X
#undef CONFIG_MACH_POODLE
#undef CONFIG_FSL_PQ_MDIO
#undef CONFIG_DCSSBLK
#undef CONFIG_SND_PXA2XX_SOC_POODLE
#undef CONFIG_BF526
#undef CONFIG_HAVE_PWM
#undef CONFIG_S390_TAPE
#undef CONFIG_TOUCHSCREEN_CORGI
#undef CONFIG_FB_MBX
#undef CONFIG_HW_RANDOM_MXC_RNGA
#undef CONFIG_ARCH_INLINE_SPIN_UNLOCK
#undef CONFIG_SERIAL_DZ
#undef CONFIG_SA1100_COLLIE
#undef CONFIG_32BIT
#undef CONFIG_NUC900_WATCHDOG
#undef CONFIG_BCM63XX_ENET
#undef CONFIG_KEYBOARD_ATKBD_RDI_KEYCODES
#undef CONFIG_GPIO_TIMBERDALE
#undef CONFIG_BF538
#undef CONFIG_IBM_NEW_EMAC
#undef CONFIG_PPC_PS3
#undef CONFIG_COH901327_WATCHDOG
#undef CONFIG_BFIN_MAC
#undef CONFIG_MTD_NAND_PPCHAMELEONEVB
#undef CONFIG_SCSI_SUNESP
#undef CONFIG_H8300
#undef CONFIG_JAZZ_ESP
#undef CONFIG_CPU_PXA935
#undef CONFIG_MTD_CDB89712
#undef CONFIG_SND_AT32_SOC_PLAYPAQ
#undef CONFIG_FB_PNX4008_DUM
#undef CONFIG_MFD_WM8351_CONFIG_MODE_2
#undef CONFIG_SCSI_EESOXSCSI
#undef CONFIG_MACH_OMAP_OSK
#undef CONFIG_MX3_IPU_IRQS
#undef CONFIG_RTC_DRV_TWL92330
#undef CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE
#undef CONFIG_SND_SOC_SH4_SSI
#undef CONFIG_FB_APOLLO
#undef CONFIG_FB_PXA168
#undef CONFIG_SERIAL_AMBA_PL011_CONSOLE
#undef CONFIG_IA64_HP_ZX1_SWIOTLB
#undef CONFIG_SERIAL_AMBA_PL010
#undef CONFIG_MMC_SDHCI_IO_ACCESSORS
#undef CONFIG_CCW
#undef CONFIG_PPC_RTAS
#undef CONFIG_SND_PXA2XX_SOC_I2S
#undef CONFIG_INLINE_SPIN_LOCK
#undef CONFIG_FB_PVR2
#undef CONFIG_MACH_E800
#undef CONFIG_FB_HIT
#undef CONFIG_SPARC64
#undef CONFIG_VIDEO_VINO
#undef CONFIG_FB_PS3_DEFAULT_SIZE_M
#undef CONFIG_BFIN_OTP
#undef CONFIG_MMC_AT91
#undef CONFIG_SERIAL_KS8695_CONSOLE
#undef CONFIG_EMULATED_CMPXCHG
#undef CONFIG_SH_DMABRG
#undef CONFIG_RTC_DRV_PS3
#undef CONFIG_RTC_DRV_PL031
#undef CONFIG_SERIAL_PNX8XXX
#undef CONFIG_SND_ML403_AC97CR
#undef CONFIG_SYS_SUPPORTS_APM_EMULATION
#undef CONFIG_FB_IGA
#undef CONFIG_UART2_CTS_PIN
#undef CONFIG_UART3_CTS_PIN
#undef CONFIG_MACH_OMAP2EVM
#undef CONFIG_JS_RTC
#undef CONFIG_LEDS_ATMEL_PWM
#undef CONFIG_UART1_CTS_PIN
#define CONFIG_X86_CPU
#undef CONFIG_STMMAC_TIMER
#undef CONFIG_SND_SOC_OF_SIMPLE
#undef CONFIG_I2C_HYDRA
#define CONFIG_HAVE_SETUP_PER_CPU_AREA
#undef CONFIG_ALPHA_TSUNAMI
#undef CONFIG_MACH_TX39XX
#undef CONFIG_USB_AT91
#undef CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL
#undef CONFIG_FB_AMIGA_AGA
#undef CONFIG_CPU_S3C6410
#undef CONFIG_ARCH_MXC
#undef CONFIG_SOCRATES
#undef CONFIG_SOC_AU1550
#undef CONFIG_LEDS_FSG
#undef CONFIG_SENSORS_ULTRA45
#undef CONFIG_SUN3X
#undef CONFIG_SND_SOC_SAMPLE_PSC_AC97
#undef CONFIG_MSM_SMD
#undef CONFIG_SND_SPARC
#undef CONFIG_BF544
#undef CONFIG_DEBUG_NOMMU_REGIONS
#define CONFIG_GENERIC_ISA_DMA
#undef CONFIG_EDAC_AMD8131
#undef CONFIG_SND_OMAP_SOC_OSK5912
#undef CONFIG_ACPI_HOTPLUG_IO
#undef CONFIG_MTD_CFI_FLAGADM
#undef CONFIG_IXP4XX_ETH
#undef CONFIG_ARCH_S3C2400
#undef CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER
#undef CONFIG_SUNVNET
#undef CONFIG_PLAT_OPSPUT
#undef CONFIG_SERIAL_S3C6400
#undef CONFIG_MUSB_PIO_ONLY
#undef CONFIG_OMAP2_DSS_FAKE_VSYNC
#undef CONFIG_FB_ATARI
#undef CONFIG_ARCH_P720T
#undef CONFIG_BFIN_TX_DESC_NUM
#undef CONFIG_AX88796
#undef CONFIG_VIDEO_DM355_CCDC
#undef CONFIG_LCD_TOSA
#undef CONFIG_SERIAL_CLPS711X_CONSOLE
#undef CONFIG_SIR_BFIN_DMA
#undef CONFIG_FB_OMAP_LCD_MIPID
#undef CONFIG_PLATFORM_AT32AP
#undef CONFIG_GELIC_WIRELESS_OLD_PSK_INTERFACE
#undef CONFIG_ZFCP
#undef CONFIG_SGI_NEWPORT_CONSOLE
#undef CONFIG_SND_DAVINCI_SOC
#undef CONFIG_A2091_SCSI
#undef CONFIG_SERIAL_S3C2400
#undef CONFIG_SGISEEQ
#undef CONFIG_INLINE_SPIN_TRYLOCK_BH
#undef CONFIG_VIDEO_MX3
#undef CONFIG_INLINE_WRITE_TRYLOCK
#undef CONFIG_BOARD_PLAYPAQ
#undef CONFIG_ADX_WATCHDOG
#undef CONFIG_IBM_NEW_EMAC_RGMII
#undef CONFIG_FB_MX3
#undef CONFIG_FB_ARMCLCD_SHARP_LQ121S1DG41
#undef CONFIG_SCSI_ACORNSCSI_SYNC
#define CONFIG_HAVE_MMIOTRACE_SUPPORT
#undef CONFIG_VIDEO_VPSS_SYSTEM
#undef CONFIG_MTD_NAND_S3C2410_HWECC
#undef CONFIG_MTD_NAND_NOMADIK
#undef CONFIG_W90P910_ETH
#undef CONFIG_UML_X86
#undef CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL
#undef CONFIG_RTC_DRV_OMAP
#undef CONFIG_USB_INVENTRA_DMA
#undef CONFIG_SND_S3C24XX_SOC_I2S
#define CONFIG_HAVE_DMA_ATTRS
#undef CONFIG_SB1250_MAC
#undef CONFIG_EEH
#define CONFIG_ARCH_POPULATES_NODE_MAP
#undef CONFIG_PLAT_IOP
#undef CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM
#undef CONFIG_CPU_S3C2443
#undef CONFIG_VIDEO_OMAP2
#undef CONFIG_BF533
#undef CONFIG_BF522
#undef CONFIG_MACH_OMAP3_BEAGLE
#undef CONFIG_XILINX_EMACLITE
#undef CONFIG_PATA_AT32
#undef CONFIG_CPU_SUBTYPE_SH7763
#define CONFIG_GENERIC_CLOCKEVENTS
#undef CONFIG_MACH_FSG
#undef CONFIG_MTD_NAND_TS7250
#undef CONFIG_SND_AU1X00
#undef CONFIG_BF561
#undef CONFIG_THERM_WINDTUNNEL
#define CONFIG_ARCH_MAY_HAVE_PC_FDC
#undef CONFIG_XTENSA_PLATFORM_XT2000
#undef CONFIG_SCSI_MAC_ESP
#undef CONFIG_INPUT_APMPOWER
#undef CONFIG_WARP
#undef CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ
#define CONFIG_ARCH_HIBERNATION_POSSIBLE
#undef CONFIG_SND_OMAP_SOC_IGEP0020
#undef CONFIG_M68360
#undef CONFIG_RTC_DRV_BFIN
#undef CONFIG_PATA_ICSIDE
#undef CONFIG_SGI_IOC3_ETH
#undef CONFIG_MMC_OMAP_HS
#undef CONFIG_MTD_PXA2XX
#undef CONFIG_MOUSE_MAPLE
#define CONFIG_X86_L1_CACHE_SHIFT
#undef CONFIG_TOUCHSCREEN_BITSY
#undef CONFIG_FB_OMAP_092M9R
#undef CONFIG_SND_PXA2XX_SOC_E800
#undef CONFIG_UART3_RTS_PIN
#undef CONFIG_ARCH_EP7211
#undef CONFIG_SND_BF5XX_SOC_I2S
#undef CONFIG_USB_GADGET_FSL_QE
#undef CONFIG_FB_DA8XX
#undef CONFIG_ARCH_S5PC1XX
#undef CONFIG_SND_OMAP_SOC_OVERO
#undef CONFIG_SPI_NUC900
#undef CONFIG_FB_ARMCLCD_SHARP_LQ10D368
#undef CONFIG_OMAP2_DSS_DEBUG_SUPPORT
#undef CONFIG_SH_DMA_API
#undef CONFIG_SND_DA850_SOC_EVM
#undef CONFIG_CPU_PXA910
#define CONFIG_HAVE_KVM
#undef CONFIG_KEYBOARD_EP93XX
#undef CONFIG_RT2800PCI_SOC
#undef CONFIG_MTD_NAND_ATMEL_ECC_NONE
#undef CONFIG_SUN3LANCE
#undef CONFIG_IA64_DIG
#undef CONFIG_SPI_ATMEL
#undef CONFIG_GENERIC_NVRAM
#define CONFIG_X86_MINIMUM_CPU_FAMILY
#undef CONFIG_SERIAL_SUNSU_CONSOLE
#undef CONFIG_FB_EPSON1355
#undef CONFIG_MACH_DAVINCI_DM355_EVM
#undef CONFIG_SND_BF5XX_SOC_AD73311
#undef CONFIG_ARCH_CDB89712
#undef CONFIG_SOC_AU1500
#undef CONFIG_INPUT_IXP4XX_BEEPER
#undef CONFIG_SENSORS_AMS_I2C
#undef CONFIG_PPC_ISERIES
#undef CONFIG_INPUT_DM355EVM
#undef CONFIG_440EPX
#undef CONFIG_SA1100_FIR
#undef CONFIG_INDYDOG
#undef CONFIG_ALPHA
#undef CONFIG_OMAP2_DSS_SDI
#undef CONFIG_A3000_SCSI
#undef CONFIG_MTD_SOLUTIONENGINE
#undef CONFIG_MFD_WM8350_CONFIG_MODE_0
#undef CONFIG_ARCH_OMAP2430
#undef CONFIG_SCSI_IBMVSCSIS
#undef CONFIG_BF548
#undef CONFIG_AX25_DAMA_MASTER
#undef CONFIG_D0000
#undef CONFIG_OMAP2_VRAM_SIZE
#undef CONFIG_SERIAL_M32R_SIO
#undef CONFIG_USB_GADGET_MUSB_HDRC
#undef CONFIG_ARCH_KS8695
#undef CONFIG_SND_OMAP_SOC_ZOOM2
#undef CONFIG_SERIAL_TIMBERDALE
#undef CONFIG_AX88796_93CX6
#undef CONFIG_MMC_TMIO
#undef CONFIG_SGI_IP22
#undef CONFIG_ADB_PMU_LED
#undef CONFIG_SNI_82596
#undef CONFIG_WINDFARM_PM112
#undef CONFIG_MTD_NAND_NDFC
#undef CONFIG_SA1100_FORTUNET
#undef CONFIG_APNE
#undef CONFIG_WINDFARM_PM91
#undef CONFIG_SPARC32
#undef CONFIG_SND_AICA
#undef CONFIG_SERIAL_MCF
#undef CONFIG_DASD_PROFILE
#undef CONFIG_LOGO_SUPERH_CLUT224
#undef CONFIG_PARPORT_ATARI
#undef CONFIG_SERIAL_NETX_CONSOLE
#undef CONFIG_SERIAL_M32R_PLDSIO
#undef CONFIG_VME
#define CONFIG_HAVE_ARCH_TRACEHOOK
#undef CONFIG_INPUT_ADBHID
#undef CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR
#undef CONFIG_LEDS_LOCOMO
#undef CONFIG_FEC_MPC52xx_MDIO
#undef CONFIG_BF537
#undef CONFIG_ARM_ETHERH
#undef CONFIG_PATA_IXP4XX_CF
#undef CONFIG_SND_SOC_WM9713
#undef CONFIG_ARCH_S3C64XX
#undef CONFIG_LOGO_SUN_CLUT224
#undef CONFIG_MACH_TOSA
#undef CONFIG_FB_MB862XX_LIME
#undef CONFIG_CPU_VR41XX
#undef CONFIG_ARCH_OMAP4
#undef CONFIG_MFD_WM8352_CONFIG_MODE_1
#undef CONFIG_SND_AT73C213_TARGET_BITRATE
#undef CONFIG_MACH_SAM9261EK
#undef CONFIG_SIBYTE_SB1xxx_SOC
#undef CONFIG_LOCAL_TIMERS
#undef CONFIG_MACH_U300
#define CONFIG_GENERIC_FIND_LAST_BIT
#undef CONFIG_I2C_OMAP
#undef CONFIG_SCSI_IBMVSCSI
#undef CONFIG_MTD_MBX860
#undef CONFIG_UART2_RTS_PIN
#undef CONFIG_SND_SOC_CS4270_VD33_ERRATA
#undef CONFIG_BLK_DEV_IDE_TX4939
#undef CONFIG_FB_S3C_DEBUG_REGWRITE
#undef CONFIG_ARCH_DOVE
#undef CONFIG_SND_ARMAACI
#undef CONFIG_MSM_CAMERA_FLASH
#define CONFIG_ZONE_DMA_FLAG
#undef CONFIG_SND_AOA_TAS
#undef CONFIG_MTD_REDWOOD
#undef CONFIG_SND_BF5XX_SOC_AD1980
#undef CONFIG_FB_PXA_OVERLAY
#undef CONFIG_MTD_IXP2000
#undef CONFIG_SPI_MPC52xx
#undef CONFIG_MAC
#undef CONFIG_ARCH_PXA_ADX
#undef CONFIG_SERIAL_PXA
#undef CONFIG_ADB_MACIISI
#undef CONFIG_FB_MAXINE
#undef CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE
#undef CONFIG_INTEGRATOR_IMPD1
#undef CONFIG_MTD_OMAP_NOR
#undef CONFIG_SCSI_QLOGICPTI
#undef CONFIG_MV_XOR
#undef CONFIG_M68VZ328
#undef CONFIG_AMIGA_FLOPPY
#undef CONFIG_SENSORS_AMS
#undef CONFIG_ARCH_INLINE_WRITE_TRYLOCK
#undef CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK
#define CONFIG_GENERIC_IOMAP
#undef CONFIG_PLAT_S3C24XX
#undef CONFIG_HAS_TXX9_ACLC
#undef CONFIG_PATA_SCC
#undef CONFIG_FB_PMAG_BA
#undef CONFIG_PPC_PSERIES
#undef CONFIG_AGP_SGI_TIOCA
#define CONFIG_PERF_EVENTS
#undef CONFIG_MAC8390
#define CONFIG_SPLIT_PTLOCK_CPUS
#undef CONFIG_USB_EHCI_MXC
#undef CONFIG_PCMCIA_SA1111
#undef CONFIG_SH_HP6XX
#undef CONFIG_FB_PXA_PARAMETERS
#undef CONFIG_INLINE_WRITE_UNLOCK_BH
#define CONFIG_HAVE_IOREMAP_PROT
#undef CONFIG_MACH_NEO1973_GTA02
#undef CONFIG_SUNLANCE
#undef CONFIG_MACE
#undef CONFIG_SCSI_CUMANA_1
#undef CONFIG_MOUSE_PXA930_TRKBALL
#undef CONFIG_SERIAL_SA1100_CONSOLE
#undef CONFIG_IOP_WATCHDOG
#undef CONFIG_ATMEL_PWM
#undef CONFIG_EDAC_PPC4XX
#undef CONFIG_KEYBOARD_HP7XX
#undef CONFIG_440SPe
#undef CONFIG_ELECTRA_CF
#undef CONFIG_USB_PXA25X_SMALL
#undef CONFIG_BVME6000
#undef CONFIG_KEYBOARD_MAPLE
#undef CONFIG_FB_BFIN_T350MCQB
#undef CONFIG_SERIAL_SPORT_BAUD_RATE_115200
#undef CONFIG_MTD_NAND_AUTCPU12
#undef CONFIG_SCSI_IBMVFC
#undef CONFIG_INLINE_READ_LOCK_IRQ
#undef CONFIG_HW_RANDOM_IXP4XX
#undef CONFIG_CHIP_M32700
#undef CONFIG_ARCH_MX35
#undef CONFIG_QETH_L3
#undef CONFIG_SERIAL_21285_CONSOLE
#undef CONFIG_CPU_CAVIUM_OCTEON
#undef CONFIG_ARCH_REQUIRE_GPIOLIB
#undef CONFIG_SERIAL_S3C2412
#undef CONFIG_VMCP
#undef CONFIG_SX
#undef CONFIG_MFD_ASIC3
#undef CONFIG_LEDS_S3C24XX
#undef CONFIG_ARCH_OMAP24XX
#undef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
#undef CONFIG_NWBUTTON
#undef CONFIG_MTD_WRSBC8260
#undef CONFIG_QETH_IPV6
#undef CONFIG_SH_SECUREEDGE5410
#undef CONFIG_FOOTBRIDGE_HOST
#undef CONFIG_SERIAL_CPM
#undef CONFIG_SND_AT73C213
#define CONFIG_HAVE_KRETPROBES
#undef CONFIG_SCSI_MESH
#undef CONFIG_MTD_PMC_MSP_EVM
#undef CONFIG_NE_H8300
#undef CONFIG_TQM8xxL
#undef CONFIG_ARCH_OMAP_OTG
#undef CONFIG_BF516
#define CONFIG_IO_DELAY_TYPE_UDELAY
#undef CONFIG_CPU_SUBTYPE_SH7712
#undef CONFIG_SPI_PXA2XX
#undef CONFIG_SND_BF5XX_SOC_AD1836
#undef CONFIG_MACH_SMDK6400
#undef CONFIG_FS_ENET_HAS_SCC
#undef CONFIG_FB_PMAGB_B
#undef CONFIG_CPU_PXA168
#undef CONFIG_OMAP2_DSS_VENC
#undef CONFIG_ARCH_DAVINCI_DM644x
#undef CONFIG_FB_FFB
#undef CONFIG_GELIC_NET
#undef CONFIG_INLINE_SPIN_LOCK_IRQSAVE
#undef CONFIG_440SP
#undef CONFIG_ARCH_S3C2410
#undef CONFIG_MACH_SAM9263EK
#undef CONFIG_DMASOUND_Q40
#undef CONFIG_BLK_DEV_MAC_IDE
#undef CONFIG_SCLP_VT220_CONSOLE
#undef CONFIG_BLK_DEV_COW_COMMON
#undef CONFIG_BFIN_OTP_WRITE_ENABLE
#undef CONFIG_MACH_IGEP0020
#undef CONFIG_CPU_SUBTYPE_SH7723
#undef CONFIG_SPI_STMP3XXX
#undef CONFIG_DM9000_DEBUGLEVEL
#define CONFIG_HAVE_DMA_API_DEBUG
#undef CONFIG_SND_SUN_CS4231
#undef CONFIG_FS_ENET_MDIO_FCC
#undef CONFIG_QUICKLIST
#undef CONFIG_ARCH_IMX
#undef CONFIG_MTD_RBTX4939
#define CONFIG_ARCH_HAS_CPU_IDLE_WAIT
#define CONFIG_HAVE_FTRACE_MCOUNT_RECORD
#undef CONFIG_EDAC_MV64X60
#undef CONFIG_SPI_MPC52xx_PSC
#undef CONFIG_PMAC_MEDIABAY
#undef CONFIG_SPORT_BAUD_RATE
#undef CONFIG_MIKROTIK_RB532
#undef CONFIG_SERIAL_ZS
#undef CONFIG_IBM_NEW_EMAC_RXB
#undef CONFIG_ARCH_INLINE_SPIN_TRYLOCK
#undef CONFIG_SND_S3C_SOC_PCM
#undef CONFIG_INLINE_READ_LOCK_BH
#undef CONFIG_SND_PPC
#undef CONFIG_SERIAL_SB1250_DUART
#undef CONFIG_MVME16x
#undef CONFIG_SUN3X_ESP
#undef CONFIG_ADB
#undef CONFIG_SERIO_XILINX_XPS_PS2
#undef CONFIG_DEBUG_LL
#undef CONFIG_SND_GSC
#undef CONFIG_S390_PRNG
#undef CONFIG_FB_TGA
#undef CONFIG_SPI_S3C64XX
#undef CONFIG_BF527
#undef CONFIG_TOUCHSCREEN_HP7XX
#undef CONFIG_SCLP_ASYNC
#undef CONFIG_BINFMT_ZFLAT
#undef CONFIG_ARCH_AT91SAM9260
#define CONFIG_GENERIC_HARDIRQS
#undef CONFIG_MACH_E750
#define CONFIG_MMU
#undef CONFIG_MACH_MAINSTONE
#undef CONFIG_BFIN_MAC_USE_L1
#undef CONFIG_SND_SOC_AD1980
#undef CONFIG_INLINE_WRITE_LOCK
#undef CONFIG_MTD_NAND_TMIO
#undef CONFIG_USB_GADGET_PXA27X
#undef CONFIG_I2C_PASEMI
#undef CONFIG_SERIAL_68360_SMC
#undef CONFIG_IXP4XX_NPE
#undef CONFIG_UCC_GETH
#undef CONFIG_MTD_DMV182
#undef CONFIG_BF54x
#undef CONFIG_DMASOUND_PAULA
#undef CONFIG_CPU_PXA930
#undef CONFIG_BLK_DEV_UBD_SYNC
#undef CONFIG_PATA_RB532
#undef CONFIG_I2C_PXA_SLAVE
#undef CONFIG_FB_OMAP_LCDC_BLIZZARD
#undef CONFIG_AFIUCV