Viresh, I'm not sure how the clk changes will work with the other archs, but here is a list of arch specific clk definitions: % grep -A2 -r '\bclk_get(struct.*)$' arch arch/avr32/mach-at32ap/clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/avr32/mach-at32ap/clock.c-{ arch/avr32/mach-at32ap/clock.c- struct clk *clk; -- arch/m68k/platform/coldfire/clk.c:struct clk *clk_get(struct device *dev, const char *id) arch/m68k/platform/coldfire/clk.c-{ arch/m68k/platform/coldfire/clk.c- return NULL; -- arch/m68k/platform/coldfire/clk.c:struct clk *clk_get(struct device *dev, const char *id) arch/m68k/platform/coldfire/clk.c-{ arch/m68k/platform/coldfire/clk.c- const char *clk_name = dev ? dev_name(dev) : id ? id : NULL; -- arch/powerpc/kernel/clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/powerpc/kernel/clock.c-{ arch/powerpc/kernel/clock.c- if (clk_functions.clk_get) -- arch/mips/ar7/clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/mips/ar7/clock.c-{ arch/mips/ar7/clock.c- if (!strcmp(id, "bus")) -- arch/mips/ath79/clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/mips/ath79/clock.c-{ arch/mips/ath79/clock.c- if (!strcmp(id, "ref")) -- arch/mips/jz4740/clock.c:struct clk *clk_get(struct device *dev, const char *name) arch/mips/jz4740/clock.c-{ arch/mips/jz4740/clock.c- struct clk *clk; -- arch/mips/loongson1/common/clock.c:struct clk *clk_get(struct device *dev, const char *name) arch/mips/loongson1/common/clock.c-{ arch/mips/loongson1/common/clock.c- struct clk *c; -- arch/mips/txx9/generic/setup.c:struct clk *clk_get(struct device *dev, const char *id) arch/mips/txx9/generic/setup.c-{ arch/mips/txx9/generic/setup.c- if (!strcmp(id, "spi-baseclk")) -- arch/mips/bcm63xx/clk.c:struct clk *clk_get(struct device *dev, const char *id) arch/mips/bcm63xx/clk.c-{ arch/mips/bcm63xx/clk.c- if (!strcmp(id, "enet0")) -- arch/mips/kernel/cpufreq/loongson2_clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/mips/kernel/cpufreq/loongson2_clock.c-{ arch/mips/kernel/cpufreq/loongson2_clock.c- return &cpu_clk; -- arch/unicore32/kernel/clock.c:struct clk *clk_get(struct device *dev, const char *id) arch/unicore32/kernel/clock.c-{ arch/unicore32/kernel/clock.c- struct clk *p, *clk = ERR_PTR(-ENOENT); Thanks, Fengguang On Fri, Jul 27, 2012 at 04:02:23PM +0800, Fengguang Wu wrote: > [retry with Viresh's gmail address] > > On Fri, Jul 27, 2012 at 03:57:33PM +0800, Fengguang Wu wrote: > > Hi Viresh, > > > > Kernel build failed on > > > > tree: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git akpm > > head: 247109fa112ac912f31efc28e130ed2a0cc1764c > > commit: 02906eac6ecad2c10eee16137da1cee975736b96 [171/308] clk: add non CONFIG_HAVE_CLK routines > > config: m68k-m5475evb_defconfig (attached as .config) > > > > All related error/warning messages: > > > > arch/m68k/platform/coldfire/clk.c:24:13: error: redefinition of 'clk_get' > > include/linux/clk.h:281:27: note: previous definition of 'clk_get' was here > > arch/m68k/platform/coldfire/clk.c:30:5: error: redefinition of 'clk_enable' > > include/linux/clk.h:295:19: note: previous definition of 'clk_enable' was here > > arch/m68k/platform/coldfire/clk.c:36:6: error: redefinition of 'clk_disable' > > include/linux/clk.h:300:20: note: previous definition of 'clk_disable' was here > > arch/m68k/platform/coldfire/clk.c:41:6: error: redefinition of 'clk_put' > > include/linux/clk.h:291:20: note: previous definition of 'clk_put' was here > > arch/m68k/platform/coldfire/clk.c:46:15: error: redefinition of 'clk_get_rate' > > include/linux/clk.h:302:29: note: previous definition of 'clk_get_rate' was here > > arch/m68k/platform/coldfire/clk.c:150:13: error: redefinition of 'devm_clk_get' > > include/linux/clk.h:286:27: note: previous definition of 'devm_clk_get' was here > > > > vim +24 arch/m68k/platform/coldfire/clk.c > > 21 > > 22 /***************************************************************************/ > > 23 #ifndef MCFPM_PPMCR0 > > > 24 struct clk *clk_get(struct device *dev, const char *id) > > 25 { > > 26 return NULL; > > 27 } > > > > --- > > 0-DAY kernel build testing backend Open Source Technology Centre > > Fengguang Wu <wfg@xxxxxxxxxxxxxxx> Intel Corporation > > > # > > # Automatically generated file; DO NOT EDIT. > > # Linux/m68k 3.5.0 Kernel Configuration > > # > > CONFIG_M68K=y > > CONFIG_RWSEM_GENERIC_SPINLOCK=y > > CONFIG_GENERIC_GPIO=y > > CONFIG_GENERIC_HWEIGHT=y > > CONFIG_GENERIC_CALIBRATE_DELAY=y > > CONFIG_GENERIC_CSUM=y > > CONFIG_TIME_LOW_RES=y > > CONFIG_NO_IOPORT=y > > # CONFIG_NO_DMA is not set > > CONFIG_ZONE_DMA=y > > CONFIG_HZ=100 > > CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" > > > > # > > # General setup > > # > > CONFIG_EXPERIMENTAL=y > > CONFIG_BROKEN_ON_SMP=y > > CONFIG_INIT_ENV_ARG_LIMIT=32 > > CONFIG_CROSS_COMPILE="" > > CONFIG_LOCALVERSION="" > > CONFIG_LOCALVERSION_AUTO=y > > CONFIG_DEFAULT_HOSTNAME="(none)" > > # CONFIG_SWAP is not set > > # CONFIG_SYSVIPC is not set > > # CONFIG_BSD_PROCESS_ACCT is not set > > # CONFIG_FHANDLE is not set > > CONFIG_HAVE_GENERIC_HARDIRQS=y > > > > # > > # IRQ subsystem > > # > > CONFIG_GENERIC_HARDIRQS=y > > CONFIG_GENERIC_IRQ_SHOW=y > > > > # > > # RCU Subsystem > > # > > CONFIG_TINY_RCU=y > > # CONFIG_PREEMPT_RCU is not set > > # CONFIG_TREE_RCU_TRACE is not set > > # CONFIG_IKCONFIG is not set > > CONFIG_LOG_BUF_SHIFT=14 > > # CONFIG_CHECKPOINT_RESTORE is not set > > # CONFIG_NAMESPACES is not set > > CONFIG_UIDGID_CONVERTED=y > > # CONFIG_UIDGID_STRICT_TYPE_CHECKS is not set > > # CONFIG_SCHED_AUTOGROUP is not set > > CONFIG_SYSFS_DEPRECATED=y > > CONFIG_SYSFS_DEPRECATED_V2=y > > # CONFIG_RELAY is not set > > # CONFIG_BLK_DEV_INITRD is not set > > # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set > > CONFIG_SYSCTL=y > > CONFIG_EXPERT=y > > CONFIG_UID16=y > > CONFIG_SYSCTL_SYSCALL=y > > # CONFIG_KALLSYMS is not set > > # CONFIG_HOTPLUG is not set > > CONFIG_PRINTK=y > > CONFIG_BUG=y > > CONFIG_ELF_CORE=y > > CONFIG_BASE_FULL=y > > # CONFIG_FUTEX is not set > > # CONFIG_EPOLL is not set > > # CONFIG_SIGNALFD is not set > > # CONFIG_TIMERFD is not set > > # CONFIG_EVENTFD is not set > > # CONFIG_SHMEM is not set > > # CONFIG_AIO is not set > > CONFIG_EMBEDDED=y > > > > # > > # Kernel Performance Events And Counters > > # > > CONFIG_VM_EVENT_COUNTERS=y > > CONFIG_SLUB_DEBUG=y > > CONFIG_COMPAT_BRK=y > > # CONFIG_SLAB is not set > > CONFIG_SLUB=y > > # CONFIG_SLOB is not set > > # CONFIG_PROFILING is not set > > CONFIG_HAVE_MOD_ARCH_SPECIFIC=y > > CONFIG_MODULES_USE_ELF_RELA=y > > CONFIG_MODULES_USE_ELF_REL=y > > > > # > > # GCOV-based kernel profiling > > # > > # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set > > CONFIG_SLABINFO=y > > CONFIG_BASE_SMALL=0 > > CONFIG_MODULES=y > > # CONFIG_MODULE_FORCE_LOAD is not set > > # CONFIG_MODULE_UNLOAD is not set > > # CONFIG_MODVERSIONS is not set > > # CONFIG_MODULE_SRCVERSION_ALL is not set > > CONFIG_BLOCK=y > > # CONFIG_LBDAF is not set > > # CONFIG_BLK_DEV_BSG is not set > > # CONFIG_BLK_DEV_BSGLIB is not set > > # CONFIG_BLK_DEV_INTEGRITY is not set > > > > # > > # Partition Types > > # > > # CONFIG_PARTITION_ADVANCED is not set > > CONFIG_MSDOS_PARTITION=y > > > > # > > # IO Schedulers > > # > > CONFIG_IOSCHED_NOOP=y > > # CONFIG_IOSCHED_DEADLINE is not set > > # CONFIG_IOSCHED_CFQ is not set > > CONFIG_DEFAULT_NOOP=y > > CONFIG_DEFAULT_IOSCHED="noop" > > # CONFIG_INLINE_SPIN_TRYLOCK is not set > > # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set > > # CONFIG_INLINE_SPIN_LOCK is not set > > # CONFIG_INLINE_SPIN_LOCK_BH is not set > > # CONFIG_INLINE_SPIN_LOCK_IRQ is not set > > # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set > > # CONFIG_INLINE_SPIN_UNLOCK_BH is not set > > CONFIG_INLINE_SPIN_UNLOCK_IRQ=y > > # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set > > # CONFIG_INLINE_READ_TRYLOCK is not set > > # CONFIG_INLINE_READ_LOCK is not set > > # CONFIG_INLINE_READ_LOCK_BH is not set > > # CONFIG_INLINE_READ_LOCK_IRQ is not set > > # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set > > CONFIG_INLINE_READ_UNLOCK=y > > # CONFIG_INLINE_READ_UNLOCK_BH is not set > > CONFIG_INLINE_READ_UNLOCK_IRQ=y > > # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set > > # CONFIG_INLINE_WRITE_TRYLOCK is not set > > # CONFIG_INLINE_WRITE_LOCK is not set > > # CONFIG_INLINE_WRITE_LOCK_BH is not set > > # CONFIG_INLINE_WRITE_LOCK_IRQ is not set > > # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set > > CONFIG_INLINE_WRITE_UNLOCK=y > > # CONFIG_INLINE_WRITE_UNLOCK_BH is not set > > CONFIG_INLINE_WRITE_UNLOCK_IRQ=y > > # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set > > # CONFIG_MUTEX_SPIN_ON_OWNER is not set > > # CONFIG_FREEZER is not set > > CONFIG_MMU=y > > CONFIG_MMU_COLDFIRE=y > > > > # > > # Platform setup > > # > > > > # > > # Processor Type > > # > > # CONFIG_M68KCLASSIC is not set > > CONFIG_COLDFIRE=y > > CONFIG_M54xx=y > > CONFIG_M547x=y > > # CONFIG_M548x is not set > > > > # > > # Processor Specific Options > > # > > # CONFIG_M68KFPU_EMU is not set > > # CONFIG_ADVANCED is not set > > CONFIG_ARCH_DISCONTIGMEM_ENABLE=y > > CONFIG_NODES_SHIFT=3 > > CONFIG_CPU_HAS_NO_BITFIELDS=y > > CONFIG_CPU_HAS_NO_MULDIV64=y > > CONFIG_FPU=y > > CONFIG_HAVE_CACHE_CB=y > > CONFIG_HAVE_MBAR=y > > CONFIG_CLOCK_SET=y > > CONFIG_CLOCK_FREQ=266000000 > > CONFIG_CACHE_WRITETHRU=y > > # CONFIG_CACHE_COPYBACK is not set > > > > # > > # Machine Types > > # > > # CONFIG_FIREBEE is not set > > > > # > > # Machine Options > > # > > # CONFIG_UBOOT is not set > > # CONFIG_4KSTACKS is not set > > > > # > > # RAM configuration > > # > > CONFIG_RAMBASE=0x0 > > CONFIG_RAMSIZE=0x2000000 > > CONFIG_VECTORBASE=0x0 > > CONFIG_MBAR=0xff000000 > > CONFIG_KERNELBASE=0x20000 > > > > # > > # ROM configuration > > # > > # CONFIG_ROM is not set > > CONFIG_RAMKERNEL=y > > # CONFIG_ROMKERNEL is not set > > > > # > > # Bus Support > > # > > # CONFIG_GENERIC_ISA_DMA is not set > > # CONFIG_PCI is not set > > # CONFIG_ARCH_SUPPORTS_MSI is not set > > > > # > > # Kernel Features > > # > > CONFIG_PREEMPT_NONE=y > > # CONFIG_PREEMPT_VOLUNTARY is not set > > # CONFIG_PREEMPT is not set > > CONFIG_SELECT_MEMORY_MODEL=y > > CONFIG_DISCONTIGMEM_MANUAL=y > > CONFIG_DISCONTIGMEM=y > > CONFIG_FLAT_NODE_MEM_MAP=y > > CONFIG_NEED_MULTIPLE_NODES=y > > CONFIG_PAGEFLAGS_EXTENDED=y > > CONFIG_SPLIT_PTLOCK_CPUS=4 > > # CONFIG_COMPACTION is not set > > # CONFIG_PHYS_ADDR_T_64BIT is not set > > CONFIG_ZONE_DMA_FLAG=1 > > CONFIG_BOUNCE=y > > CONFIG_VIRT_TO_BUS=y > > # CONFIG_KSM is not set > > CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 > > CONFIG_CROSS_MEMORY_ATTACH=y > > CONFIG_NEED_PER_CPU_KM=y > > # CONFIG_CLEANCACHE is not set > > > > # > > # Executable file formats > > # > > CONFIG_BINFMT_ELF=y > > # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set > > CONFIG_HAVE_AOUT=y > > # CONFIG_BINFMT_AOUT is not set > > # CONFIG_BINFMT_MISC is not set > > # CONFIG_NET is not set > > > > # > > # Device Drivers > > # > > > > # > > # Generic Driver Options > > # > > CONFIG_STANDALONE=y > > CONFIG_PREVENT_FIRMWARE_BUILD=y > > # CONFIG_FW_LOADER is not set > > # CONFIG_DEBUG_DRIVER is not set > > # CONFIG_DEBUG_DEVRES is not set > > # CONFIG_SYS_HYPERVISOR is not set > > CONFIG_GENERIC_CPU_DEVICES=y > > # CONFIG_DMA_SHARED_BUFFER is not set > > CONFIG_MTD=y > > # CONFIG_MTD_TESTS is not set > > # CONFIG_MTD_REDBOOT_PARTS is not set > > # CONFIG_MTD_CMDLINE_PARTS is not set > > # CONFIG_MTD_AR7_PARTS is not set > > > > # > > # User Modules And Translation Layers > > # > > CONFIG_MTD_CHAR=y > > CONFIG_MTD_BLKDEVS=y > > CONFIG_MTD_BLOCK=y > > # CONFIG_FTL is not set > > # CONFIG_NFTL is not set > > # CONFIG_INFTL is not set > > # CONFIG_RFD_FTL is not set > > # CONFIG_SSFDC is not set > > # CONFIG_SM_FTL is not set > > # CONFIG_MTD_OOPS is not set > > > > # > > # RAM/ROM/Flash chip drivers > > # > > CONFIG_MTD_CFI=y > > CONFIG_MTD_JEDECPROBE=y > > CONFIG_MTD_GEN_PROBE=y > > # CONFIG_MTD_CFI_ADV_OPTIONS is not set > > CONFIG_MTD_MAP_BANK_WIDTH_1=y > > CONFIG_MTD_MAP_BANK_WIDTH_2=y > > CONFIG_MTD_MAP_BANK_WIDTH_4=y > > # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set > > # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set > > # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set > > CONFIG_MTD_CFI_I1=y > > CONFIG_MTD_CFI_I2=y > > # CONFIG_MTD_CFI_I4 is not set > > # CONFIG_MTD_CFI_I8 is not set > > # CONFIG_MTD_CFI_INTELEXT is not set > > CONFIG_MTD_CFI_AMDSTD=y > > # CONFIG_MTD_CFI_STAA is not set > > CONFIG_MTD_CFI_UTIL=y > > CONFIG_MTD_RAM=y > > # CONFIG_MTD_ROM is not set > > # CONFIG_MTD_ABSENT is not set > > > > # > > # Mapping drivers for chip access > > # > > # CONFIG_MTD_COMPLEX_MAPPINGS is not set > > CONFIG_MTD_PHYSMAP=y > > # CONFIG_MTD_PHYSMAP_COMPAT is not set > > # CONFIG_MTD_PLATRAM is not set > > > > # > > # Self-contained MTD device drivers > > # > > # CONFIG_MTD_SLRAM is not set > > # CONFIG_MTD_PHRAM is not set > > # CONFIG_MTD_MTDRAM is not set > > # CONFIG_MTD_BLOCK2MTD is not set > > > > # > > # Disk-On-Chip Device Drivers > > # > > # CONFIG_MTD_DOCG3 is not set > > # CONFIG_MTD_NAND is not set > > # CONFIG_MTD_ONENAND is not set > > > > # > > # LPDDR flash memory drivers > > # > > # CONFIG_MTD_LPDDR is not set > > # CONFIG_MTD_UBI is not set > > # CONFIG_PARPORT is not set > > CONFIG_BLK_DEV=y > > # CONFIG_BLK_DEV_COW_COMMON is not set > > # CONFIG_BLK_DEV_LOOP is not set > > > > # > > # DRBD disabled because PROC_FS, INET or CONNECTOR not selected > > # > > CONFIG_BLK_DEV_RAM=y > > CONFIG_BLK_DEV_RAM_COUNT=16 > > CONFIG_BLK_DEV_RAM_SIZE=4096 > > # CONFIG_BLK_DEV_XIP is not set > > # CONFIG_CDROM_PKTCDVD is not set > > # CONFIG_BLK_DEV_HD is not set > > > > # > > # Misc devices > > # > > # CONFIG_ENCLOSURE_SERVICES is not set > > # CONFIG_C2PORT is not set > > > > # > > # EEPROM support > > # > > # CONFIG_EEPROM_93CX6 is not set > > > > # > > # Texas Instruments shared transport line discipline > > # > > > > # > > # Altera FPGA firmware download module > > # > > CONFIG_HAVE_IDE=y > > # CONFIG_IDE is not set > > > > # > > # SCSI device support > > # > > CONFIG_SCSI_MOD=y > > # CONFIG_RAID_ATTRS is not set > > # CONFIG_SCSI is not set > > # CONFIG_SCSI_DMA is not set > > # CONFIG_SCSI_NETLINK is not set > > # CONFIG_MD is not set > > > > # > > # Input device support > > # > > # CONFIG_INPUT is not set > > > > # > > # Hardware I/O ports > > # > > CONFIG_SERIO=y > > CONFIG_SERIO_SERPORT=y > > # CONFIG_SERIO_LIBPS2 is not set > > # CONFIG_SERIO_RAW is not set > > # CONFIG_SERIO_ALTERA_PS2 is not set > > # CONFIG_SERIO_PS2MULT is not set > > # CONFIG_GAMEPORT is not set > > > > # > > # Character devices > > # > > # CONFIG_VT is not set > > # CONFIG_UNIX98_PTYS is not set > > CONFIG_LEGACY_PTYS=y > > CONFIG_LEGACY_PTY_COUNT=256 > > # CONFIG_SERIAL_NONSTANDARD is not set > > # CONFIG_TRACE_SINK is not set > > CONFIG_DEVKMEM=y > > > > # > > # Serial drivers > > # > > # CONFIG_SERIAL_8250 is not set > > > > # > > # Non-8250 serial port support > > # > > CONFIG_SERIAL_CORE=y > > CONFIG_SERIAL_CORE_CONSOLE=y > > CONFIG_SERIAL_MCF=y > > CONFIG_SERIAL_MCF_BAUDRATE=19200 > > CONFIG_SERIAL_MCF_CONSOLE=y > > # CONFIG_SERIAL_TIMBERDALE is not set > > # CONFIG_SERIAL_ALTERA_JTAGUART is not set > > # CONFIG_SERIAL_ALTERA_UART is not set > > # CONFIG_SERIAL_XILINX_PS_UART is not set > > # CONFIG_TTY_PRINTK is not set > > # CONFIG_IPMI_HANDLER is not set > > # CONFIG_HW_RANDOM is not set > > # CONFIG_GEN_RTC is not set > > # CONFIG_R3964 is not set > > # CONFIG_RAW_DRIVER is not set > > # CONFIG_TCG_TPM is not set > > # CONFIG_I2C is not set > > # CONFIG_SPI is not set > > # CONFIG_HSI is not set > > > > # > > # PPS support > > # > > # CONFIG_PPS is not set > > > > # > > # PPS generators support > > # > > > > # > > # PTP clock support > > # > > > > # > > # Enable Device Drivers -> PPS to see the PTP clock options. > > # > > CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y > > CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y > > # CONFIG_GPIOLIB is not set > > # CONFIG_W1 is not set > > # CONFIG_POWER_SUPPLY is not set > > # CONFIG_POWER_AVS is not set > > # CONFIG_HWMON is not set > > # CONFIG_THERMAL is not set > > # CONFIG_WATCHDOG is not set > > CONFIG_SSB_POSSIBLE=y > > > > # > > # Sonics Silicon Backplane > > # > > # CONFIG_SSB is not set > > CONFIG_BCMA_POSSIBLE=y > > > > # > > # Broadcom specific AMBA > > # > > # CONFIG_BCMA is not set > > > > # > > # Multifunction device drivers > > # > > # CONFIG_MFD_CORE is not set > > # CONFIG_MFD_SM501 is not set > > # CONFIG_HTC_PASIC3 is not set > > # CONFIG_MFD_TMIO is not set > > # CONFIG_ABX500_CORE is not set > > # CONFIG_REGULATOR is not set > > # CONFIG_MEDIA_SUPPORT is not set > > > > # > > # Graphics support > > # > > # CONFIG_DRM is not set > > # CONFIG_VGASTATE is not set > > # CONFIG_VIDEO_OUTPUT_CONTROL is not set > > # CONFIG_FB is not set > > # CONFIG_EXYNOS_VIDEO is not set > > # CONFIG_BACKLIGHT_LCD_SUPPORT is not set > > # CONFIG_SOUND is not set > > # CONFIG_USB_ARCH_HAS_OHCI is not set > > # CONFIG_USB_ARCH_HAS_EHCI is not set > > # CONFIG_USB_ARCH_HAS_XHCI is not set > > CONFIG_USB_SUPPORT=y > > # CONFIG_USB_ARCH_HAS_HCD is not set > > # CONFIG_USB_OTG_WHITELIST is not set > > # CONFIG_USB_OTG_BLACKLIST_HUB is not set > > > > # > > # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may > > # > > # CONFIG_USB_GADGET is not set > > > > # > > # OTG and related infrastructure > > # > > # CONFIG_MMC is not set > > # CONFIG_MEMSTICK is not set > > # CONFIG_NEW_LEDS is not set > > # CONFIG_ACCESSIBILITY is not set > > # CONFIG_RTC_CLASS is not set > > # CONFIG_DMADEVICES is not set > > # CONFIG_AUXDISPLAY is not set > > # CONFIG_UIO is not set > > > > # > > # Virtio drivers > > # > > # CONFIG_VIRTIO_BALLOON is not set > > # CONFIG_VIRTIO_MMIO is not set > > > > # > > # Microsoft Hyper-V guest support > > # > > # CONFIG_STAGING is not set > > > > # > > # Hardware Spinlock drivers > > # > > # CONFIG_IOMMU_SUPPORT is not set > > > > # > > # Remoteproc drivers (EXPERIMENTAL) > > # > > > > # > > # Rpmsg drivers (EXPERIMENTAL) > > # > > # CONFIG_VIRT_DRIVERS is not set > > # CONFIG_PM_DEVFREQ is not set > > # CONFIG_EXTCON is not set > > # CONFIG_MEMORY is not set > > # CONFIG_IIO is not set > > # CONFIG_PWM is not set > > > > # > > # Platform devices > > # > > # CONFIG_PROC_HARDWARE is not set > > > > # > > # Character devices > > # > > > > # > > # File systems > > # > > CONFIG_EXT2_FS=y > > # CONFIG_EXT2_FS_XATTR is not set > > # CONFIG_EXT2_FS_XIP is not set > > # CONFIG_EXT3_FS is not set > > # CONFIG_EXT4_FS is not set > > # CONFIG_REISERFS_FS is not set > > # CONFIG_JFS_FS is not set > > # CONFIG_XFS_FS is not set > > # CONFIG_BTRFS_FS is not set > > # CONFIG_NILFS2_FS is not set > > # CONFIG_FS_POSIX_ACL is not set > > # CONFIG_FILE_LOCKING is not set > > # CONFIG_FSNOTIFY is not set > > # CONFIG_DNOTIFY is not set > > # CONFIG_INOTIFY_USER is not set > > # CONFIG_FANOTIFY is not set > > # CONFIG_QUOTA is not set > > # CONFIG_QUOTACTL is not set > > # CONFIG_AUTOFS4_FS is not set > > # CONFIG_FUSE_FS is not set > > > > # > > # Caches > > # > > # CONFIG_FSCACHE is not set > > > > # > > # CD-ROM/DVD Filesystems > > # > > # CONFIG_ISO9660_FS is not set > > # CONFIG_UDF_FS is not set > > > > # > > # DOS/FAT/NT Filesystems > > # > > # CONFIG_MSDOS_FS is not set > > # CONFIG_VFAT_FS is not set > > # CONFIG_NTFS_FS is not set > > > > # > > # Pseudo filesystems > > # > > CONFIG_PROC_FS=y > > # CONFIG_PROC_KCORE is not set > > CONFIG_PROC_SYSCTL=y > > # CONFIG_PROC_PAGE_MONITOR is not set > > CONFIG_SYSFS=y > > # CONFIG_HUGETLB_PAGE is not set > > # CONFIG_CONFIGFS_FS is not set > > CONFIG_MISC_FILESYSTEMS=y > > # CONFIG_ADFS_FS is not set > > # CONFIG_AFFS_FS is not set > > # CONFIG_HFS_FS is not set > > # CONFIG_HFSPLUS_FS is not set > > # CONFIG_BEFS_FS is not set > > # CONFIG_BFS_FS is not set > > # CONFIG_EFS_FS is not set > > # CONFIG_JFFS2_FS is not set > > # CONFIG_LOGFS is not set > > # CONFIG_CRAMFS is not set > > # CONFIG_SQUASHFS is not set > > # CONFIG_VXFS_FS is not set > > # CONFIG_MINIX_FS is not set > > # CONFIG_MINIX_FS_BIG_ENDIAN_16BIT_INDEXED is not set > > # CONFIG_OMFS_FS is not set > > # CONFIG_HPFS_FS is not set > > # CONFIG_QNX4FS_FS is not set > > # CONFIG_QNX6FS_FS is not set > > CONFIG_ROMFS_FS=y > > # CONFIG_ROMFS_BACKED_BY_BLOCK is not set > > CONFIG_ROMFS_BACKED_BY_MTD=y > > # CONFIG_ROMFS_BACKED_BY_BOTH is not set > > CONFIG_ROMFS_ON_MTD=y > > # CONFIG_PSTORE is not set > > # CONFIG_SYSV_FS is not set > > # CONFIG_UFS_FS is not set > > # CONFIG_NLS is not set > > > > # > > # Kernel hacking > > # > > # CONFIG_PRINTK_TIME is not set > > CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 > > CONFIG_ENABLE_WARN_DEPRECATED=y > > CONFIG_ENABLE_MUST_CHECK=y > > CONFIG_FRAME_WARN=1024 > > # CONFIG_MAGIC_SYSRQ is not set > > # CONFIG_STRIP_ASM_SYMS is not set > > # CONFIG_READABLE_ASM is not set > > # CONFIG_UNUSED_SYMBOLS is not set > > # CONFIG_DEBUG_FS is not set > > # CONFIG_HEADERS_CHECK is not set > > # CONFIG_DEBUG_SECTION_MISMATCH is not set > > CONFIG_DEBUG_KERNEL=y > > # CONFIG_DEBUG_SHIRQ is not set > > # CONFIG_LOCKUP_DETECTOR is not set > > # CONFIG_HARDLOCKUP_DETECTOR is not set > > # CONFIG_PANIC_ON_OOPS is not set > > CONFIG_PANIC_ON_OOPS_VALUE=0 > > # CONFIG_DETECT_HUNG_TASK is not set > > # CONFIG_SCHED_DEBUG is not set > > # CONFIG_SCHEDSTATS is not set > > # CONFIG_TIMER_STATS is not set > > # CONFIG_DEBUG_OBJECTS is not set > > # CONFIG_SLUB_DEBUG_ON is not set > > # CONFIG_SLUB_STATS is not set > > # CONFIG_DEBUG_SPINLOCK is not set > > # CONFIG_DEBUG_MUTEXES is not set > > # CONFIG_SPARSE_RCU_POINTER is not set > > # CONFIG_DEBUG_ATOMIC_SLEEP is not set > > # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set > > # CONFIG_DEBUG_STACK_USAGE is not set > > # CONFIG_DEBUG_KOBJECT is not set > > CONFIG_DEBUG_BUGVERBOSE=y > > # CONFIG_DEBUG_INFO is not set > > # CONFIG_DEBUG_VM is not set > > # CONFIG_DEBUG_WRITECOUNT is not set > > # CONFIG_DEBUG_MEMORY_INIT is not set > > # CONFIG_DEBUG_LIST is not set > > # CONFIG_TEST_LIST_SORT is not set > > # CONFIG_DEBUG_SG is not set > > # CONFIG_DEBUG_NOTIFIERS is not set > > # CONFIG_DEBUG_CREDENTIALS is not set > > # CONFIG_FRAME_POINTER is not set > > # CONFIG_BOOT_PRINTK_DELAY is not set > > # CONFIG_RCU_TORTURE_TEST is not set > > # CONFIG_RCU_TRACE is not set > > # CONFIG_BACKTRACE_SELF_TEST is not set > > # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set > > # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set > > # CONFIG_FAULT_INJECTION is not set > > # CONFIG_DEBUG_PAGEALLOC is not set > > # CONFIG_ATOMIC64_SELFTEST is not set > > # CONFIG_SAMPLES is not set > > # CONFIG_TEST_KSTRTOX is not set > > CONFIG_BOOTPARAM=y > > CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" > > > > # > > # Security options > > # > > # CONFIG_KEYS is not set > > # CONFIG_SECURITY_DMESG_RESTRICT is not set > > # CONFIG_SECURITY is not set > > # CONFIG_SECURITYFS is not set > > CONFIG_DEFAULT_SECURITY_DAC=y > > CONFIG_DEFAULT_SECURITY="" > > # CONFIG_CRYPTO is not set > > # CONFIG_BINARY_PRINTF is not set > > > > # > > # Library routines > > # > > CONFIG_BITREVERSE=y > > CONFIG_GENERIC_STRNCPY_FROM_USER=y > > CONFIG_GENERIC_STRNLEN_USER=y > > CONFIG_GENERIC_PCI_IOMAP=y > > CONFIG_GENERIC_IOMAP=y > > CONFIG_GENERIC_IO=y > > # CONFIG_CRC_CCITT is not set > > # CONFIG_CRC16 is not set > > # CONFIG_CRC_T10DIF is not set > > # CONFIG_CRC_ITU_T is not set > > CONFIG_CRC32=y > > # CONFIG_CRC32_SELFTEST is not set > > CONFIG_CRC32_SLICEBY8=y > > # CONFIG_CRC32_SLICEBY4 is not set > > # CONFIG_CRC32_SARWATE is not set > > # CONFIG_CRC32_BIT is not set > > # CONFIG_CRC7 is not set > > # CONFIG_LIBCRC32C is not set > > # CONFIG_CRC8 is not set > > # CONFIG_XZ_DEC is not set > > # CONFIG_XZ_DEC_BCJ is not set > > CONFIG_HAS_IOMEM=y > > CONFIG_HAS_DMA=y > > # CONFIG_AVERAGE is not set > > # CONFIG_CORDIC is not set > > # CONFIG_DDR is not set > -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html