Www.atakansarioglu.com



BANANA PIlast ed?t: DATE \@ "MM/dd/yyyy HH:mm:ss" 02/04/2018 12:58:06Linux CompilationLegacy Linux CompilationLeMaker BSPRunsudo apt-get updatesudo apt-get upgradesudo apt-get install build-essential u-boot-tools uboot-mkimage binutils-arm-linux-gnueabihf gcc-4.6-arm-linux-gnueabihf-base g++-4.6-arm-linux-gnueabihf sudo apt-get install gcc-arm-linux-gnueabihf cpp-arm-linux-gnueabihf libusb-1.0-0 libusb-1.0-0-dev git wget fakeroot kernel-package zlib1g-dev libncurses5-devRuncd ~git clone lemaker-bsp./configure BananaPimakeMainline All-in-one CompilationPreparationRunsudo apt-get updatesudo apt-get upgradesudo apt-get install build-essential u-boot-tools binutils-arm-linux-gnueabihf gcc-4.8-arm-linux-gnueabihf-base g++-4.8-arm-linux-gnueabihf sudo apt-get install gcc-arm-linux-gnueabihf cpp-arm-linux-gnueabihf libusb-1.0-0 libusb-1.0-0-dev git wget fakeroot kernel-package zlib1g-dev libncurses5-devsudo apt-get install device-tree-compilerDevice Tree CompilationGo to dirkernel/aaprch/arm/boot/dtsCreate a new device tree file called e.g. “new_device_tree.dts”Run IDE=new_device_treeSRC=$IDE.dtsTMP=$IDE.tmp.dtsDST=$IDE.dtbcpp -nostdinc -I include -undef -x assembler-with-cpp $SRC > $TMPdtc -O dtb -b 0 -o $DST $TMPrm $TMPAll-in-one CompilationRuncd ~git clone BPI-Mainline-bsp./configure Bananapi_M1makeMainline Standalone Compilation PreparationUse Ubuntu 16.04.5, Runsudo apt-get updatesudo apt-get install aptitudesudo aptitude install build-essential u-boot-tools binutils-arm-linux-gnueabihf gcc-5-arm-linux-gnueabihf-base g++-5-arm-linux-gnueabihf gcc-arm-linux-gnueabihf cpp-arm-linux-gnueabihf libusb-1.0-0 libusb-1.0-0-dev git wget fakeroot kernel-package zlib1g-dev libncurses5-dev device-tree-compilerU-Boot compilationRuncd ~/git clone git://git.denx.de/u-boot.git --depth 1 -b v2016.05cd u-bootcat<<END >> configs/Bananapi_defconfigCONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:24,pclk_khz:30000,le:40,ri:40,up:29,lo:13,hs:48,vs:3,sync:3,vmode:0"# CONFIG_VIDEO_LCD_BL_PWM_ACTIVE_LOW is not setCONFIG_VIDEO_LCD_POWER="PH12"CONFIG_VIDEO_LCD_BL_EN="PH8"CONFIG_VIDEO_LCD_BL_PWM="PB2"END#sed -i 's/$(CROSS_COMPILE)gcc-4.8/$(CROSS_COMPILE)gcc/g' Makefile#sed -i 's/$(CROSS_COMPILE)gcc/$(CROSS_COMPILE)gcc-4.8/g' Makefileexport CROSS_COMPILE=arm-linux-gnueabihf-make -j16 cleanmake -j16 Bananapi_defconfigmake -j16Kernel Compilation (Experimental)Runcd ~/git clone git://git.pub/scm/linux/kernel/git/stable/linux-stable.git --depth 1 -b v4.2cd ~/linux-stablesed -i 's/# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set/CONFIG_TOUCHSCREEN_EDT_FT5X06=y/g' arch/arm/configs/bpi_defconfigexport ARCH=armexport CROSS_COMPILE=arm-linux-gnueabihf-make -j16 cleanmake -j16 bpi_defconfigmake -j16 dtbsmake -j16 uImage modules LOADADDR=0x40008000 INSTALL_MOD_PATH=outputmake -j16 modules_install INSTALL_MOD_PATH=outputLinaroPrepare SD Card with Legacy KernelCreate an Image File for Win32 Disk ImagerUsing Ubuntu 12.04 host,Runsudo apt-get install kpartxDownload one of the following rootfs packages:wget a cardsize for image (2000000 = 1.0GB)Run (for Linaro Jessie on 2GB SD card) export cardsize=3750000export imgfile=disk.imgexport bsp=~/lemaker-bsp/export bsphw=~/lemaker-bsp/build/BananaPi_hwpack/export card=/dev/loop0export cardmapper=/dev/mapper/loop0export p="p"cd ~mkdir mntsudo rm ${imgfile}umount ${card}umount ${card}${p}1umount ${card}${p}2umount ${card}${p}3umount ${card}${p}4umount ${card}${p}5sudo dd if=/dev/zero of=${imgfile} count=${cardsize} sudo losetup ${card} ${imgfile}sudo dd if=/dev/zero of=/dev/loop0 bs=1k count=1023 seek=1sudo dd if=${bsphw}/bootloader/u-boot-sunxi-with-spl.bin of=/dev/loop0 bs=1024 seek=8sudo fdisk ${card} <<ENDon+16MnwENDumount ${card}umount ${card}${p}1umount ${card}${p}2umount ${card}${p}3umount ${card}${p}4umount ${card}${p}5sudo kpartx -av /dev/loop0sudo mkfs.vfat ${cardmapper}${p}1sudo mkfs.ext4 ${cardmapper}${p}2sudo mount ${cardmapper}${p}1 ~/mntecho -e "mmcboot=fatload mmc 0 0x43000000 script.bin || fatload mmc 0 0x43000000 evb.bin; \\" > uEnv.txtecho -e "fatload mmc 0 0x48000000 uImage; if fatload mmc 0 0x43100000 uInitrd; \\" >> uEnv.txtecho -e "then bootm 0x48000000 0x43100000; else bootm 0x48000000; fi" >> uEnv.txtecho -e "uenvcmd=run mmcboot" >> uEnv.txtecho -e "bootargs=console=ttyS0,115200 console=tty0 \\" >> uEnv.txtecho -e "disp.screen0_output_mode=EDID:1280x720p60 \\" >> uEnv.txtecho -e "hdmi.audio=EDID:0 root=/dev/mmcblk0p1" >> uEnv.txtsudo cp uEnv.txt ~/mnt/echo -e "setenv bootargs console=ttyS0,115200 noinitrd " > boot.cmdecho -e "disp.screen0_output_mode=EDID:1280x720p50 init=/init" >> boot.cmdecho -e "root=/dev/mmcblk0p1 rootwait panic=10 " >> boot.cmdecho -e "fatload mmc 0 0x43000000 script.bin " >> boot.cmdecho -e "fatload mmc 0 0x48000000 uImage " >> boot.cmdecho -e "bootm 0x48000000" >> boot.cmdsudo mkimage -C none -A arm -T script -d boot.cmd boot.scrsudo cp ${bsphw}/kernel/uImage ~/mnt/sudo cp ${bsphw}/kernel/script.bin ~/mnt/sudo umount ~/mntsudo mount ${cardmapper}${p}2 ~/mntsudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntsudo cp -r ${bsphw}/rootfs/* ~/mnt/sudo cp ${bsphw}/kernel/script.bin ~/mnt/boot/sudo cp ${bsphw}/kernel/uImage ~/mnt/boot/sudo cp uEnv.txt ~/mnt/boot/sudo sh -c "echo auto eth0 >> ~/mnt/etc/network/interfaces"sudo sh -c "echo iface eth0 inet dhcp >> ~/mnt/etc/network/interfaces"sudo sh -c "echo ft5x_ts >> ~/mnt/etc/modules"sudo sed -i 's/managed=false/managed=true/g' ~/mnt/etc/NetworkManager/NetworkManager.confsudo umount ~/mntsudo syncsudo losetup -d ${card}Other optionssudo tar --strip-components=3 -xzpf linaro-precise-ubuntu-desktop-20121124-560.tar.gz -C ~/mntexport cardsize=7000000sudo tar --strip-components=1 -xzpf linaro-utopic-alip-20150319-701.tar.gz -C ~/mntexport cardsize=1930000sudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntexport cardsize=3750000Write Directly to CardOpen device manager and find the SD card under disk drives, identify its disk number (see below)Open VMware Player and modify the settingsChoose “IDE” and then choose “Use a physical disk”. Select the Disk number of the SD card.Then “Finish” and boot the Ubuntu.Run on UbuntulsblkSee the output, identify the drive for the SD card (sda here)NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTsr0 11:0 1 1024M 0 rom sr1 11:1 1 1024M 0 rom sda 8:0 0 14.5G 0 disk ├─sda1 8:1 0 56M 0 part /media/boot└─sda2 8:2 0 3G 0 part /media/3d81d9e2-7d1b-4015-8c2c-29ec0875f762sdb 8:16 0 8G 0 disk ├─sdb1 8:17 0 7G 0 part /├─sdb2 8:18 0 1K 0 part └─sdb5 8:21 0 1022M 0 part [SWAP]Use the following script tar --strip-components=3 -xzpf linaro-precise-ubuntu-desktop-20121124-560.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-utopic-alip-20150319-701.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntlsblkexport letter=export card=/dev/sd${letter}export p=""export bsp=~/lemaker-bsp/export bsphw=~/lemaker-bsp/build/BananaPi_hwpack/cd ~mkdir mntumount ${card}umount ${card}${p}1umount ${card}${p}2umount ${card}${p}3umount ${card}${p}4umount ${card}${p}5sudo fdisk ${card} <<ENDon+16MnwENDumount ${card}umount ${card}${p}1umount ${card}${p}2umount ${card}${p}3umount ${card}${p}4umount ${card}${p}5sudo mkfs.vfat ${card}${p}1sudo mkfs.ext4 ${card}${p}2sudo dd if=/dev/zero of=${card} bs=1k count=1023 seek=1sudo dd if=${bsphw}/bootloader/u-boot-sunxi-with-spl.bin of=${card} bs=1024 seek=8sudo mount ${card}${p}1 ~/mntecho -e "mmcboot=fatload mmc 0 0x43000000 script.bin || fatload mmc 0 0x43000000 evb.bin; \\" > uEnv.txtecho -e "fatload mmc 0 0x48000000 uImage; if fatload mmc 0 0x43100000 uInitrd; \\" >> uEnv.txtecho -e "then bootm 0x48000000 0x43100000; else bootm 0x48000000; fi" >> uEnv.txtecho -e "uenvcmd=run mmcboot" >> uEnv.txtecho -e "bootargs=console=ttyS0,115200 console=tty0 \\" >> uEnv.txtecho -e "disp.screen0_output_mode=EDID:1280x720p60 \\" >> uEnv.txtecho -e "hdmi.audio=EDID:0 root=/dev/mmcblk0p1" >> uEnv.txtsudo cp uEnv.txt ~/mnt/echo -e "setenv bootargs console=ttyS0,115200 noinitrd " > boot.cmdecho -e "disp.screen0_output_mode=EDID:1280x720p50 init=/init" >> boot.cmdecho -e "root=/dev/mmcblk0p1 rootwait panic=10 " >> boot.cmdecho -e "fatload mmc 0 0x43000000 script.bin " >> boot.cmdecho -e "fatload mmc 0 0x48000000 uImage " >> boot.cmdecho -e "bootm 0x48000000" >> boot.cmdsudo mkimage -C none -A arm -T script -d boot.cmd boot.scrsudo cp ${bsphw}/kernel/uImage ~/mnt/sudo cp ${bsphw}/kernel/script.bin ~/mnt/sudo umount ~/mntsudo mount ${card}${p}2 ~/mntsudo tar --strip-components=1 -xzpf linaro-utopic-alip-20150319-701.tar.gz -C ~/mntsudo cp -r ${bsphw}/rootfs/* ~/mnt/sudo cp ${bsphw}/kernel/script.bin ~/mnt/boot/sudo cp ${bsphw}/kernel/uImage ~/mnt/boot/sudo cp uEnv.txt ~/mnt/boot/sudo sh -c "echo auto eth0 >> ~/mnt/etc/network/interfaces"sudo sh -c "echo iface eth0 inet dhcp >> ~/mnt/etc/network/interfaces"sudo sh -c "echo ft5x_ts >> ~/mnt/etc/modules"sudo sed -i 's/managed=false/managed=true/g' ~/mnt/etc/NetworkManager/NetworkManager.confsudo umount ~/mntsudo syncPrepare SD Card with Mainline KernelWrite Directly to Card (SINOVOIP)Use the following script (refer to REF _Ref471601824 \r \h 2.1) tar --strip-components=3 -xzpf linaro-precise-ubuntu-desktop-20121124-560.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-utopic-alip-20150319-701.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntlsblkexport letter=export card=/dev/sd${letter}export p=""export uboot=~/BPI-Mainline-bsp/build/Bananapi_M1/Bananapi_M1_defconfig-u-boot/u-boot-sunxi-with-spl.binexport uimage=~/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/arch/arm/boot/uImageexport dts=~/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/arch/arm/boot/dts/sun7i-a20-bananapi.dtbexport bsp=~/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/output/export firmware=~/BPI-Mainline-bsp/package/bcm_firmware/brcmcd ~sudo rm -r -f mntmkdir mntumount ${card}umount ${card}${p}1umount ${card}${p}2sudo fdisk ${card} <<ENDon+32MnwENDumount ${card}umount ${card}${p}1umount ${card}${p}2sudo mkfs.vfat ${card}${p}1sudo mkfs.ext4 ${card}${p}2<<ENDyENDsudo dd if=/dev/zero of=${card} bs=1k count=1023 seek=1sudo dd if=${uboot} of=${card} bs=1024 seek=8sudo mount ${card}${p}1 ~/mntcat <<END > boot.cmdsetenv bootargs console=ttyS0,115200 console=tty0 consoleblank=0 loglevel=8 initcall_debug verbose debug root=/dev/mmcblk0p2 rootwait panic=10 load mmc 0:1 0x43000000 sun7i-a20-bananapi.dtb load mmc 0:1 0x42000000 uImage bootm 0x42000000 - 0x43000000 ENDsudo mkimage -C none -A arm -T script -d boot.cmd boot.scrsudo cp boot.scr ~/mnt/sudo cp ${uimage} ~/mnt/sudo cp ${dts} ~/mnt/sudo umount ~/mntsudo mount ${card}${p}2 ~/mntsudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntsudo cp -r ${bsp}/* ~/mnt/sudo cp -r ${firmware} ~/mnt/lib/firmware/sudo cp ${dts} ~/mnt/boot/sudo cp ${uimage} ~/mnt/boot/sudo cp boot.scr ~/mnt/boot/sudo sh -c "echo auto lo > ~/mnt/etc/network/interfaces"sudo sh -c "echo iface lo inet loopback >> ~/mnt/etc/network/interfaces"sudo sh -c "echo auto eth0 >> ~/mnt/etc/network/interfaces"sudo sh -c "echo allow-hotplug eth0 >> ~/mnt/etc/network/interfaces"sudo sh -c "echo iface eth0 inet dhcp >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#iface eth0 inet static' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#address 192.168.137.208' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#netmask 255.255.255.0' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#gateway 192.168.137.1' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#auto wlan0' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#iface wlan0 inet dhcp' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#wpa-ssid SSID' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo '#wpa-psk xxx' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo 'proc /proc proc defaults 0 0' > ~/mnt/etc/fstab"sudo sh -c "echo '/dev/mmcblk0p1 /boot vfat defaults,rw 0 2' >> ~/mnt/etc/fstab"sudo sh -c "echo '/dev/mmcblk0p2 / ext4 defaults,noatime 0 1' >> ~/mnt/etc/fstab"sudo sh -c "echo ft5x_ts >> ~/mnt/etc/modules"sudo sed -i 's/managed=false/managed=true/g' ~/mnt/etc/NetworkManager/NetworkManager.confsudo chmod +x ~/mnt/usr/lib/dbus-1.0/dbus-daemon-launch-helpersudo sed -i 's/XKBLAYOUT="us"/XKBLAYOUT="tr"/g' ~/mnt/etc/default/keyboardsudo sed -i 's/XKBLAYOUT=us/XKBLAYOUT=tr/g' ~/mnt/usr/share/console-setup/keyboard sudo ssh-keygen -q -t rsa -f ~/mnt/etc/ssh/ssh_host_rsa_key -C '' -N ''sudo umount ~/mntsudo syncsudo rm boot.cmdsudo rm boot.scrsudo rm -r -f mntWrite Directly to Card (linux-stable)Use the following script (refer to REF _Ref471601824 \r \h 2.1) tar --strip-components=3 -xzpf linaro-precise-ubuntu-desktop-20121124-560.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-utopic-alip-20150319-701.tar.gz -C ~/mnt###sudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntlsblkexport letter=export card=/dev/sd${letter}export p=""export uboot=~/u-boot/u-boot-sunxi-with-spl.binexport uimage=~/linux-stable/arch/arm/boot/uImageexport dts=~/linux-stable/arch/arm/boot/dts/sun7i-a20-bananapi.dtbexport bsp=~/linux-stable/output/cd ~sudo rm -r -f mntmkdir mntumount ${card}umount ${card}${p}1umount ${card}${p}2sudo fdisk ${card} <<ENDon+32MnwENDumount ${card}umount ${card}${p}1umount ${card}${p}2sudo mkfs.vfat ${card}${p}1sudo mkfs.ext4 ${card}${p}2<<ENDyENDsudo dd if=/dev/zero of=${card} bs=1k count=1023 seek=1sudo dd if=${uboot} of=${card} bs=1024 seek=8sudo mount ${card}${p}1 ~/mntcat <<END > boot.cmdsetenv bootargs console=ttyS0,115200 console=tty0 consoleblank=0 loglevel=2 root=/dev/mmcblk0p2 rootwait panic=10 load mmc 0:1 0x43000000 sun7i-a20-bananapi.dtb load mmc 0:1 0x42000000 uImage bootm 0x42000000 - 0x43000000 END#cat <<END > boot.cmd#setenv bootargs console=ttyS0,115200 console=tty0 consoleblank=0 loglevel=8 initcall_debug verbose debug root=/dev/mmcblk0p2 rootwait panic=10 #load mmc 0:1 0x43000000 sun7i-a20-bananapi.dtb #load mmc 0:1 0x42000000 uImage #bootm 0x42000000 - 0x43000000 #ENDsudo mkimage -C none -A arm -T script -d boot.cmd boot.scrsudo cp boot.scr ~/mnt/sudo cp ${uimage} ~/mnt/sudo cp ${dts} ~/mnt/sudo umount ~/mntsudo mount ${card}${p}2 ~/mntsudo tar --strip-components=1 -xzpf linaro-jessie-alip-20160428-22.tar.gz -C ~/mntsudo cp -r ${bsp}/* ~/mnt/sudo cp -r ${firmware} ~/mnt/lib/firmware/sudo cp ${dts} ~/mnt/boot/sudo cp ${uimage} ~/mnt/boot/sudo cp boot.scr ~/mnt/boot/#sudo sh -c "echo auto lo > ~/mnt/etc/network/interfaces"#sudo sh -c "echo iface lo inet loopback >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo auto eth0 >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo allow-hotplug eth0 >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo iface eth0 inet dhcp >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#iface eth0 inet static' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#address 192.168.137.208' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#netmask 255.255.255.0' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#gateway 192.168.137.1' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#auto wlan0' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#iface wlan0 inet dhcp' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#wpa-ssid SSID' >> ~/mnt/etc/network/interfaces"#sudo sh -c "echo '#wpa-psk xxx' >> ~/mnt/etc/network/interfaces"sudo sh -c "echo 'proc /proc proc defaults 0 0' > ~/mnt/etc/fstab"sudo sh -c "echo '/dev/mmcblk0p1 /boot vfat defaults,rw 0 2' >> ~/mnt/etc/fstab"sudo sh -c "echo '/dev/mmcblk0p2 / ext4 defaults,noatime 0 1' >> ~/mnt/etc/fstab"sudo sh -c "echo ft5x_ts >> ~/mnt/etc/modules"sudo sed -i 's/managed=false/managed=true/g' ~/mnt/etc/NetworkManager/NetworkManager.conf#sudo chmod +x ~/mnt/usr/lib/dbus-1.0/dbus-daemon-launch-helpersudo sed -i 's/XKBLAYOUT="us"/XKBLAYOUT="tr"/g' ~/mnt/etc/default/keyboardsudo sed -i 's/XKBLAYOUT=us/XKBLAYOUT=tr/g' ~/mnt/usr/share/console-setup/keyboard sudo ssh-keygen -q -t rsa -f ~/mnt/etc/ssh/ssh_host_rsa_key -C '' -N ''sudo umount ~/mntsudo syncsudo rm boot.cmdsudo rm boot.scrsudo rm -r -f mntSSH/SCP Access to LinaroUseusername: linaropassword: linarono root passwordIf no RSA keys exist in Linaro, runsudo ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -C '' -N ''DebootstrapPrerequisites REF _Ref472275141 \r \h 1.2 REF _Ref472275141 \h Mainline All-in-one Compilation REF _Ref472275416 \r \h 1.3 REF _Ref472275416 \h Mainline U-Boot CompilationPreparationRunsudo apt-get install qemu-user-static binfmt-support debootstrapPrepare the rootfsRuncd ~sudo rm -r -f rootfsmkdir -p rootfssudo debootstrap --arch=armhf --foreign wheezy ~/rootfssudo cp /usr/bin/qemu-arm-static ~/rootfs/usr/bin/sudo cp /etc/resolv.conf ~/rootfs/etcsudo chroot ~/rootfsThe second stageexport LANG=Cdebootstrap/debootstrap --second-stageecho BananaPI > /etc/hostnamesed -i 's/127.0.0.1/127.0.0.1 BananaPI /g' /etc/hostscat <<END > /etc/apt/sources.list deb wheezy main contrib non-freedeb-src wheezy main contrib non-freedeb wheezy/updates main contrib non-freedeb-src wheezy/updates main contrib non-freeENDcat <<END > /etc/network/interfacesauto loiface lo inet loopback#auto eth0#allow-hotplug eth0#iface eth0 inet dhcp#iface eth0 inet static#address 192.168.137.208#netmask 255.255.255.0#gateway 192.168.137.1#auto wlan0#iface wlan0 inet dhcp#wpa-ssid SSID#wpa-psk xxxENDcat <<END > /etc/fstabproc /proc proc defaults 0 0/dev/mmcblk0p1 /boot vfat defaults,rw 0 2/dev/mmcblk0p2 / ext4 defaults,noatime 0 1ENDecho 'T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100' >> /etc/inittabInstall the required packagesapt-get updateapt-get install sudo locales dialog openssh-server ntp wpasupplicant wireless-tools <<ENDYENDapt-get clean#Optional#apt-get install lxde xorg --no-install-recommendsSet root password and add another user, then exitpasswd<<ENDpasspassENDuseradd user -g sudo -s /bin/bash -mpasswd user<<END123456123456ENDexitWrite Directly to CardPrepare the SD-cardFind the drive letter and export (i.e. b for sdb), Runlsblkexport letter=bexport card=/dev/sd${letter}export uboot=/home/user/u-boot/u-boot-sunxi-with-spl.binexport uimage=/home/user/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/arch/arm/boot/uImageexport dts=/home/user/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/arch/arm/boot/dts/sun7i-a20-bananapi.dtbexport bsp=/home/user/BPI-Mainline-bsp/build/Bananapi_M1/bpi_defconfig-kernel/output/export firmware=/home/user/BPI-Mainline-bsp/package/bcm_firmware/brcmcd ~umount ${card}umount ${card}1umount ${card}2sudo fdisk ${card} <<ENDon+32MnwENDumount ${card}umount ${card}1umount ${card}2sudo mkfs.vfat ${card}1<<ENDyENDsudo mkfs.ext4 ${card}2<<ENDyENDsudo dd if=/dev/zero of=${card} bs=1k count=1023 seek=1sudo dd if=${uboot} of=${card} bs=1024 seek=8cat <<END > boot.cmdsetenv bootargs console=ttyS0,115200 console=tty0 consoleblank=0 loglevel=8 root=/dev/mmcblk0p2 rootwait panic=10 load mmc 0:1 0x43000000 sun7i-a20-bananapi.dtb load mmc 0:1 0x42000000 uImage bootm 0x42000000 - 0x43000000 ENDsudo mkimage -C none -A arm -T script -d boot.cmd boot.scr sudo mount ${card}1 /optsudo cp boot.scr /opt/sudo cp ${uimage} /opt/sudo cp ${dts} /opt/sudo umount /optFinalize the SD-cardBurnsudo mount ${card}2 /optsudo cp -r ~/rootfs/* /opt/sudo chmod u+s /opt/usr/bin/sudosudo cp -r ${bsp}/* /opt/sudo cp -r ${firmware} /opt/lib/firmware/sudo cp ${dts} /opt/boot/sudo cp ${uimage} /opt/boot/sudo cp boot.scr /opt/boot/sudo syncsudo umount /optOptionalRunexport uboot=/home/user/u-boot/u-boot-sunxi-with-spl.binexport uimage=/home/user/linux-stable/arch/arm/boot/uImageexport dts=/home/user/linux-stable/arch/arm/boot/dts/sun7i-a20-bananapi.dtbexport bsp=/home/user/linux-stable/output/ export firmware=/home/user/BPI-Mainline-bsp/package/bcm_firmware/brcmVerbose kernel output (optional)Replace the boot.scr with:cat <<END > boot.cmdsetenv bootargs console=ttyS0,115200 console=tty0 consoleblank=0 loglevel=8 initcall_debug verbose debug root=/dev/mmcblk0p2 rootwait panic=10 load mmc 0:1 0x43000000 sun7i-a20-bananapi.dtb load mmc 0:1 0x42000000 uImage bootm 0x42000000 - 0x43000000 ENDsudo mkimage -C none -A arm -T script -d boot.cmd boot.scr Haoyu 5” TFT + CTP supportLegacy Kernel (3.x)LCD configurationEdit script.fex (see REF _Ref454222379 \r \h 8.1)[disp_init]disp_init_enable = 1disp_mode = 0screen0_output_type = 1screen0_output_mode = 4fb0_framebuffer_num = 2fb0_format = 10fb0_pixel_sequence = 0fb0_scaler_mode_enable = 1lcd0_backlight = 197lcd0_bright = 50lcd0_contrast = 50lcd0_saturation = 57lcd0_hue = 50[lcd0_para]lcd_used = 1lcd_x = 800lcd_y = 480lcd_dclk_freq = 38lcd_pwm_not_used = 0lcd_pwm_ch = 0lcd_pwm_freq = 22000lcd_pwm_pol = 0lcd_max_bright = 240lcd_min_bright = 16lcd_if = 0lcd_hbp = 88lcd_ht = 1000lcd_vbp = 39lcd_vt = 1044lcd_vspw = 3lcd_hspw = 48lcd_hv_if = 0lcd_hv_smode = 0lcd_hv_s888_if = 0lcd_hv_syuv_if = 0lcd_lvds_ch = 0lcd_lvds_mode = 0lcd_lvds_bitwidth = 0lcd_lvds_io_cross = 0lcd_cpu_if = 0lcd_frm = 0lcd_io_cfg0 = 268435456lcd_gamma_correction_en = 0lcd_gamma_tbl_0 = 0x0lcd_gamma_tbl_1 = 0x10101lcd_gamma_tbl_255 = 0xfffffflcd_bl_en_used = 1lcd_bl_en = port:PH08<1><0><default><1>lcd_power_used = 1lcd_power = port:PH12<1><0><default><1>lcd_pwm_used = 1lcd_pwm = port:PB02<2><0><default><default>lcdd0 = port:PD00<2><0><3><default>lcdd1 = port:PD01<2><0><3><default>lcdd2 = port:PD02<2><0><3><default>lcdd3 = port:PD03<2><0><3><default>lcdd4 = port:PD04<2><0><3><default>lcdd5 = port:PD05<2><0><3><default>lcdd6 = port:PD06<2><0><3><default>lcdd7 = port:PD07<2><0><3><default>lcdd8 = port:PD08<2><0><3><default>lcdd9 = port:PD09<2><0><3><default>lcdd10 = port:PD10<2><0><3><default>lcdd11 = port:PD11<2><0><3><default>lcdd12 = port:PD12<2><0><3><default>lcdd13 = port:PD13<2><0><3><default>lcdd14 = port:PD14<2><0><3><default>lcdd15 = port:PD15<2><0><3><default>lcdd16 = port:PD16<2><0><3><default>lcdd17 = port:PD17<2><0><3><default>lcdd18 = port:PD18<2><0><3><default>lcdd19 = port:PD19<2><0><3><default>lcdd20 = port:PD20<2><0><3><default>lcdd21 = port:PD21<2><0><3><default>lcdd22 = port:PD22<2><0><3><default>lcdd23 = port:PD23<2><0><3><default>lcdclk = port:PD24<2><0><3><default>lcdde = port:PD25<2><0><3><default>lcdhsync = port:PD26<2><0><3><default>lcdvsync = port:PD27<2><0><3><default>CTP (ft5x_ts) configurationEdit script.fex (see REF _Ref454222379 \r \h 8.1)[ctp_para]ctp_used = 1ctp_name = "ft5x_ts"ctp_twi_id = 3ctp_twi_addr = 0x38ctp_screen_max_x = 800ctp_screen_max_y = 480ctp_revert_x_flag = 0ctp_revert_y_flag = 0ctp_exchange_x_y_flag = 0ctp_firm = 1ctp_int_port = port:PH09<6><default><default><default>ctp_reset = port:PH07<1><0><default><1>[ctp_list_para]ctp_det_used = 1ft5x_ts = 1gt82x = 0gslX680 = 0gt9xx_ts = 0gt811 = 0To load the ft5x_ts module on startup, run sudo sh -c "echo ft5x_ts >> /etc/modules"Mainline Kernel (4.x)LCD configurationEditu-boot/configs/Bananapi_M1_defconfigPasteCONFIG_ARM=yCONFIG_ARCH_SUNXI=yCONFIG_MACH_SUN7I=yCONFIG_DRAM_CLK=432CONFIG_GMAC_TX_DELAY=3CONFIG_DEFAULT_DEVICE_TREE="sun7i-a20-bananapi"# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not setCONFIG_SPL=yCONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER,SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPH(23),AHCI,USB_EHCI"# CONFIG_CMD_IMLS is not set# CONFIG_CMD_FLASH is not set# CONFIG_CMD_FPGA is not setCONFIG_DM_ETH=yCONFIG_ETH_DESIGNWARE=yCONFIG_DM_SERIAL=y?CONFIG_USB=yCONFIG_DM_USB=yCONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:24,pclk_khz:30000,le:40,ri:40,up:29,lo:13,hs:48,vs:3,sync:3,vmode:0"# CONFIG_VIDEO_LCD_BL_PWM_ACTIVE_LOW is not setCONFIG_VIDEO_LCD_POWER="PH12"CONFIG_VIDEO_LCD_BL_EN="PH8"CONFIG_VIDEO_LCD_BL_PWM="PB2"Then, re-make.Driver compilationOpen “kernel/arch/arm/configs/bpi_defconfig”Modify the line# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not setIntoCONFIG_TOUCHSCREEN_EDT_FT5X06=yRecompile the kernel (refer to REF _Ref454662115 \r \h 1.2.3)CTP (ft5x_ts) configurationModify “kernel/arch/arm/boot/dts/sun7i-a20-bananapi.dts”Add after section “&i2c2”&i2c3 {status = "okay";pinctrl-names = "default";pinctrl-0 = <&i2c3_pins_a>;edt: edt-ft5x06@38 {compatible = "edt,edt-ft5x06", "edt,edt-ft5206";reg = <0x38>;pinctrl-names = "default";pinctrl-0 = <&edt_ft5x06_pins_a &edt_ft5x06_pins_b>;interrupt-parent = <&pio>;interrupts = <9 IRQ_TYPE_EDGE_FALLING>;reset-gpios = <7 GPIO_ACTIVE_HIGH>;touchscreen-size-x = <800>;touchscreen-size-y = <480>;touchscreen-inverted-x;touchscreen-swapped-x-y;};};Add into the section “&pio”edt_ft5x06_pins_a: ft5@0 { // interruptallwinner,pins = "PH9";allwinner,function = "irq";allwinner,drive = <SUN4I_PINCTRL_20_MA>;allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;};edt_ft5x06_pins_b: ft5@1 { // reset-gpiosallwinner,pins = "PH7";allwinner,function = "gpio_out";allwinner,drive = <SUN4I_PINCTRL_20_MA>;allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;output_high;};Compile the device tree (refer to REF _Ref454661832 \r \h 1.2.2)Prepare the SD card (refer to REF _Ref454662394 \r \h 0)Put the “sun7i-a20-bananapi.dtb” into the boot partition of the SD card.HardwareDEBUG ConsoleDebug UART pins:PL2303HX cable colors:PL2303 DriverWindows10(UART2-RX)PI19P11IO-2(UART2-TX)PI18P13IO-3(UART2-CTS)PI17P15VCC-3.3VP17SPI0_MOSIPI12P19SPI0-MISOPI13P21SPI0_CLKPI11P23GNDP25P02VCC-5VP04VCC-5VP06GNDP08PH0UART3-TXP10PH1UART3-RXP12PH2IO-1P14GNDP16PH20IO-4(CAN_TX)P18PH21IO-5(CAN_RX)P20GNDP22PI16IO-6(UART2_RTS)P24PI10SPI0_CS0P26PI14SPI0_CS1LED BlinkConnect an LED between PI11 and GND as followingUsing TerminalRun echo "11" > /sys/class/gpio/export echo "out" > /sys/class/gpio/gpio11/direction echo "1" > /sys/class/gpio/gpio11/value echo "0" > /sys/class/gpio/gpio11/valueecho "11" > /sys/class/gpio/unexport Using WiringPI / WiringLMK (Bananian 15.08)Runapt-get install build-essential g++ gcc git make sudo linux-headers-`uname –r`git clone cd WiringLMKchmod a+x ./buildsudo ./buildRunmkdir blinkcd blinknano main.cEdit#include <wiringPi.h>int main(void){ wiringPiSetupPhys(); pinMode(23, OUTPUT); while(1){ digitalWrite(23, HIGH); delay(500); digitalWrite(23, LOW); delay(500); }}Rungcc -o main main.c –l wiringPichmod a+x main./mainKernel Module CompilationLocal CompilationPreparation (Raspbian 14.12)Runapt-get updateapt-get install build-essential u-boot-tools uboot-mkimage libusb-1.0-0 libusb-1.0-0-dev git wget fakeroot kernel-package zlib1g-dev libncurses5-devcd ~wget –q lemaker-3.4.zipln -s ~/linux-sunxi-lemaker-3.4 /lib/modules/3.4.103/buildcd /lib/modules/3.4.103/buildmake mrpropergzip -dc /proc/config.gz > .configcp .config .make modules_prepareDownload Module.symvers from: create a new one with the contents from the appendix.Put Module.symvers file into:/lib/modules/3.4.103/buildPreparation (Bananian 15.08)Runapt-get install build-essential g++ gcc git make sudo linux-headers-`uname –r`Hello World Kernel ModuleRunmkdir ~/hellocd ~/hellonano ontents#include <linux/init.h>#include <linux/module.h>#include <linux/kernel.h>MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk("Hello world!\n"); return 0;}static void hello_exit(void){ printk("Bye, cruel world\n");}module_init(hello_init);module_exit(hello_exit);Runnano MakefileContents (tabs are important, be careful)KERNEL_SRC=/lib/modules/$(shell uname -r)/buildobj-m += hello.oall:make -C ${KERNEL_SRC} M=$(PWD) modulesclean:make -C ${KERNEL_SRC} M=$(PWD) cleanRun and trymakemodinfo hello.koinsmod hello.kormmod hello.koCross CompilationPreparation (For Raspbian 14.12)HostUbuntu 12.04.4Runsudo apt-get updatesudo apt-get install build-essential u-boot-tools uboot-mkimage binutils-arm-linux-gnueabihf gcc-4.6-arm-linux-gnueabihf-base g++-4.6-arm-linux-gnueabihf gcc-arm-linux-gnueabihf cpp-arm-linux-gnueabihf libusb-1.0-0 libusb-1.0-0-dev git wget fakeroot kernel-package zlib1g-dev libncurses5-devgit clone lemaker-bsp./configure BananaPimakeHello World Kernel ModuleRunmkdir ~/hellocd ~/hellonano ontents#include <linux/init.h>#include <linux/module.h>#include <linux/kernel.h>MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk("Hello world!\n"); return 0;}static void hello_exit(void){ printk("Bye, cruel world\n");}module_init(hello_init);module_exit(hello_exit);Runnano MakefileContents (tabs are important, be careful)CPU_ARCH=armCCPREFIX=arm-linux-gnueabihf-KERNEL_SRC=~/lemaker-bsp/build/sun7i_defconfig-linuxobj-m += hello.oall:make ARCH=${CPU_ARCH} CROSS_COMPILE=${CCPREFIX} -C ${KERNEL_SRC} M=$(PWD) modulesclean:make -C ${KERNEL_SRC} M=$(PWD) cleanRunmakeRun on Banana PIinsmod hello.ko modinfo hello.kormmod hello.koMiscallenaousRemote SSH AccessConnect the Banana to pc via debug cable.Runsudo nano /etc/network/interfacesEditiface eth0 inet staticaddress 192.168.137.208netmask 255.255.255.0gateway 192.168.137.1Connect the Banana to the pc via cross Ethernet cable and Configure Windows10 Open WinSCP on the pc and configure as the followingLogin details for Raspbian for Banana PIusername: rootpassword: bananapiLogin details for Bananianusername: rootpassword: piClick login.Copy putty.exe intoc:\program files\putty\Hit “ctrl+p” to open PuttyLogin to SSH.Configure the Status LED to Show CPU0 (legacy)Download all files from “script.bin” from the boot SD card into the same folderRunBIN2FEX.BATOpen the created “script.fex” and modify...[leds_para]leds_used = 1leds_num = 1leds_pin_1 = port:PH24<1><default><default><0>leds_name_1 = "green:ph24:led1"leds_default_1 = 1leds_trigger_1 = "cpu0"...Delete “script.bin” fileRunFEX2BIN.BATCopy “script.bin” to the boot SD card and replace the old oneLinaro Keyboard layoutTo change temporarily, runsetxkbmap -layout "tr,tr"To change permanently, open/etc/default/keyboard/usr/share/console-setup/keyboardModifyXKBLAYOUT="tr"Linaro BugfixesRunchmod +x /usr/lib/dbus-1.0/dbus-daemon-launch-helperGit clone specific tagRungit clone git://git.denx.de/u-boot.git --depth 1 -b v2016.09Remount partitionRunmount /boot -o remount,rwImmediate flushmount /boot -o remount,syncLoading Kernel Modules on Startup (legacy kernel)Modify/etc/modulesAdd the module to the list (example)ft5x_tsAppendixbpi_defconfig file for Mainline Kernel v4.2## Automatically generated file; DO NOT EDIT.# Linux/arm 4.2 Kernel Configuration#CONFIG_ARM=yCONFIG_ARM_HAS_SG_CHAIN=yCONFIG_MIGHT_HAVE_PCI=yCONFIG_SYS_SUPPORTS_APM_EMULATION=yCONFIG_HAVE_PROC_CPU=yCONFIG_NO_IOPORT_MAP=yCONFIG_STACKTRACE_SUPPORT=yCONFIG_LOCKDEP_SUPPORT=yCONFIG_TRACE_IRQFLAGS_SUPPORT=yCONFIG_RWSEM_XCHGADD_ALGORITHM=yCONFIG_ARCH_HAS_BANDGAP=yCONFIG_GENERIC_HWEIGHT=yCONFIG_GENERIC_CALIBRATE_DELAY=yCONFIG_ZONE_DMA=yCONFIG_NEED_DMA_MAP_STATE=yCONFIG_ARCH_SUPPORTS_UPROBES=yCONFIG_FIQ=yCONFIG_VECTORS_BASE=0xffff0000CONFIG_ARM_PATCH_PHYS_VIRT=yCONFIG_GENERIC_BUG=yCONFIG_PGTABLE_LEVELS=2CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"CONFIG_IRQ_WORK=yCONFIG_BUILDTIME_EXTABLE_SORT=y## General setup#CONFIG_INIT_ENV_ARG_LIMIT=32CONFIG_CROSS_COMPILE=""# CONFIG_COMPILE_TEST is not setCONFIG_LOCALVERSION="-BPI-kernel"# CONFIG_LOCALVERSION_AUTO is not setCONFIG_HAVE_KERNEL_GZIP=yCONFIG_HAVE_KERNEL_LZMA=yCONFIG_HAVE_KERNEL_XZ=yCONFIG_HAVE_KERNEL_LZO=yCONFIG_HAVE_KERNEL_LZ4=yCONFIG_KERNEL_GZIP=y# CONFIG_KERNEL_LZMA is not set# CONFIG_KERNEL_XZ is not set# CONFIG_KERNEL_LZO is not set# CONFIG_KERNEL_LZ4 is not setCONFIG_DEFAULT_HOSTNAME="(none)"CONFIG_SWAP=yCONFIG_SYSVIPC=yCONFIG_SYSVIPC_SYSCTL=yCONFIG_POSIX_MQUEUE=yCONFIG_POSIX_MQUEUE_SYSCTL=yCONFIG_CROSS_MEMORY_ATTACH=yCONFIG_FHANDLE=yCONFIG_USELIB=yCONFIG_AUDIT=yCONFIG_HAVE_ARCH_AUDITSYSCALL=yCONFIG_AUDITSYSCALL=yCONFIG_AUDIT_WATCH=yCONFIG_AUDIT_TREE=y## IRQ subsystem#CONFIG_GENERIC_IRQ_PROBE=yCONFIG_GENERIC_IRQ_SHOW=yCONFIG_GENERIC_IRQ_SHOW_LEVEL=yCONFIG_HARDIRQS_SW_RESEND=yCONFIG_GENERIC_IRQ_CHIP=yCONFIG_IRQ_DOMAIN=yCONFIG_IRQ_DOMAIN_HIERARCHY=yCONFIG_GENERIC_MSI_IRQ=yCONFIG_HANDLE_DOMAIN_IRQ=yCONFIG_IRQ_DOMAIN_DEBUG=yCONFIG_IRQ_FORCED_THREADING=yCONFIG_SPARSE_IRQ=yCONFIG_GENERIC_TIME_VSYSCALL=yCONFIG_GENERIC_CLOCKEVENTS=yCONFIG_ARCH_HAS_TICK_BROADCAST=yCONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y## Timers subsystem#CONFIG_TICK_ONESHOT=yCONFIG_NO_HZ_COMMON=y# CONFIG_HZ_PERIODIC is not setCONFIG_NO_HZ_IDLE=y# CONFIG_NO_HZ_FULL is not setCONFIG_NO_HZ=yCONFIG_HIGH_RES_TIMERS=y## CPU/Task time and stats accounting#CONFIG_TICK_CPU_ACCOUNTING=y# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set# CONFIG_IRQ_TIME_ACCOUNTING is not setCONFIG_BSD_PROCESS_ACCT=yCONFIG_BSD_PROCESS_ACCT_V3=yCONFIG_TASKSTATS=yCONFIG_TASK_DELAY_ACCT=yCONFIG_TASK_XACCT=yCONFIG_TASK_IO_ACCOUNTING=y## RCU Subsystem#CONFIG_TREE_RCU=yCONFIG_SRCU=y# CONFIG_TASKS_RCU is not setCONFIG_RCU_STALL_COMMON=y# CONFIG_RCU_USER_QS is not setCONFIG_RCU_FANOUT=32CONFIG_RCU_FANOUT_LEAF=16# CONFIG_RCU_FANOUT_EXACT is not set# CONFIG_RCU_FAST_NO_HZ is not set# CONFIG_TREE_RCU_TRACE is not setCONFIG_RCU_KTHREAD_PRIO=0# CONFIG_RCU_NOCB_CPU is not set# CONFIG_RCU_EXPEDITE_BOOT is not setCONFIG_BUILD_BIN2C=yCONFIG_IKCONFIG=yCONFIG_IKCONFIG_PROC=yCONFIG_LOG_BUF_SHIFT=17CONFIG_LOG_CPU_MAX_BUF_SHIFT=12CONFIG_GENERIC_SCHED_CLOCK=yCONFIG_CGROUPS=y# CONFIG_CGROUP_DEBUG is not setCONFIG_CGROUP_FREEZER=yCONFIG_CGROUP_DEVICE=yCONFIG_CPUSETS=yCONFIG_PROC_PID_CPUSET=yCONFIG_CGROUP_CPUACCT=yCONFIG_PAGE_COUNTER=yCONFIG_MEMCG=yCONFIG_MEMCG_SWAP=yCONFIG_MEMCG_SWAP_ENABLED=yCONFIG_MEMCG_KMEM=yCONFIG_CGROUP_PERF=yCONFIG_CGROUP_SCHED=yCONFIG_FAIR_GROUP_SCHED=yCONFIG_CFS_BANDWIDTH=yCONFIG_RT_GROUP_SCHED=yCONFIG_BLK_CGROUP=y# CONFIG_DEBUG_BLK_CGROUP is not set# CONFIG_CHECKPOINT_RESTORE is not setCONFIG_NAMESPACES=yCONFIG_UTS_NS=yCONFIG_IPC_NS=yCONFIG_USER_NS=yCONFIG_PID_NS=yCONFIG_NET_NS=yCONFIG_SCHED_AUTOGROUP=y# CONFIG_SYSFS_DEPRECATED is not setCONFIG_RELAY=yCONFIG_BLK_DEV_INITRD=yCONFIG_INITRAMFS_SOURCE=""CONFIG_RD_GZIP=yCONFIG_RD_BZIP2=yCONFIG_RD_LZMA=yCONFIG_RD_XZ=yCONFIG_RD_LZO=yCONFIG_RD_LZ4=y# CONFIG_CC_OPTIMIZE_FOR_SIZE is not setCONFIG_SYSCTL=yCONFIG_ANON_INODES=yCONFIG_HAVE_UID16=yCONFIG_BPF=yCONFIG_EXPERT=yCONFIG_UID16=yCONFIG_MULTIUSER=y# CONFIG_SGETMASK_SYSCALL is not setCONFIG_SYSFS_SYSCALL=y# CONFIG_SYSCTL_SYSCALL is not setCONFIG_KALLSYMS=y# CONFIG_KALLSYMS_ALL is not setCONFIG_PRINTK=yCONFIG_BUG=yCONFIG_ELF_CORE=yCONFIG_BASE_FULL=yCONFIG_FUTEX=yCONFIG_EPOLL=yCONFIG_SIGNALFD=yCONFIG_TIMERFD=yCONFIG_EVENTFD=y# CONFIG_BPF_SYSCALL is not setCONFIG_SHMEM=yCONFIG_AIO=yCONFIG_ADVISE_SYSCALLS=yCONFIG_PCI_QUIRKS=yCONFIG_EMBEDDED=yCONFIG_HAVE_PERF_EVENTS=yCONFIG_PERF_USE_VMALLOC=y## Kernel Performance Events And Counters#CONFIG_PERF_EVENTS=y# CONFIG_DEBUG_PERF_USE_VMALLOC is not setCONFIG_VM_EVENT_COUNTERS=yCONFIG_SLUB_DEBUG=y# CONFIG_COMPAT_BRK is not set# CONFIG_SLAB is not setCONFIG_SLUB=y# CONFIG_SLOB is not setCONFIG_SLUB_CPU_PARTIAL=y# CONFIG_SYSTEM_TRUSTED_KEYRING is not setCONFIG_PROFILING=yCONFIG_TRACEPOINTS=yCONFIG_OPROFILE=mCONFIG_HAVE_OPROFILE=yCONFIG_KPROBES=yCONFIG_JUMP_LABEL=yCONFIG_OPTPROBES=y# CONFIG_UPROBES is not set# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not setCONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=yCONFIG_ARCH_USE_BUILTIN_BSWAP=yCONFIG_KRETPROBES=yCONFIG_HAVE_KPROBES=yCONFIG_HAVE_KRETPROBES=yCONFIG_HAVE_OPTPROBES=yCONFIG_HAVE_ARCH_TRACEHOOK=yCONFIG_HAVE_DMA_ATTRS=yCONFIG_HAVE_DMA_CONTIGUOUS=yCONFIG_GENERIC_SMP_IDLE_THREAD=yCONFIG_GENERIC_IDLE_POLL_SETUP=yCONFIG_HAVE_REGS_AND_STACK_ACCESS_API=yCONFIG_HAVE_CLK=yCONFIG_HAVE_DMA_API_DEBUG=yCONFIG_HAVE_HW_BREAKPOINT=yCONFIG_HAVE_PERF_REGS=yCONFIG_HAVE_PERF_USER_STACK_DUMP=yCONFIG_HAVE_ARCH_JUMP_LABEL=yCONFIG_ARCH_WANT_IPC_PARSE_VERSION=yCONFIG_HAVE_ARCH_SECCOMP_FILTER=yCONFIG_SECCOMP_FILTER=yCONFIG_HAVE_CC_STACKPROTECTOR=yCONFIG_CC_STACKPROTECTOR=y# CONFIG_CC_STACKPROTECTOR_NONE is not setCONFIG_CC_STACKPROTECTOR_REGULAR=y# CONFIG_CC_STACKPROTECTOR_STRONG is not setCONFIG_HAVE_CONTEXT_TRACKING=yCONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=yCONFIG_HAVE_IRQ_TIME_ACCOUNTING=yCONFIG_HAVE_MOD_ARCH_SPECIFIC=yCONFIG_MODULES_USE_ELF_REL=yCONFIG_ARCH_HAS_ELF_RANDOMIZE=yCONFIG_CLONE_BACKWARDS=yCONFIG_OLD_SIGSUSPEND3=yCONFIG_OLD_SIGACTION=y## GCOV-based kernel profiling## CONFIG_GCOV_KERNEL is not setCONFIG_ARCH_HAS_GCOV_PROFILE_ALL=yCONFIG_HAVE_GENERIC_DMA_COHERENT=yCONFIG_SLABINFO=yCONFIG_RT_MUTEXES=yCONFIG_BASE_SMALL=0CONFIG_MODULES=yCONFIG_MODULE_FORCE_LOAD=yCONFIG_MODULE_UNLOAD=y# CONFIG_MODULE_FORCE_UNLOAD is not setCONFIG_MODVERSIONS=yCONFIG_MODULE_SRCVERSION_ALL=y# CONFIG_MODULE_SIG is not set# CONFIG_MODULE_COMPRESS is not setCONFIG_STOP_MACHINE=yCONFIG_BLOCK=yCONFIG_LBDAF=yCONFIG_BLK_DEV_BSG=yCONFIG_BLK_DEV_BSGLIB=yCONFIG_BLK_DEV_INTEGRITY=y# CONFIG_BLK_DEV_THROTTLING is not setCONFIG_BLK_CMDLINE_PARSER=y## Partition Types#CONFIG_PARTITION_ADVANCED=y# CONFIG_ACORN_PARTITION is not set# CONFIG_AIX_PARTITION is not setCONFIG_OSF_PARTITION=yCONFIG_AMIGA_PARTITION=y# CONFIG_ATARI_PARTITION is not setCONFIG_MAC_PARTITION=yCONFIG_MSDOS_PARTITION=yCONFIG_BSD_DISKLABEL=yCONFIG_MINIX_SUBPARTITION=yCONFIG_SOLARIS_X86_PARTITION=yCONFIG_UNIXWARE_DISKLABEL=y# CONFIG_LDM_PARTITION is not setCONFIG_SGI_PARTITION=y# CONFIG_ULTRIX_PARTITION is not setCONFIG_SUN_PARTITION=yCONFIG_KARMA_PARTITION=yCONFIG_EFI_PARTITION=y# CONFIG_SYSV68_PARTITION is not setCONFIG_CMDLINE_PARTITION=y## IO Schedulers#CONFIG_IOSCHED_NOOP=yCONFIG_IOSCHED_DEADLINE=yCONFIG_IOSCHED_CFQ=yCONFIG_CFQ_GROUP_IOSCHED=y# CONFIG_DEFAULT_DEADLINE is not setCONFIG_DEFAULT_CFQ=y# CONFIG_DEFAULT_NOOP is not setCONFIG_DEFAULT_IOSCHED="cfq"CONFIG_INLINE_SPIN_UNLOCK_IRQ=yCONFIG_INLINE_READ_UNLOCK=yCONFIG_INLINE_READ_UNLOCK_IRQ=yCONFIG_INLINE_WRITE_UNLOCK=yCONFIG_INLINE_WRITE_UNLOCK_IRQ=yCONFIG_ARCH_SUPPORTS_ATOMIC_RMW=yCONFIG_MUTEX_SPIN_ON_OWNER=yCONFIG_RWSEM_SPIN_ON_OWNER=yCONFIG_LOCK_SPIN_ON_OWNER=yCONFIG_FREEZER=y## System Type#CONFIG_MMU=yCONFIG_ARCH_MULTIPLATFORM=y# CONFIG_ARCH_REALVIEW is not set# CONFIG_ARCH_VERSATILE is not set# CONFIG_ARCH_CLPS711X is not set# CONFIG_ARCH_GEMINI is not set# CONFIG_ARCH_EBSA110 is not set# CONFIG_ARCH_EP93XX is not set# CONFIG_ARCH_FOOTBRIDGE is not set# CONFIG_ARCH_NETX is not set# CONFIG_ARCH_IOP13XX is not set# CONFIG_ARCH_IOP32X is not set# CONFIG_ARCH_IOP33X is not set# CONFIG_ARCH_IXP4XX is not set# CONFIG_ARCH_DOVE is not set# CONFIG_ARCH_MV78XX0 is not set# CONFIG_ARCH_ORION5X is not set# CONFIG_ARCH_MMP is not set# CONFIG_ARCH_KS8695 is not set# CONFIG_ARCH_W90X900 is not set# CONFIG_ARCH_LPC32XX is not set# CONFIG_ARCH_PXA is not set# CONFIG_ARCH_SHMOBILE_LEGACY is not set# CONFIG_ARCH_RPC is not set# CONFIG_ARCH_SA1100 is not set# CONFIG_ARCH_S3C24XX is not set# CONFIG_ARCH_S3C64XX is not set# CONFIG_ARCH_DAVINCI is not set# CONFIG_ARCH_OMAP1 is not set## Multiple platform selection### CPU Core family selection## CONFIG_ARCH_MULTI_V6 is not setCONFIG_ARCH_MULTI_V7=yCONFIG_ARCH_MULTI_V6_V7=y# CONFIG_ARCH_MULTI_CPU_AUTO is not setCONFIG_ARCH_VIRT=yCONFIG_ARCH_MVEBU=yCONFIG_MACH_MVEBU_ANY=yCONFIG_MACH_MVEBU_V7=yCONFIG_MACH_ARMADA_370=yCONFIG_MACH_ARMADA_375=yCONFIG_MACH_ARMADA_38X=y# CONFIG_MACH_ARMADA_39X is not setCONFIG_MACH_ARMADA_XP=yCONFIG_MACH_DOVE=y# CONFIG_ARCH_ALPINE is not set# CONFIG_ARCH_AT91 is not setCONFIG_ARCH_BCM=y## IPROC architected SoCs#CONFIG_ARCH_BCM_IPROC=yCONFIG_ARCH_BCM_CYGNUS=yCONFIG_ARCH_BCM_5301X=y## KONA architected SoCs#CONFIG_ARCH_BCM_MOBILE=yCONFIG_ARCH_BCM_281XX=yCONFIG_ARCH_BCM_21664=yCONFIG_ARCH_BCM_MOBILE_L2_CACHE=yCONFIG_ARCH_BCM_MOBILE_SMC=yCONFIG_ARCH_BCM_MOBILE_SMP=y## Other Architectures## CONFIG_ARCH_BCM_63XX is not setCONFIG_ARCH_BRCMSTB=yCONFIG_ARCH_BERLIN=yCONFIG_MACH_BERLIN_BG2=yCONFIG_MACH_BERLIN_BG2CD=yCONFIG_MACH_BERLIN_BG2Q=y# CONFIG_ARCH_DIGICOLOR is not setCONFIG_ARCH_HIGHBANK=yCONFIG_ARCH_HISI=y## Hisilicon platform type#CONFIG_ARCH_HI3xxx=y# CONFIG_ARCH_HIP01 is not setCONFIG_ARCH_HIP04=yCONFIG_ARCH_HIX5HD2=yCONFIG_ARCH_KEYSTONE=yCONFIG_ARCH_MESON=yCONFIG_MACH_MESON6=yCONFIG_MACH_MESON8=yCONFIG_ARCH_MXC=yCONFIG_MXC_TZIC=yCONFIG_HAVE_IMX_ANATOP=yCONFIG_HAVE_IMX_GPC=yCONFIG_HAVE_IMX_MMDC=yCONFIG_HAVE_IMX_SRC=y## Device tree only#CONFIG_SOC_IMX5=yCONFIG_SOC_IMX50=yCONFIG_SOC_IMX51=yCONFIG_SOC_IMX53=yCONFIG_SOC_IMX6=yCONFIG_SOC_IMX6Q=yCONFIG_SOC_IMX6SL=yCONFIG_SOC_IMX6SX=yCONFIG_SOC_VF610=yCONFIG_VF_USE_ARM_GLOBAL_TIMER=y# CONFIG_VF_USE_PIT_TIMER is not set# CONFIG_SOC_LS1021A is not setCONFIG_ARCH_MEDIATEK=yCONFIG_MACH_MT6589=yCONFIG_MACH_MT6592=yCONFIG_MACH_MT8127=yCONFIG_MACH_MT8135=yCONFIG_ARCH_OMAP=y## TI OMAP Common Features### OMAP Feature Selections## CONFIG_OMAP_RESET_CLOCKS is not setCONFIG_OMAP_MUX=y# CONFIG_OMAP_MUX_DEBUG is not setCONFIG_OMAP_MUX_WARNINGS=yCONFIG_OMAP_32K_TIMER=y# CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not setCONFIG_OMAP_DM_TIMER=yCONFIG_OMAP_PM_NOOP=yCONFIG_MACH_OMAP_GENERIC=y## TI OMAP/AM/DM/DRA Family#CONFIG_ARCH_OMAP3=yCONFIG_ARCH_OMAP4=yCONFIG_SOC_OMAP5=yCONFIG_SOC_AM33XX=yCONFIG_SOC_AM43XX=yCONFIG_SOC_DRA7XX=yCONFIG_ARCH_OMAP2PLUS=y## TI OMAP2/3/4 Specific Features#CONFIG_ARCH_OMAP2PLUS_TYPICAL=yCONFIG_SOC_HAS_OMAP2_SDRC=yCONFIG_SOC_HAS_REALTIME_COUNTER=yCONFIG_SOC_OMAP3430=yCONFIG_SOC_TI81XX=yCONFIG_OMAP_PACKAGE_CBB=yCONFIG_OMAP_PACKAGE_CUS=y## OMAP Legacy Platform Data Board Type#CONFIG_MACH_OMAP3_BEAGLE=yCONFIG_MACH_OMAP_LDP=yCONFIG_MACH_OMAP3530_LV_SOM=yCONFIG_MACH_OMAP3_TORPEDO=yCONFIG_MACH_OVERO=yCONFIG_MACH_OMAP3517EVM=yCONFIG_MACH_OMAP3_PANDORA=yCONFIG_MACH_NOKIA_RX51=yCONFIG_MACH_CM_T35=yCONFIG_MACH_CM_T3730=y# CONFIG_OMAP3_SDRC_AC_TIMING is not setCONFIG_ARCH_QCOM=yCONFIG_ARCH_MSM8X60=yCONFIG_ARCH_MSM8960=yCONFIG_ARCH_MSM8974=yCONFIG_ARCH_ROCKCHIP=yCONFIG_ARCH_SOCFPGA=yCONFIG_PLAT_SPEAR=yCONFIG_ARCH_SPEAR13XX=yCONFIG_MACH_SPEAR1310=yCONFIG_MACH_SPEAR1340=yCONFIG_ARCH_STI=yCONFIG_SOC_STIH415=yCONFIG_SOC_STIH416=yCONFIG_SOC_STIH407=y# CONFIG_ARCH_S5PV210 is not setCONFIG_ARCH_EXYNOS=y# CONFIG_ARCH_EXYNOS3 is not setCONFIG_ARCH_EXYNOS4=yCONFIG_ARCH_EXYNOS5=y## EXYNOS SoCs#CONFIG_CPU_EXYNOS4210=yCONFIG_SOC_EXYNOS4212=yCONFIG_SOC_EXYNOS4412=yCONFIG_SOC_EXYNOS4415=yCONFIG_SOC_EXYNOS5250=yCONFIG_SOC_EXYNOS5260=yCONFIG_SOC_EXYNOS5410=yCONFIG_SOC_EXYNOS5420=yCONFIG_SOC_EXYNOS5440=yCONFIG_SOC_EXYNOS5800=y# CONFIG_EXYNOS5420_MCPM is not setCONFIG_EXYNOS_CPU_SUSPEND=yCONFIG_PLAT_SAMSUNG=y## Samsung Common options### Boot options#CONFIG_S5P_DEV_MFC=y## Power management## CONFIG_SAMSUNG_PM_CHECK is not setCONFIG_ARCH_SHMOBILE=yCONFIG_ARCH_SHMOBILE_MULTI=y# CONFIG_ARCH_EMEV2 is not set# CONFIG_ARCH_R7S72100 is not set# CONFIG_ARCH_R8A73A4 is not set# CONFIG_ARCH_R8A7740 is not set# CONFIG_ARCH_R8A7778 is not set# CONFIG_ARCH_R8A7779 is not set# CONFIG_ARCH_R8A7790 is not set# CONFIG_ARCH_R8A7791 is not set# CONFIG_ARCH_R8A7794 is not set# CONFIG_ARCH_SH73A0 is not set## Renesas ARM SoCs Board Type### Renesas ARM SoCs System Configuration### Timer and clock configuration#CONFIG_SHMOBILE_TIMER_HZ=128CONFIG_ARCH_SUNXI=yCONFIG_MACH_SUN4I=yCONFIG_MACH_SUN5I=yCONFIG_MACH_SUN6I=yCONFIG_MACH_SUN7I=yCONFIG_MACH_SUN8I=yCONFIG_MACH_SUN9I=yCONFIG_ARCH_SIRF=y## CSR SiRF atlas6/primaII/Atlas7 Specific Features#CONFIG_ARCH_ATLAS6=yCONFIG_ARCH_ATLAS7=yCONFIG_ARCH_PRIMA2=yCONFIG_SIRF_IRQ=yCONFIG_ARCH_TEGRA=yCONFIG_ARCH_TEGRA_2x_SOC=yCONFIG_ARCH_TEGRA_3x_SOC=yCONFIG_ARCH_TEGRA_114_SOC=yCONFIG_ARCH_TEGRA_124_SOC=yCONFIG_ARCH_U8500=yCONFIG_UX500_SOC_DB8500=yCONFIG_MACH_MOP500=yCONFIG_MACH_HREFV60=yCONFIG_MACH_SNOWBALL=yCONFIG_UX500_AUTO_PLATFORM=yCONFIG_UX500_DEBUG_UART=2CONFIG_ARCH_VEXPRESS=yCONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA=y# CONFIG_ARCH_VEXPRESS_DCSCB is not set# CONFIG_ARCH_VEXPRESS_SPC is not set# CONFIG_ARCH_VEXPRESS_TC2_PM is not setCONFIG_ARCH_VT8500=yCONFIG_ARCH_WM8850=yCONFIG_ARCH_ZYNQ=yCONFIG_PLAT_ORION=yCONFIG_PLAT_VERSATILE=yCONFIG_ARM_TIMER_SP804=yCONFIG_ARCH_SUPPORTS_FIRMWARE=yCONFIG_ARCH_SUPPORTS_TRUSTED_FOUNDATIONS=y## Firmware options#CONFIG_TRUSTED_FOUNDATIONS=y## Processor Type#CONFIG_CPU_PJ4=yCONFIG_CPU_PJ4B=yCONFIG_CPU_V7=yCONFIG_CPU_32v6K=yCONFIG_CPU_32v7=yCONFIG_CPU_ABRT_EV7=yCONFIG_CPU_PABRT_V7=yCONFIG_CPU_CACHE_V7=yCONFIG_CPU_CACHE_VIPT=yCONFIG_CPU_COPY_V6=yCONFIG_CPU_TLB_V7=yCONFIG_CPU_HAS_ASID=yCONFIG_CPU_CP15=yCONFIG_CPU_CP15_MMU=y## Processor Features## CONFIG_ARM_LPAE is not set# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not setCONFIG_ARCH_DMA_ADDR_T_64BIT=yCONFIG_ARM_THUMB=yCONFIG_ARM_THUMBEE=yCONFIG_ARM_VIRT_EXT=yCONFIG_SWP_EMULATE=y# CONFIG_CPU_BIG_ENDIAN is not set# CONFIG_CPU_ICACHE_DISABLE is not set# CONFIG_CPU_BPREDICT_DISABLE is not setCONFIG_KUSER_HELPERS=yCONFIG_VDSO=yCONFIG_OUTER_CACHE=yCONFIG_OUTER_CACHE_SYNC=yCONFIG_CACHE_FEROCEON_L2=y# CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not setCONFIG_MIGHT_HAVE_CACHE_L2X0=yCONFIG_CACHE_L2X0=yCONFIG_PL310_ERRATA_588369=yCONFIG_PL310_ERRATA_727915=yCONFIG_PL310_ERRATA_753970=yCONFIG_PL310_ERRATA_769419=yCONFIG_CACHE_TAUROS2=yCONFIG_ARM_L1_CACHE_SHIFT_6=yCONFIG_ARM_L1_CACHE_SHIFT=6CONFIG_ARM_DMA_MEM_BUFFERABLE=yCONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y# CONFIG_ARM_KERNMEM_PERMS is not setCONFIG_IWMMXT=yCONFIG_MULTI_IRQ_HANDLER=yCONFIG_PJ4B_ERRATA_4742=y# CONFIG_ARM_ERRATA_430973 is not setCONFIG_ARM_ERRATA_643719=yCONFIG_ARM_ERRATA_720789=yCONFIG_ARM_ERRATA_754322=yCONFIG_ARM_ERRATA_754327=yCONFIG_ARM_ERRATA_764369=yCONFIG_ARM_ERRATA_775420=yCONFIG_ARM_ERRATA_798181=y# CONFIG_ARM_ERRATA_773022 is not setCONFIG_ICST=yCONFIG_TI_PRIV_EDMA=y## Bus support#CONFIG_PCI=yCONFIG_PCI_DOMAINS=yCONFIG_PCI_DOMAINS_GENERIC=yCONFIG_PCI_SYSCALL=yCONFIG_PCI_BUS_ADDR_T_64BIT=yCONFIG_PCI_MSI=y# CONFIG_PCI_DEBUG is not set# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set# CONFIG_PCI_STUB is not set# CONFIG_PCI_IOV is not set# CONFIG_PCI_PRI is not set# CONFIG_PCI_PASID is not set## PCI host controller drivers## CONFIG_PCI_DRA7XX is not setCONFIG_PCI_MVEBU=y# CONFIG_PCI_EXYNOS is not set# CONFIG_PCI_IMX6 is not setCONFIG_PCI_TEGRA=y# CONFIG_PCI_RCAR_GEN2 is not set# CONFIG_PCI_RCAR_GEN2_PCIE is not set# CONFIG_PCI_HOST_GENERIC is not set# CONFIG_PCIE_SPEAR13XX is not set# CONFIG_PCI_KEYSTONE is not set# CONFIG_PCIE_XILINX is not set# CONFIG_PCI_LAYERSCAPE is not setCONFIG_PCIE_IPROC=yCONFIG_PCIE_IPROC_PLATFORM=yCONFIG_PCIEPORTBUS=yCONFIG_PCIEAER=y# CONFIG_PCIE_ECRC is not set# CONFIG_PCIEAER_INJECT is not setCONFIG_PCIEASPM=y# CONFIG_PCIEASPM_DEBUG is not setCONFIG_PCIEASPM_DEFAULT=y# CONFIG_PCIEASPM_POWERSAVE is not set# CONFIG_PCIEASPM_PERFORMANCE is not setCONFIG_PCIE_PME=y# CONFIG_PCCARD is not set## Kernel Features#CONFIG_HAVE_SMP=yCONFIG_SMP=yCONFIG_SMP_ON_UP=yCONFIG_ARM_CPU_TOPOLOGY=y# CONFIG_SCHED_MC is not set# CONFIG_SCHED_SMT is not setCONFIG_HAVE_ARM_SCU=yCONFIG_HAVE_ARM_ARCH_TIMER=yCONFIG_HAVE_ARM_TWD=yCONFIG_MCPM=yCONFIG_MCPM_QUAD_CLUSTER=y# CONFIG_BIG_LITTLE is not setCONFIG_VMSPLIT_3G=y# CONFIG_VMSPLIT_2G is not set# CONFIG_VMSPLIT_1G is not setCONFIG_PAGE_OFFSET=0xC0000000CONFIG_NR_CPUS=8CONFIG_HOTPLUG_CPU=yCONFIG_ARM_PSCI=yCONFIG_ARCH_NR_GPIO=1024CONFIG_PREEMPT_NONE=y# CONFIG_PREEMPT_VOLUNTARY is not set# CONFIG_PREEMPT is not setCONFIG_HZ_FIXED=200CONFIG_HZ=200CONFIG_SCHED_HRTICK=y# CONFIG_THUMB2_KERNEL is not setCONFIG_AEABI=y# CONFIG_OABI_COMPAT is not setCONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set# CONFIG_ARCH_SELECT_MEMORY_MODEL is not setCONFIG_HAVE_ARCH_PFN_VALID=yCONFIG_HIGHMEM=yCONFIG_HIGHPTE=yCONFIG_HW_PERF_EVENTS=yCONFIG_ARCH_WANT_GENERAL_HUGETLB=yCONFIG_FLATMEM=yCONFIG_FLAT_NODE_MEM_MAP=yCONFIG_HAVE_MEMBLOCK=yCONFIG_NO_BOOTMEM=yCONFIG_MEMORY_ISOLATION=y# CONFIG_HAVE_BOOTMEM_INFO_NODE is not setCONFIG_PAGEFLAGS_EXTENDED=yCONFIG_SPLIT_PTLOCK_CPUS=4CONFIG_COMPACTION=yCONFIG_MIGRATION=y# CONFIG_PHYS_ADDR_T_64BIT is not setCONFIG_ZONE_DMA_FLAG=1CONFIG_BOUNCE=yCONFIG_MMU_NOTIFIER=y# CONFIG_KSM is not setCONFIG_DEFAULT_MMAP_MIN_ADDR=4096CONFIG_CLEANCACHE=yCONFIG_FRONTSWAP=yCONFIG_CMA=y# CONFIG_CMA_DEBUG is not set# CONFIG_CMA_DEBUGFS is not setCONFIG_CMA_AREAS=7# CONFIG_ZSWAP is not set# CONFIG_ZPOOL is not set# CONFIG_ZBUD is not setCONFIG_ZSMALLOC=mCONFIG_PGTABLE_MAPPING=y# CONFIG_ZSMALLOC_STAT is not setCONFIG_FORCE_MAX_ZONEORDER=12CONFIG_ALIGNMENT_TRAP=yCONFIG_UACCESS_WITH_MEMCPY=yCONFIG_SECCOMP=yCONFIG_SWIOTLB=yCONFIG_IOMMU_HELPER=yCONFIG_XEN_DOM0=yCONFIG_XEN=y## Boot options#CONFIG_USE_OF=yCONFIG_ATAGS=y# CONFIG_DEPRECATED_PARAM_STRUCT is not setCONFIG_ZBOOT_ROM_TEXT=0CONFIG_ZBOOT_ROM_BSS=0CONFIG_ARM_APPENDED_DTB=yCONFIG_ARM_ATAG_DTB_COMPAT=yCONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not setCONFIG_CMDLINE=""CONFIG_KEXEC=yCONFIG_ATAGS_PROC=yCONFIG_CRASH_DUMP=yCONFIG_AUTO_ZRELADDR=y## CPU Power Management### CPU Frequency scaling#CONFIG_CPU_FREQ=yCONFIG_CPU_FREQ_GOV_COMMON=yCONFIG_CPU_FREQ_STAT=yCONFIG_CPU_FREQ_STAT_DETAILS=y# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not setCONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not setCONFIG_CPU_FREQ_GOV_PERFORMANCE=yCONFIG_CPU_FREQ_GOV_POWERSAVE=yCONFIG_CPU_FREQ_GOV_USERSPACE=yCONFIG_CPU_FREQ_GOV_ONDEMAND=yCONFIG_CPU_FREQ_GOV_CONSERVATIVE=m## CPU frequency scaling drivers#CONFIG_CPUFREQ_DT=yCONFIG_ARM_EXYNOS_CPUFREQ=yCONFIG_ARM_EXYNOS4210_CPUFREQ=yCONFIG_ARM_EXYNOS4X12_CPUFREQ=yCONFIG_ARM_EXYNOS5250_CPUFREQ=y# CONFIG_ARM_EXYNOS_CPU_FREQ_BOOST_SW is not setCONFIG_ARM_EXYNOS5440_CPUFREQ=yCONFIG_ARM_HIGHBANK_CPUFREQ=m# CONFIG_ARM_HISI_ACPU_CPUFREQ is not set# CONFIG_ARM_KIRKWOOD_CPUFREQ is not setCONFIG_ARM_OMAP2PLUS_CPUFREQ=yCONFIG_ARM_SPEAR_CPUFREQ=yCONFIG_ARM_TEGRA_CPUFREQ=y# CONFIG_QORIQ_CPUFREQ is not set## CPU Idle#CONFIG_CPU_IDLE=yCONFIG_CPU_IDLE_GOV_LADDER=yCONFIG_CPU_IDLE_GOV_MENU=y## ARM CPU Idle Drivers## CONFIG_ARM_CPUIDLE is not set# CONFIG_ARM_BIG_LITTLE_CPUIDLE is not set# CONFIG_ARM_HIGHBANK_CPUIDLE is not setCONFIG_ARM_ZYNQ_CPUIDLE=y# CONFIG_ARM_U8500_CPUIDLE is not set# CONFIG_ARM_EXYNOS_CPUIDLE is not set# CONFIG_ARM_MVEBU_V7_CPUIDLE is not setCONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y## Floating point emulation### At least one emulation must be selected#CONFIG_VFP=yCONFIG_VFPv3=yCONFIG_NEON=y# CONFIG_KERNEL_MODE_NEON is not set## Userspace binary formats#CONFIG_BINFMT_ELF=yCONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=yCONFIG_BINFMT_SCRIPT=y# CONFIG_HAVE_AOUT is not setCONFIG_BINFMT_MISC=yCONFIG_COREDUMP=y## Power management options#CONFIG_SUSPEND=yCONFIG_SUSPEND_FREEZER=y# CONFIG_HIBERNATION is not setCONFIG_PM_SLEEP=yCONFIG_PM_SLEEP_SMP=y# CONFIG_PM_AUTOSLEEP is not set# CONFIG_PM_WAKELOCKS is not setCONFIG_PM=yCONFIG_PM_DEBUG=y# CONFIG_PM_ADVANCED_DEBUG is not set# CONFIG_PM_TEST_SUSPEND is not setCONFIG_PM_SLEEP_DEBUG=y# CONFIG_APM_EMULATION is not setCONFIG_PM_OPP=yCONFIG_PM_CLK=yCONFIG_PM_GENERIC_DOMAINS=y# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not setCONFIG_PM_GENERIC_DOMAINS_SLEEP=yCONFIG_PM_GENERIC_DOMAINS_OF=yCONFIG_CPU_PM=yCONFIG_ARCH_SUSPEND_POSSIBLE=yCONFIG_ARM_CPU_SUSPEND=yCONFIG_ARCH_HIBERNATION_POSSIBLE=yCONFIG_NET=y## Networking options#CONFIG_PACKET=y# CONFIG_PACKET_DIAG is not setCONFIG_UNIX=y# CONFIG_UNIX_DIAG is not setCONFIG_XFRM=yCONFIG_XFRM_ALGO=yCONFIG_XFRM_USER=y# CONFIG_XFRM_SUB_POLICY is not set# CONFIG_XFRM_MIGRATE is not set# CONFIG_XFRM_STATISTICS is not setCONFIG_XFRM_IPCOMP=mCONFIG_NET_KEY=m# CONFIG_NET_KEY_MIGRATE is not setCONFIG_INET=yCONFIG_IP_MULTICAST=yCONFIG_IP_ADVANCED_ROUTER=yCONFIG_IP_FIB_TRIE_STATS=yCONFIG_IP_MULTIPLE_TABLES=yCONFIG_IP_ROUTE_MULTIPATH=yCONFIG_IP_ROUTE_VERBOSE=yCONFIG_IP_ROUTE_CLASSID=yCONFIG_IP_PNP=yCONFIG_IP_PNP_DHCP=yCONFIG_IP_PNP_BOOTP=yCONFIG_IP_PNP_RARP=yCONFIG_NET_IPIP=mCONFIG_NET_IPGRE_DEMUX=mCONFIG_NET_IP_TUNNEL=mCONFIG_NET_IPGRE=mCONFIG_NET_IPGRE_BROADCAST=yCONFIG_IP_MROUTE=yCONFIG_IP_MROUTE_MULTIPLE_TABLES=yCONFIG_IP_PIMSM_V1=yCONFIG_IP_PIMSM_V2=yCONFIG_SYN_COOKIES=y# CONFIG_NET_IPVTI is not setCONFIG_NET_UDP_TUNNEL=m# CONFIG_NET_FOU is not set# CONFIG_NET_FOU_IP_TUNNELS is not set# CONFIG_GENEVE is not setCONFIG_INET_AH=mCONFIG_INET_ESP=mCONFIG_INET_IPCOMP=mCONFIG_INET_XFRM_TUNNEL=mCONFIG_INET_TUNNEL=mCONFIG_INET_XFRM_MODE_TRANSPORT=mCONFIG_INET_XFRM_MODE_TUNNEL=mCONFIG_INET_XFRM_MODE_BEET=mCONFIG_INET_LRO=mCONFIG_INET_DIAG=mCONFIG_INET_TCP_DIAG=mCONFIG_INET_UDP_DIAG=mCONFIG_TCP_CONG_ADVANCED=yCONFIG_TCP_CONG_BIC=mCONFIG_TCP_CONG_CUBIC=yCONFIG_TCP_CONG_WESTWOOD=mCONFIG_TCP_CONG_HTCP=m# CONFIG_TCP_CONG_HSTCP is not set# CONFIG_TCP_CONG_HYBLA is not set# CONFIG_TCP_CONG_VEGAS is not set# CONFIG_TCP_CONG_SCALABLE is not set# CONFIG_TCP_CONG_LP is not set# CONFIG_TCP_CONG_VENO is not set# CONFIG_TCP_CONG_YEAH is not set# CONFIG_TCP_CONG_ILLINOIS is not set# CONFIG_TCP_CONG_DCTCP is not setCONFIG_DEFAULT_CUBIC=y# CONFIG_DEFAULT_RENO is not setCONFIG_DEFAULT_TCP_CONG="cubic"# CONFIG_TCP_MD5SIG is not setCONFIG_IPV6=m# CONFIG_IPV6_ROUTER_PREF is not set# CONFIG_IPV6_OPTIMISTIC_DAD is not setCONFIG_INET6_AH=mCONFIG_INET6_ESP=mCONFIG_INET6_IPCOMP=mCONFIG_IPV6_MIP6=mCONFIG_INET6_XFRM_TUNNEL=mCONFIG_INET6_TUNNEL=mCONFIG_INET6_XFRM_MODE_TRANSPORT=mCONFIG_INET6_XFRM_MODE_TUNNEL=mCONFIG_INET6_XFRM_MODE_BEET=m# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set# CONFIG_IPV6_VTI is not setCONFIG_IPV6_SIT=m# CONFIG_IPV6_SIT_6RD is not setCONFIG_IPV6_NDISC_NODETYPE=yCONFIG_IPV6_TUNNEL=mCONFIG_IPV6_GRE=mCONFIG_IPV6_MULTIPLE_TABLES=yCONFIG_IPV6_SUBTREES=yCONFIG_IPV6_MROUTE=yCONFIG_IPV6_MROUTE_MULTIPLE_TABLES=yCONFIG_IPV6_PIMSM_V2=yCONFIG_NETLABEL=yCONFIG_NETWORK_SECMARK=yCONFIG_NET_PTP_CLASSIFY=yCONFIG_NETWORK_PHY_TIMESTAMPING=yCONFIG_NETFILTER=y# CONFIG_NETFILTER_DEBUG is not setCONFIG_NETFILTER_ADVANCED=yCONFIG_BRIDGE_NETFILTER=m## Core Netfilter Configuration#CONFIG_NETFILTER_NETLINK=mCONFIG_NETFILTER_NETLINK_ACCT=mCONFIG_NETFILTER_NETLINK_QUEUE=mCONFIG_NETFILTER_NETLINK_LOG=mCONFIG_NF_CONNTRACK=mCONFIG_NF_LOG_COMMON=mCONFIG_NF_CONNTRACK_MARK=y# CONFIG_NF_CONNTRACK_SECMARK is not setCONFIG_NF_CONNTRACK_ZONES=yCONFIG_NF_CONNTRACK_PROCFS=yCONFIG_NF_CONNTRACK_EVENTS=y# CONFIG_NF_CONNTRACK_TIMEOUT is not setCONFIG_NF_CONNTRACK_TIMESTAMP=yCONFIG_NF_CONNTRACK_LABELS=yCONFIG_NF_CT_PROTO_DCCP=mCONFIG_NF_CT_PROTO_GRE=mCONFIG_NF_CT_PROTO_SCTP=mCONFIG_NF_CT_PROTO_UDPLITE=mCONFIG_NF_CONNTRACK_AMANDA=mCONFIG_NF_CONNTRACK_FTP=mCONFIG_NF_CONNTRACK_H323=mCONFIG_NF_CONNTRACK_IRC=mCONFIG_NF_CONNTRACK_BROADCAST=mCONFIG_NF_CONNTRACK_NETBIOS_NS=mCONFIG_NF_CONNTRACK_SNMP=mCONFIG_NF_CONNTRACK_PPTP=mCONFIG_NF_CONNTRACK_SANE=mCONFIG_NF_CONNTRACK_SIP=mCONFIG_NF_CONNTRACK_TFTP=mCONFIG_NF_CT_NETLINK=m# CONFIG_NF_CT_NETLINK_TIMEOUT is not set# CONFIG_NETFILTER_NETLINK_QUEUE_CT is not setCONFIG_NF_NAT=mCONFIG_NF_NAT_NEEDED=yCONFIG_NF_NAT_PROTO_DCCP=mCONFIG_NF_NAT_PROTO_UDPLITE=mCONFIG_NF_NAT_PROTO_SCTP=mCONFIG_NF_NAT_AMANDA=mCONFIG_NF_NAT_FTP=mCONFIG_NF_NAT_IRC=mCONFIG_NF_NAT_SIP=mCONFIG_NF_NAT_TFTP=mCONFIG_NF_NAT_REDIRECT=m# CONFIG_NF_TABLES is not setCONFIG_NETFILTER_XTABLES=m## Xtables combined modules#CONFIG_NETFILTER_XT_MARK=mCONFIG_NETFILTER_XT_CONNMARK=mCONFIG_NETFILTER_XT_SET=m## Xtables targets#CONFIG_NETFILTER_XT_TARGET_AUDIT=mCONFIG_NETFILTER_XT_TARGET_CHECKSUM=mCONFIG_NETFILTER_XT_TARGET_CLASSIFY=mCONFIG_NETFILTER_XT_TARGET_CONNMARK=mCONFIG_NETFILTER_XT_TARGET_CT=mCONFIG_NETFILTER_XT_TARGET_DSCP=mCONFIG_NETFILTER_XT_TARGET_HL=mCONFIG_NETFILTER_XT_TARGET_HMARK=mCONFIG_NETFILTER_XT_TARGET_IDLETIMER=mCONFIG_NETFILTER_XT_TARGET_LED=mCONFIG_NETFILTER_XT_TARGET_LOG=mCONFIG_NETFILTER_XT_TARGET_MARK=mCONFIG_NETFILTER_XT_NAT=mCONFIG_NETFILTER_XT_TARGET_NETMAP=mCONFIG_NETFILTER_XT_TARGET_NFLOG=mCONFIG_NETFILTER_XT_TARGET_NFQUEUE=mCONFIG_NETFILTER_XT_TARGET_NOTRACK=mCONFIG_NETFILTER_XT_TARGET_RATEEST=mCONFIG_NETFILTER_XT_TARGET_REDIRECT=mCONFIG_NETFILTER_XT_TARGET_TEE=mCONFIG_NETFILTER_XT_TARGET_TPROXY=mCONFIG_NETFILTER_XT_TARGET_TRACE=m# CONFIG_NETFILTER_XT_TARGET_SECMARK is not setCONFIG_NETFILTER_XT_TARGET_TCPMSS=mCONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m## Xtables matches#CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=mCONFIG_NETFILTER_XT_MATCH_BPF=m# CONFIG_NETFILTER_XT_MATCH_CGROUP is not setCONFIG_NETFILTER_XT_MATCH_CLUSTER=mCONFIG_NETFILTER_XT_MATCH_COMMENT=mCONFIG_NETFILTER_XT_MATCH_CONNBYTES=mCONFIG_NETFILTER_XT_MATCH_CONNLABEL=mCONFIG_NETFILTER_XT_MATCH_CONNLIMIT=mCONFIG_NETFILTER_XT_MATCH_CONNMARK=mCONFIG_NETFILTER_XT_MATCH_CONNTRACK=mCONFIG_NETFILTER_XT_MATCH_CPU=mCONFIG_NETFILTER_XT_MATCH_DCCP=mCONFIG_NETFILTER_XT_MATCH_DEVGROUP=mCONFIG_NETFILTER_XT_MATCH_DSCP=mCONFIG_NETFILTER_XT_MATCH_ECN=mCONFIG_NETFILTER_XT_MATCH_ESP=mCONFIG_NETFILTER_XT_MATCH_HASHLIMIT=mCONFIG_NETFILTER_XT_MATCH_HELPER=mCONFIG_NETFILTER_XT_MATCH_HL=m# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not setCONFIG_NETFILTER_XT_MATCH_IPRANGE=mCONFIG_NETFILTER_XT_MATCH_IPVS=mCONFIG_NETFILTER_XT_MATCH_L2TP=mCONFIG_NETFILTER_XT_MATCH_LENGTH=mCONFIG_NETFILTER_XT_MATCH_LIMIT=mCONFIG_NETFILTER_XT_MATCH_MAC=mCONFIG_NETFILTER_XT_MATCH_MARK=mCONFIG_NETFILTER_XT_MATCH_MULTIPORT=mCONFIG_NETFILTER_XT_MATCH_NFACCT=mCONFIG_NETFILTER_XT_MATCH_OSF=mCONFIG_NETFILTER_XT_MATCH_OWNER=mCONFIG_NETFILTER_XT_MATCH_POLICY=mCONFIG_NETFILTER_XT_MATCH_PHYSDEV=mCONFIG_NETFILTER_XT_MATCH_PKTTYPE=mCONFIG_NETFILTER_XT_MATCH_QUOTA=mCONFIG_NETFILTER_XT_MATCH_RATEEST=mCONFIG_NETFILTER_XT_MATCH_REALM=mCONFIG_NETFILTER_XT_MATCH_RECENT=mCONFIG_NETFILTER_XT_MATCH_SCTP=mCONFIG_NETFILTER_XT_MATCH_SOCKET=mCONFIG_NETFILTER_XT_MATCH_STATE=mCONFIG_NETFILTER_XT_MATCH_STATISTIC=mCONFIG_NETFILTER_XT_MATCH_STRING=mCONFIG_NETFILTER_XT_MATCH_TCPMSS=mCONFIG_NETFILTER_XT_MATCH_TIME=mCONFIG_NETFILTER_XT_MATCH_U32=mCONFIG_IP_SET=mCONFIG_IP_SET_MAX=256CONFIG_IP_SET_BITMAP_IP=mCONFIG_IP_SET_BITMAP_IPMAC=mCONFIG_IP_SET_BITMAP_PORT=mCONFIG_IP_SET_HASH_IP=m# CONFIG_IP_SET_HASH_IPMARK is not setCONFIG_IP_SET_HASH_IPPORT=mCONFIG_IP_SET_HASH_IPPORTIP=mCONFIG_IP_SET_HASH_IPPORTNET=m# CONFIG_IP_SET_HASH_MAC is not set# CONFIG_IP_SET_HASH_NETPORTNET is not setCONFIG_IP_SET_HASH_NET=m# CONFIG_IP_SET_HASH_NETNET is not setCONFIG_IP_SET_HASH_NETPORT=mCONFIG_IP_SET_HASH_NETIFACE=mCONFIG_IP_SET_LIST_SET=mCONFIG_IP_VS=m# CONFIG_IP_VS_IPV6 is not set# CONFIG_IP_VS_DEBUG is not setCONFIG_IP_VS_TAB_BITS=12## IPVS transport protocol load balancing support#CONFIG_IP_VS_PROTO_TCP=yCONFIG_IP_VS_PROTO_UDP=yCONFIG_IP_VS_PROTO_AH_ESP=yCONFIG_IP_VS_PROTO_ESP=yCONFIG_IP_VS_PROTO_AH=yCONFIG_IP_VS_PROTO_SCTP=y## IPVS scheduler#CONFIG_IP_VS_RR=mCONFIG_IP_VS_WRR=mCONFIG_IP_VS_LC=mCONFIG_IP_VS_WLC=m# CONFIG_IP_VS_FO is not setCONFIG_IP_VS_LBLC=mCONFIG_IP_VS_LBLCR=mCONFIG_IP_VS_DH=mCONFIG_IP_VS_SH=mCONFIG_IP_VS_SED=mCONFIG_IP_VS_NQ=m## IPVS SH scheduler#CONFIG_IP_VS_SH_TAB_BITS=8## IPVS application helper#CONFIG_IP_VS_FTP=mCONFIG_IP_VS_NFCT=yCONFIG_IP_VS_PE_SIP=m## IP: Netfilter Configuration#CONFIG_NF_DEFRAG_IPV4=mCONFIG_NF_CONNTRACK_IPV4=mCONFIG_NF_CONNTRACK_PROC_COMPAT=y# CONFIG_NF_LOG_ARP is not setCONFIG_NF_LOG_IPV4=mCONFIG_NF_REJECT_IPV4=mCONFIG_NF_NAT_IPV4=mCONFIG_NF_NAT_MASQUERADE_IPV4=mCONFIG_NF_NAT_SNMP_BASIC=mCONFIG_NF_NAT_PROTO_GRE=mCONFIG_NF_NAT_PPTP=mCONFIG_NF_NAT_H323=mCONFIG_IP_NF_IPTABLES=mCONFIG_IP_NF_MATCH_AH=mCONFIG_IP_NF_MATCH_ECN=m# CONFIG_IP_NF_MATCH_RPFILTER is not setCONFIG_IP_NF_MATCH_TTL=mCONFIG_IP_NF_FILTER=mCONFIG_IP_NF_TARGET_REJECT=m# CONFIG_IP_NF_TARGET_SYNPROXY is not setCONFIG_IP_NF_NAT=mCONFIG_IP_NF_TARGET_MASQUERADE=mCONFIG_IP_NF_TARGET_NETMAP=mCONFIG_IP_NF_TARGET_REDIRECT=mCONFIG_IP_NF_MANGLE=mCONFIG_IP_NF_TARGET_CLUSTERIP=mCONFIG_IP_NF_TARGET_ECN=mCONFIG_IP_NF_TARGET_TTL=mCONFIG_IP_NF_RAW=m# CONFIG_IP_NF_SECURITY is not setCONFIG_IP_NF_ARPTABLES=mCONFIG_IP_NF_ARPFILTER=mCONFIG_IP_NF_ARP_MANGLE=m## IPv6: Netfilter Configuration#CONFIG_NF_DEFRAG_IPV6=mCONFIG_NF_CONNTRACK_IPV6=mCONFIG_NF_REJECT_IPV6=mCONFIG_NF_LOG_IPV6=mCONFIG_NF_NAT_IPV6=mCONFIG_NF_NAT_MASQUERADE_IPV6=mCONFIG_IP6_NF_IPTABLES=mCONFIG_IP6_NF_MATCH_AH=mCONFIG_IP6_NF_MATCH_EUI64=mCONFIG_IP6_NF_MATCH_FRAG=mCONFIG_IP6_NF_MATCH_OPTS=mCONFIG_IP6_NF_MATCH_HL=mCONFIG_IP6_NF_MATCH_IPV6HEADER=mCONFIG_IP6_NF_MATCH_MH=m# CONFIG_IP6_NF_MATCH_RPFILTER is not setCONFIG_IP6_NF_MATCH_RT=mCONFIG_IP6_NF_TARGET_HL=mCONFIG_IP6_NF_FILTER=mCONFIG_IP6_NF_TARGET_REJECT=m# CONFIG_IP6_NF_TARGET_SYNPROXY is not setCONFIG_IP6_NF_MANGLE=mCONFIG_IP6_NF_RAW=m# CONFIG_IP6_NF_SECURITY is not setCONFIG_IP6_NF_NAT=mCONFIG_IP6_NF_TARGET_MASQUERADE=mCONFIG_IP6_NF_TARGET_NPT=mCONFIG_BRIDGE_NF_EBTABLES=mCONFIG_BRIDGE_EBT_BROUTE=mCONFIG_BRIDGE_EBT_T_FILTER=mCONFIG_BRIDGE_EBT_T_NAT=mCONFIG_BRIDGE_EBT_802_3=mCONFIG_BRIDGE_EBT_AMONG=mCONFIG_BRIDGE_EBT_ARP=mCONFIG_BRIDGE_EBT_IP=mCONFIG_BRIDGE_EBT_IP6=mCONFIG_BRIDGE_EBT_LIMIT=mCONFIG_BRIDGE_EBT_MARK=mCONFIG_BRIDGE_EBT_PKTTYPE=mCONFIG_BRIDGE_EBT_STP=mCONFIG_BRIDGE_EBT_VLAN=mCONFIG_BRIDGE_EBT_ARPREPLY=mCONFIG_BRIDGE_EBT_DNAT=mCONFIG_BRIDGE_EBT_MARK_T=mCONFIG_BRIDGE_EBT_REDIRECT=mCONFIG_BRIDGE_EBT_SNAT=mCONFIG_BRIDGE_EBT_LOG=mCONFIG_BRIDGE_EBT_NFLOG=m# CONFIG_IP_DCCP is not setCONFIG_IP_SCTP=m# CONFIG_NET_SCTPPROBE is not set# CONFIG_SCTP_DBG_OBJCNT is not setCONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not setCONFIG_SCTP_COOKIE_HMAC_MD5=yCONFIG_SCTP_COOKIE_HMAC_SHA1=y# CONFIG_RDS is not set# CONFIG_TIPC is not setCONFIG_ATM=m# CONFIG_ATM_CLIP is not set# CONFIG_ATM_LANE is not set# CONFIG_ATM_BR2684 is not setCONFIG_L2TP=m# CONFIG_L2TP_DEBUGFS is not setCONFIG_L2TP_V3=yCONFIG_L2TP_IP=mCONFIG_L2TP_ETH=mCONFIG_STP=mCONFIG_GARP=mCONFIG_MRP=mCONFIG_BRIDGE=mCONFIG_BRIDGE_IGMP_SNOOPING=yCONFIG_BRIDGE_VLAN_FILTERING=yCONFIG_HAVE_NET_DSA=yCONFIG_VLAN_8021Q=mCONFIG_VLAN_8021Q_GVRP=yCONFIG_VLAN_8021Q_MVRP=y# CONFIG_DECNET is not setCONFIG_LLC=m# CONFIG_LLC2 is not set# CONFIG_IPX is not setCONFIG_ATALK=m# CONFIG_DEV_APPLETALK is not set# CONFIG_X25 is not set# CONFIG_LAPB is not set# CONFIG_PHONET is not setCONFIG_6LOWPAN=mCONFIG_6LOWPAN_NHC=mCONFIG_6LOWPAN_NHC_DEST=mCONFIG_6LOWPAN_NHC_FRAGMENT=mCONFIG_6LOWPAN_NHC_HOP=mCONFIG_6LOWPAN_NHC_IPV6=mCONFIG_6LOWPAN_NHC_MOBILITY=mCONFIG_6LOWPAN_NHC_ROUTING=mCONFIG_6LOWPAN_NHC_UDP=m# CONFIG_IEEE802154 is not setCONFIG_NET_SCHED=y## Queueing/Scheduling#CONFIG_NET_SCH_CBQ=mCONFIG_NET_SCH_HTB=mCONFIG_NET_SCH_HFSC=m# CONFIG_NET_SCH_ATM is not setCONFIG_NET_SCH_PRIO=mCONFIG_NET_SCH_MULTIQ=mCONFIG_NET_SCH_RED=mCONFIG_NET_SCH_SFB=mCONFIG_NET_SCH_SFQ=mCONFIG_NET_SCH_TEQL=mCONFIG_NET_SCH_TBF=mCONFIG_NET_SCH_GRED=mCONFIG_NET_SCH_DSMARK=mCONFIG_NET_SCH_NETEM=mCONFIG_NET_SCH_DRR=mCONFIG_NET_SCH_MQPRIO=mCONFIG_NET_SCH_CHOKE=mCONFIG_NET_SCH_QFQ=mCONFIG_NET_SCH_CODEL=mCONFIG_NET_SCH_FQ_CODEL=m# CONFIG_NET_SCH_FQ is not set# CONFIG_NET_SCH_HHF is not set# CONFIG_NET_SCH_PIE is not setCONFIG_NET_SCH_INGRESS=mCONFIG_NET_SCH_PLUG=m## Classification#CONFIG_NET_CLS=yCONFIG_NET_CLS_BASIC=mCONFIG_NET_CLS_TCINDEX=mCONFIG_NET_CLS_ROUTE4=mCONFIG_NET_CLS_FW=mCONFIG_NET_CLS_U32=m# CONFIG_CLS_U32_PERF is not setCONFIG_CLS_U32_MARK=yCONFIG_NET_CLS_RSVP=mCONFIG_NET_CLS_RSVP6=mCONFIG_NET_CLS_FLOW=mCONFIG_NET_CLS_CGROUP=m# CONFIG_NET_CLS_BPF is not setCONFIG_NET_EMATCH=yCONFIG_NET_EMATCH_STACK=32CONFIG_NET_EMATCH_CMP=mCONFIG_NET_EMATCH_NBYTE=mCONFIG_NET_EMATCH_U32=mCONFIG_NET_EMATCH_META=mCONFIG_NET_EMATCH_TEXT=m# CONFIG_NET_EMATCH_CANID is not setCONFIG_NET_EMATCH_IPSET=mCONFIG_NET_CLS_ACT=yCONFIG_NET_ACT_POLICE=mCONFIG_NET_ACT_GACT=mCONFIG_GACT_PROB=yCONFIG_NET_ACT_MIRRED=mCONFIG_NET_ACT_IPT=mCONFIG_NET_ACT_NAT=mCONFIG_NET_ACT_PEDIT=mCONFIG_NET_ACT_SIMP=mCONFIG_NET_ACT_SKBEDIT=mCONFIG_NET_ACT_CSUM=m# CONFIG_NET_ACT_VLAN is not set# CONFIG_NET_ACT_BPF is not set# CONFIG_NET_ACT_CONNMARK is not set# CONFIG_NET_CLS_IND is not setCONFIG_NET_SCH_FIFO=y# CONFIG_DCB is not setCONFIG_DNS_RESOLVER=yCONFIG_BATMAN_ADV=mCONFIG_BATMAN_ADV_BLA=y# CONFIG_BATMAN_ADV_DAT is not set# CONFIG_BATMAN_ADV_NC is not set# CONFIG_BATMAN_ADV_MCAST is not set# CONFIG_BATMAN_ADV_DEBUG is not setCONFIG_OPENVSWITCH=mCONFIG_OPENVSWITCH_GRE=mCONFIG_OPENVSWITCH_VXLAN=m# CONFIG_VSOCKETS is not set# CONFIG_NETLINK_MMAP is not set# CONFIG_NETLINK_DIAG is not setCONFIG_MPLS=yCONFIG_NET_MPLS_GSO=m# CONFIG_MPLS_ROUTING is not set# CONFIG_HSR is not set# CONFIG_NET_SWITCHDEV is not setCONFIG_RPS=yCONFIG_RFS_ACCEL=yCONFIG_XPS=yCONFIG_CGROUP_NET_PRIO=yCONFIG_CGROUP_NET_CLASSID=yCONFIG_NET_RX_BUSY_POLL=yCONFIG_BQL=y# CONFIG_BPF_JIT is not setCONFIG_NET_FLOW_LIMIT=y## Network testing#CONFIG_NET_PKTGEN=m# CONFIG_NET_TCPPROBE is not set# CONFIG_NET_DROP_MONITOR is not setCONFIG_HAMRADIO=y## Packet Radio protocols#CONFIG_AX25=mCONFIG_AX25_DAMA_SLAVE=yCONFIG_NETROM=mCONFIG_ROSE=m## AX.25 network device drivers#CONFIG_MKISS=mCONFIG_6PACK=mCONFIG_BPQETHER=mCONFIG_BAYCOM_SER_FDX=mCONFIG_BAYCOM_SER_HDX=m# CONFIG_BAYCOM_PAR is not set# CONFIG_BAYCOM_EPP is not setCONFIG_YAM=mCONFIG_CAN=mCONFIG_CAN_RAW=mCONFIG_CAN_BCM=mCONFIG_CAN_GW=m## CAN Device Drivers#CONFIG_CAN_VCAN=mCONFIG_CAN_SLCAN=mCONFIG_CAN_DEV=mCONFIG_CAN_CALC_BITTIMING=y# CONFIG_CAN_LEDS is not setCONFIG_CAN_TI_HECC=mCONFIG_CAN_FLEXCAN=mCONFIG_CAN_GRCAN=mCONFIG_CAN_RCAR=mCONFIG_CAN_XILINXCAN=mCONFIG_CAN_SJA1000=m# CONFIG_CAN_SJA1000_ISA is not set# CONFIG_CAN_SJA1000_PLATFORM is not set# CONFIG_CAN_EMS_PCI is not set# CONFIG_CAN_PEAK_PCI is not set# CONFIG_CAN_KVASER_PCI is not set# CONFIG_CAN_PLX_PCI is not setCONFIG_CAN_C_CAN=m# CONFIG_CAN_C_CAN_PLATFORM is not set# CONFIG_CAN_C_CAN_PCI is not setCONFIG_CAN_M_CAN=mCONFIG_CAN_CC770=m# CONFIG_CAN_CC770_ISA is not set# CONFIG_CAN_CC770_PLATFORM is not set## CAN SPI interfaces#CONFIG_CAN_MCP251X=m## CAN USB interfaces#CONFIG_CAN_EMS_USB=mCONFIG_CAN_ESD_USB2=mCONFIG_CAN_GS_USB=mCONFIG_CAN_KVASER_USB=mCONFIG_CAN_PEAK_USB=mCONFIG_CAN_8DEV_USB=mCONFIG_CAN_SOFTING=m# CONFIG_CAN_DEBUG_DEVICES is not setCONFIG_IRDA=m## IrDA protocols#CONFIG_IRLAN=mCONFIG_IRNET=mCONFIG_IRCOMM=mCONFIG_IRDA_ULTRA=y## IrDA options#CONFIG_IRDA_CACHE_LAST_LSAP=yCONFIG_IRDA_FAST_RR=y# CONFIG_IRDA_DEBUG is not set## Infrared-port device drivers### SIR device drivers#CONFIG_IRTTY_SIR=m## Dongle support## CONFIG_DONGLE is not setCONFIG_KINGSUN_DONGLE=mCONFIG_KSDAZZLE_DONGLE=mCONFIG_KS959_DONGLE=m## FIR device drivers#CONFIG_USB_IRDA=mCONFIG_SIGMATEL_FIR=m# CONFIG_VLSI_FIR is not setCONFIG_MCS_FIR=mCONFIG_SH_IRDA=mCONFIG_BT=mCONFIG_BT_BREDR=yCONFIG_BT_RFCOMM=mCONFIG_BT_RFCOMM_TTY=yCONFIG_BT_BNEP=mCONFIG_BT_BNEP_MC_FILTER=yCONFIG_BT_BNEP_PROTO_FILTER=y# CONFIG_BT_CMTP is not setCONFIG_BT_HIDP=mCONFIG_BT_LE=yCONFIG_BT_6LOWPAN=m# CONFIG_BT_SELFTEST is not setCONFIG_BT_DEBUGFS=y## Bluetooth device drivers#CONFIG_BT_INTEL=mCONFIG_BT_BCM=mCONFIG_BT_HCIBTUSB=mCONFIG_BT_HCIBTUSB_BCM=yCONFIG_BT_HCIBTSDIO=mCONFIG_BT_HCIUART=mCONFIG_BT_HCIUART_H4=yCONFIG_BT_HCIUART_BCSP=yCONFIG_BT_HCIUART_ATH3K=yCONFIG_BT_HCIUART_LL=yCONFIG_BT_HCIUART_3WIRE=y# CONFIG_BT_HCIUART_INTEL is not set# CONFIG_BT_HCIUART_BCM is not setCONFIG_BT_HCIBCM203X=mCONFIG_BT_HCIBPA10X=mCONFIG_BT_HCIBFUSB=mCONFIG_BT_HCIVHCI=mCONFIG_BT_MRVL=mCONFIG_BT_MRVL_SDIO=mCONFIG_BT_ATH3K=mCONFIG_BT_WILINK=m# CONFIG_AF_RXRPC is not setCONFIG_FIB_RULES=yCONFIG_WIRELESS=yCONFIG_WIRELESS_EXT=yCONFIG_WEXT_CORE=yCONFIG_WEXT_PROC=yCONFIG_WEXT_SPY=yCONFIG_WEXT_PRIV=yCONFIG_CFG80211=m# CONFIG_NL80211_TESTMODE is not setCONFIG_CFG80211_DEVELOPER_WARNINGS=y# CONFIG_CFG80211_REG_DEBUG is not set# CONFIG_CFG80211_CERTIFICATION_ONUS is not setCONFIG_CFG80211_DEFAULT_PS=yCONFIG_CFG80211_DEBUGFS=y# CONFIG_CFG80211_INTERNAL_REGDB is not setCONFIG_CFG80211_WEXT=yCONFIG_LIB80211=mCONFIG_LIB80211_CRYPT_WEP=mCONFIG_LIB80211_CRYPT_CCMP=mCONFIG_LIB80211_CRYPT_TKIP=m# CONFIG_LIB80211_DEBUG is not setCONFIG_MAC80211=mCONFIG_MAC80211_HAS_RC=yCONFIG_MAC80211_RC_MINSTREL=yCONFIG_MAC80211_RC_MINSTREL_HT=y# CONFIG_MAC80211_RC_MINSTREL_VHT is not setCONFIG_MAC80211_RC_DEFAULT_MINSTREL=yCONFIG_MAC80211_RC_DEFAULT="minstrel_ht"CONFIG_MAC80211_MESH=yCONFIG_MAC80211_LEDS=y# CONFIG_MAC80211_DEBUGFS is not set# CONFIG_MAC80211_MESSAGE_TRACING is not set# CONFIG_MAC80211_DEBUG_MENU is not setCONFIG_WIMAX=mCONFIG_WIMAX_DEBUG_LEVEL=8CONFIG_RFKILL=mCONFIG_RFKILL_LEDS=yCONFIG_RFKILL_INPUT=yCONFIG_RFKILL_REGULATOR=mCONFIG_RFKILL_GPIO=m# CONFIG_NET_9P is not set# CONFIG_CAIF is not set# CONFIG_CEPH_LIB is not setCONFIG_NFC=mCONFIG_NFC_DIGITAL=mCONFIG_NFC_NCI=mCONFIG_NFC_NCI_SPI=yCONFIG_NFC_HCI=mCONFIG_NFC_SHDLC=y## Near Field Communication (NFC) devices#CONFIG_NFC_PN533=m# CONFIG_NFC_WILINK is not setCONFIG_NFC_TRF7970A=mCONFIG_NFC_SIM=mCONFIG_NFC_PORT100=mCONFIG_NFC_PN544=mCONFIG_NFC_PN544_I2C=mCONFIG_NFC_MICROREAD=mCONFIG_NFC_MICROREAD_I2C=mCONFIG_NFC_MRVL=mCONFIG_NFC_MRVL_USB=mCONFIG_NFC_ST21NFCA=mCONFIG_NFC_ST21NFCA_I2C=mCONFIG_NFC_ST21NFCB=mCONFIG_NFC_ST21NFCB_I2C=m# CONFIG_NFC_NXP_NCI is not setCONFIG_HAVE_BPF_JIT=y## Device Drivers#CONFIG_ARM_AMBA=y# CONFIG_TEGRA_AHB is not set## Generic Driver Options#CONFIG_UEVENT_HELPER=yCONFIG_UEVENT_HELPER_PATH=""CONFIG_DEVTMPFS=yCONFIG_DEVTMPFS_MOUNT=yCONFIG_STANDALONE=yCONFIG_PREVENT_FIRMWARE_BUILD=yCONFIG_FW_LOADER=yCONFIG_FIRMWARE_IN_KERNEL=yCONFIG_EXTRA_FIRMWARE=""# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not setCONFIG_WANT_DEV_COREDUMP=yCONFIG_ALLOW_DEV_COREDUMP=yCONFIG_DEV_COREDUMP=y# CONFIG_DEBUG_DRIVER is not set# CONFIG_DEBUG_DEVRES is not setCONFIG_SYS_HYPERVISOR=y# CONFIG_GENERIC_CPU_DEVICES is not setCONFIG_SOC_BUS=yCONFIG_REGMAP=yCONFIG_REGMAP_I2C=yCONFIG_REGMAP_SPI=yCONFIG_REGMAP_MMIO=yCONFIG_REGMAP_IRQ=yCONFIG_DMA_SHARED_BUFFER=y# CONFIG_FENCE_TRACE is not setCONFIG_DMA_CMA=y## Default contiguous memory area size:#CONFIG_CMA_SIZE_MBYTES=64CONFIG_CMA_SIZE_SEL_MBYTES=y# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set# CONFIG_CMA_SIZE_SEL_MIN is not set# CONFIG_CMA_SIZE_SEL_MAX is not setCONFIG_CMA_ALIGNMENT=8## Bus devices#CONFIG_ARM_CCI=yCONFIG_ARM_CCI400_COMMON=yCONFIG_ARM_CCI400_PMU=y# CONFIG_ARM_CCN is not setCONFIG_BRCMSTB_GISB_ARB=y# CONFIG_IMX_WEIM is not setCONFIG_MVEBU_MBUS=yCONFIG_OMAP_INTERCONNECT=yCONFIG_OMAP_OCP2SCP=y# CONFIG_SIMPLE_PM_BUS is not setCONFIG_VEXPRESS_CONFIG=yCONFIG_CONNECTOR=yCONFIG_PROC_EVENTS=yCONFIG_MTD=y# CONFIG_MTD_TESTS is not set# CONFIG_MTD_REDBOOT_PARTS is not setCONFIG_MTD_CMDLINE_PARTS=y# CONFIG_MTD_AFS_PARTS is not setCONFIG_MTD_OF_PARTS=m# CONFIG_MTD_AR7_PARTS is not set# CONFIG_MTD_BCM47XX_PARTS is not set## User Modules And Translation Layers#CONFIG_MTD_BLKDEVS=yCONFIG_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# CONFIG_MTD_SWAP is not set# CONFIG_MTD_PARTITIONED_MASTER is not set## RAM/ROM/Flash chip drivers## CONFIG_MTD_CFI is not set# CONFIG_MTD_JEDECPROBE is not setCONFIG_MTD_MAP_BANK_WIDTH_1=yCONFIG_MTD_MAP_BANK_WIDTH_2=yCONFIG_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 setCONFIG_MTD_CFI_I1=yCONFIG_MTD_CFI_I2=y# CONFIG_MTD_CFI_I4 is not set# CONFIG_MTD_CFI_I8 is not set# CONFIG_MTD_RAM is not set# 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_INTEL_VR_NOR is not set# CONFIG_MTD_PLATRAM is not set## Self-contained MTD device drivers## CONFIG_MTD_PMC551 is not set# CONFIG_MTD_DATAFLASH is not setCONFIG_MTD_M25P80=yCONFIG_MTD_SPEAR_SMI=y# CONFIG_MTD_SST25L is not set# 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_ST_SPI_FSM is not setCONFIG_MTD_NAND_ECC=y# CONFIG_MTD_NAND_ECC_SMC is not setCONFIG_MTD_NAND=y# CONFIG_MTD_NAND_ECC_BCH is not set# CONFIG_MTD_SM_COMMON is not set# CONFIG_MTD_NAND_DENALI is not set# CONFIG_MTD_NAND_GPIO is not set# CONFIG_MTD_NAND_OMAP2 is not set# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not setCONFIG_MTD_NAND_IDS=y# CONFIG_MTD_NAND_RICOH is not set# CONFIG_MTD_NAND_DISKONCHIP is not set# CONFIG_MTD_NAND_DOCG4 is not set# CONFIG_MTD_NAND_CAFE is not set# CONFIG_MTD_NAND_PXA3xx is not set# CONFIG_MTD_NAND_NANDSIM is not set# CONFIG_MTD_NAND_GPMI_NAND is not set# CONFIG_MTD_NAND_PLATFORM is not set# CONFIG_MTD_NAND_ORION is not set# CONFIG_MTD_NAND_MXC is not set# CONFIG_MTD_NAND_SH_FLCTL is not set# CONFIG_MTD_NAND_FSMC is not set# CONFIG_MTD_NAND_SUNXI is not set# CONFIG_MTD_NAND_HISI504 is not set# CONFIG_MTD_ONENAND is not set## LPDDR & LPDDR2 PCM memory drivers## CONFIG_MTD_LPDDR is not set# CONFIG_MTD_LPDDR2_NVM is not setCONFIG_MTD_SPI_NOR=yCONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y# CONFIG_SPI_FSL_QUADSPI is not setCONFIG_MTD_UBI=yCONFIG_MTD_UBI_WL_THRESHOLD=4096CONFIG_MTD_UBI_BEB_LIMIT=20# CONFIG_MTD_UBI_FASTMAP is not set# CONFIG_MTD_UBI_GLUEBI is not set# CONFIG_MTD_UBI_BLOCK is not setCONFIG_DTC=yCONFIG_OF=y## Device Tree and Open Firmware support## CONFIG_OF_UNITTEST is not setCONFIG_OF_FLATTREE=yCONFIG_OF_EARLY_FLATTREE=yCONFIG_OF_ADDRESS=yCONFIG_OF_ADDRESS_PCI=yCONFIG_OF_IRQ=yCONFIG_OF_NET=yCONFIG_OF_MDIO=yCONFIG_OF_PCI=yCONFIG_OF_PCI_IRQ=yCONFIG_OF_MTD=yCONFIG_OF_RESERVED_MEM=y# CONFIG_OF_OVERLAY is not setCONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=yCONFIG_PARPORT=m# CONFIG_PARPORT_PC is not set# CONFIG_PARPORT_GSC is not set# CONFIG_PARPORT_AX88796 is not set# CONFIG_PARPORT_1284 is not setCONFIG_PARPORT_NOT_PC=yCONFIG_BLK_DEV=y# CONFIG_BLK_DEV_NULL_BLK is not set# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set# CONFIG_ZRAM is not set# CONFIG_BLK_CPQ_CISS_DA is not set# CONFIG_BLK_DEV_DAC960 is not set# CONFIG_BLK_DEV_UMEM is not set# CONFIG_BLK_DEV_COW_COMMON is not setCONFIG_BLK_DEV_LOOP=yCONFIG_BLK_DEV_LOOP_MIN_COUNT=8CONFIG_BLK_DEV_CRYPTOLOOP=mCONFIG_BLK_DEV_DRBD=m# CONFIG_DRBD_FAULT_INJECTION is not setCONFIG_BLK_DEV_NBD=m# CONFIG_BLK_DEV_NVME is not set# CONFIG_BLK_DEV_OSD is not set# CONFIG_BLK_DEV_SX8 is not setCONFIG_BLK_DEV_RAM=yCONFIG_BLK_DEV_RAM_COUNT=16CONFIG_BLK_DEV_RAM_SIZE=4096# CONFIG_BLK_DEV_PMEM is not set# CONFIG_CDROM_PKTCDVD is not setCONFIG_ATA_OVER_ETH=m# CONFIG_MG_DISK is not setCONFIG_XEN_BLKDEV_FRONTEND=y# CONFIG_XEN_BLKDEV_BACKEND is not set# CONFIG_VIRTIO_BLK is not set# CONFIG_BLK_DEV_RBD is not set# CONFIG_BLK_DEV_RSXX is not set## Misc devices## CONFIG_SENSORS_LIS3LV02D is not setCONFIG_AD525X_DPOT=yCONFIG_AD525X_DPOT_I2C=y# CONFIG_AD525X_DPOT_SPI is not set# CONFIG_DUMMY_IRQ is not set# CONFIG_PHANTOM is not set# CONFIG_SGI_IOC4 is not set# CONFIG_TIFM_CORE is not setCONFIG_ICS932S401=y# CONFIG_ENCLOSURE_SERVICES is not set# CONFIG_HP_ILO is not setCONFIG_APDS9802ALS=yCONFIG_ISL29003=y# CONFIG_ISL29020 is not set# CONFIG_SENSORS_TSL2550 is not set# CONFIG_SENSORS_BH1780 is not set# CONFIG_SENSORS_BH1770 is not set# CONFIG_SENSORS_APDS990X is not set# CONFIG_HMC6352 is not set# CONFIG_DS1682 is not set# CONFIG_TI_DAC7512 is not set# CONFIG_ARM_CHARLCD is not set# CONFIG_BMP085_I2C is not set# CONFIG_BMP085_SPI is not set# CONFIG_USB_SWITCH_FSA9480 is not set# CONFIG_LATTICE_ECP3_CONFIG is not setCONFIG_SRAM=yCONFIG_VEXPRESS_SYSCFG=y# CONFIG_C2PORT is not set## EEPROM support#CONFIG_EEPROM_AT24=m# CONFIG_EEPROM_AT25 is not set# CONFIG_EEPROM_LEGACY is not set# CONFIG_EEPROM_MAX6875 is not setCONFIG_EEPROM_93CX6=m# CONFIG_EEPROM_93XX46 is not setCONFIG_EEPROM_SUNXI_SID=y# CONFIG_CB710_CORE is not set## Texas Instruments shared transport line discipline#CONFIG_TI_ST=m# CONFIG_SENSORS_LIS3_SPI is not set# CONFIG_SENSORS_LIS3_I2C is not set## Altera FPGA firmware download module## CONFIG_ALTERA_STAPL is not set## Intel MIC Bus Driver### Intel MIC Host Driver### Intel MIC Card Driver## CONFIG_ECHO is not set# CONFIG_CXL_BASE is not setCONFIG_HAVE_IDE=y# CONFIG_IDE is not set## SCSI device support#CONFIG_SCSI_MOD=y# CONFIG_RAID_ATTRS is not setCONFIG_SCSI=yCONFIG_SCSI_DMA=y# CONFIG_SCSI_NETLINK is not set# CONFIG_SCSI_MQ_DEFAULT is not setCONFIG_SCSI_PROC_FS=y## SCSI support type (disk, tape, CD-ROM)#CONFIG_BLK_DEV_SD=yCONFIG_CHR_DEV_ST=mCONFIG_CHR_DEV_OSST=mCONFIG_BLK_DEV_SR=y# CONFIG_BLK_DEV_SR_VENDOR is not setCONFIG_CHR_DEV_SG=yCONFIG_CHR_DEV_SCH=m# CONFIG_SCSI_CONSTANTS is not set# CONFIG_SCSI_LOGGING is not setCONFIG_SCSI_SCAN_ASYNC=y## SCSI Transports## CONFIG_SCSI_SPI_ATTRS is not set# CONFIG_SCSI_FC_ATTRS is not setCONFIG_SCSI_ISCSI_ATTRS=y# CONFIG_SCSI_SAS_ATTRS is not set# CONFIG_SCSI_SAS_LIBSAS is not set# CONFIG_SCSI_SRP_ATTRS is not setCONFIG_SCSI_LOWLEVEL=yCONFIG_ISCSI_TCP=yCONFIG_ISCSI_BOOT_SYSFS=y# CONFIG_SCSI_CXGB3_ISCSI is not set# CONFIG_SCSI_CXGB4_ISCSI is not set# CONFIG_SCSI_BNX2_ISCSI is not set# CONFIG_BE2ISCSI is not set# CONFIG_BLK_DEV_3W_XXXX_RAID is not set# CONFIG_SCSI_HPSA is not set# CONFIG_SCSI_3W_9XXX is not set# CONFIG_SCSI_3W_SAS is not set# CONFIG_SCSI_ACARD is not set# CONFIG_SCSI_AACRAID is not set# CONFIG_SCSI_AIC7XXX is not set# CONFIG_SCSI_AIC79XX is not set# CONFIG_SCSI_AIC94XX is not set# CONFIG_SCSI_MVSAS is not set# CONFIG_SCSI_MVUMI is not set# CONFIG_SCSI_ARCMSR is not set# CONFIG_SCSI_ESAS2R is not set# CONFIG_MEGARAID_NEWGEN is not set# CONFIG_MEGARAID_LEGACY is not set# CONFIG_MEGARAID_SAS is not set# CONFIG_SCSI_MPT2SAS is not set# CONFIG_SCSI_MPT3SAS is not setCONFIG_SCSI_UFSHCD=m# CONFIG_SCSI_UFSHCD_PCI is not set# CONFIG_SCSI_UFSHCD_PLATFORM is not set# CONFIG_SCSI_HPTIOP is not setCONFIG_XEN_SCSI_FRONTEND=m# CONFIG_SCSI_DMX3191D is not set# CONFIG_SCSI_FUTURE_DOMAIN is not set# CONFIG_SCSI_IPS is not set# CONFIG_SCSI_INITIO is not set# CONFIG_SCSI_INIA100 is not set# CONFIG_SCSI_STEX is not set# CONFIG_SCSI_SYM53C8XX_2 is not set# CONFIG_SCSI_IPR is not set# CONFIG_SCSI_QLOGIC_1280 is not set# CONFIG_SCSI_QLA_ISCSI is not set# CONFIG_SCSI_DC395x is not set# CONFIG_SCSI_AM53C974 is not set# CONFIG_SCSI_NSP32 is not set# CONFIG_SCSI_WD719X is not set# CONFIG_SCSI_DEBUG is not set# CONFIG_SCSI_PMCRAID is not set# CONFIG_SCSI_PM8001 is not setCONFIG_SCSI_VIRTIO=mCONFIG_SCSI_DH=mCONFIG_SCSI_DH_RDAC=mCONFIG_SCSI_DH_HP_SW=mCONFIG_SCSI_DH_EMC=mCONFIG_SCSI_DH_ALUA=mCONFIG_SCSI_OSD_INITIATOR=mCONFIG_SCSI_OSD_ULD=mCONFIG_SCSI_OSD_DPRINT_SENSE=1# CONFIG_SCSI_OSD_DEBUG is not setCONFIG_HAVE_PATA_PLATFORM=yCONFIG_ATA=y# CONFIG_ATA_NONSTANDARD is not setCONFIG_ATA_VERBOSE_ERROR=yCONFIG_SATA_PMP=y## Controllers with non-SFF native interface#CONFIG_SATA_AHCI=yCONFIG_SATA_AHCI_PLATFORM=yCONFIG_AHCI_ST=y# CONFIG_AHCI_IMX is not set# CONFIG_AHCI_MVEBU is not setCONFIG_AHCI_SUNXI=yCONFIG_AHCI_TEGRA=y# CONFIG_SATA_INIC162X is not set# CONFIG_SATA_ACARD_AHCI is not set# CONFIG_SATA_SIL24 is not setCONFIG_ATA_SFF=y## SFF controllers with custom DMA interface## CONFIG_PDC_ADMA is not set# CONFIG_SATA_QSTOR is not set# CONFIG_SATA_SX4 is not setCONFIG_ATA_BMDMA=y## SATA SFF controllers with BMDMA## CONFIG_ATA_PIIX is not setCONFIG_SATA_HIGHBANK=yCONFIG_SATA_MV=y# CONFIG_SATA_NV is not set# CONFIG_SATA_PROMISE is not set# CONFIG_SATA_RCAR is not set# CONFIG_SATA_SIL is not set# CONFIG_SATA_SIS is not set# CONFIG_SATA_SVW is not set# CONFIG_SATA_ULI is not set# CONFIG_SATA_VIA is not set# CONFIG_SATA_VITESSE is not set## PATA SFF controllers with BMDMA## CONFIG_PATA_ALI is not set# CONFIG_PATA_AMD is not set# CONFIG_PATA_ARASAN_CF is not set# CONFIG_PATA_ARTOP is not set# CONFIG_PATA_ATIIXP is not set# CONFIG_PATA_ATP867X is not set# CONFIG_PATA_CMD64X is not set# CONFIG_PATA_CYPRESS is not set# CONFIG_PATA_EFAR is not set# CONFIG_PATA_HPT366 is not set# CONFIG_PATA_HPT37X is not set# CONFIG_PATA_HPT3X2N is not set# CONFIG_PATA_HPT3X3 is not set# CONFIG_PATA_IMX is not set# CONFIG_PATA_IT8213 is not set# CONFIG_PATA_IT821X is not set# CONFIG_PATA_JMICRON is not set# CONFIG_PATA_MARVELL is not set# CONFIG_PATA_NETCELL is not set# CONFIG_PATA_NINJA32 is not set# CONFIG_PATA_NS87415 is not set# CONFIG_PATA_OLDPIIX is not set# CONFIG_PATA_OPTIDMA is not set# CONFIG_PATA_PDC2027X is not set# CONFIG_PATA_PDC_OLD is not set# CONFIG_PATA_RADISYS is not set# CONFIG_PATA_RDC is not set# CONFIG_PATA_SCH is not set# CONFIG_PATA_SERVERWORKS is not set# CONFIG_PATA_SIL680 is not set# CONFIG_PATA_SIS is not set# CONFIG_PATA_TOSHIBA is not set# CONFIG_PATA_TRIFLEX is not set# CONFIG_PATA_VIA is not set# CONFIG_PATA_WINBOND is not set## PIO-only SFF controllers## CONFIG_PATA_CMD640_PCI is not set# CONFIG_PATA_MPIIX is not set# CONFIG_PATA_NS87410 is not set# CONFIG_PATA_OPTI is not set# CONFIG_PATA_PLATFORM is not set# CONFIG_PATA_RZ1000 is not set## Generic fallback / legacy drivers## CONFIG_ATA_GENERIC is not set# CONFIG_PATA_LEGACY is not setCONFIG_MD=yCONFIG_BLK_DEV_MD=mCONFIG_MD_LINEAR=mCONFIG_MD_RAID0=mCONFIG_MD_RAID1=mCONFIG_MD_RAID10=mCONFIG_MD_RAID456=m# CONFIG_MD_MULTIPATH is not set# CONFIG_MD_FAULTY is not set# CONFIG_MD_CLUSTER is not set# CONFIG_BCACHE is not setCONFIG_BLK_DEV_DM_BUILTIN=yCONFIG_BLK_DEV_DM=m# CONFIG_DM_MQ_DEFAULT is not set# CONFIG_DM_DEBUG is not setCONFIG_DM_BUFIO=mCONFIG_DM_BIO_PRISON=mCONFIG_DM_PERSISTENT_DATA=m# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not setCONFIG_DM_CRYPT=mCONFIG_DM_SNAPSHOT=mCONFIG_DM_THIN_PROVISIONING=m# CONFIG_DM_CACHE is not set# CONFIG_DM_ERA is not setCONFIG_DM_MIRROR=mCONFIG_DM_LOG_USERSPACE=mCONFIG_DM_RAID=mCONFIG_DM_ZERO=mCONFIG_DM_MULTIPATH=mCONFIG_DM_MULTIPATH_QL=mCONFIG_DM_MULTIPATH_ST=mCONFIG_DM_DELAY=mCONFIG_DM_UEVENT=y# CONFIG_DM_FLAKEY is not setCONFIG_DM_VERITY=m# CONFIG_DM_SWITCH is not set# CONFIG_DM_LOG_WRITES is not set# CONFIG_TARGET_CORE is not set# CONFIG_FUSION is not set## IEEE 1394 (FireWire) support## CONFIG_FIREWIRE is not set# CONFIG_FIREWIRE_NOSY is not setCONFIG_NETDEVICES=yCONFIG_MII=yCONFIG_NET_CORE=yCONFIG_BONDING=mCONFIG_DUMMY=mCONFIG_EQUALIZER=m# CONFIG_NET_FC is not set# CONFIG_IFB is not setCONFIG_NET_TEAM=m# CONFIG_NET_TEAM_MODE_BROADCAST is not set# CONFIG_NET_TEAM_MODE_ROUNDROBIN is not set# CONFIG_NET_TEAM_MODE_RANDOM is not set# CONFIG_NET_TEAM_MODE_ACTIVEBACKUP is not set# CONFIG_NET_TEAM_MODE_LOADBALANCE is not setCONFIG_MACVLAN=yCONFIG_MACVTAP=mCONFIG_IPVLAN=mCONFIG_VXLAN=m# CONFIG_NETCONSOLE is not set# CONFIG_NETPOLL is not set# CONFIG_NET_POLL_CONTROLLER is not setCONFIG_TUN=mCONFIG_VETH=mCONFIG_VIRTIO_NET=mCONFIG_NLMON=m# CONFIG_ARCNET is not setCONFIG_ATM_DRIVERS=y# CONFIG_ATM_DUMMY is not set# CONFIG_ATM_TCP is not set# CONFIG_ATM_LANAI is not set# CONFIG_ATM_ENI is not set# CONFIG_ATM_NICSTAR is not set# CONFIG_ATM_IDT77252 is not set# CONFIG_ATM_IA is not set# CONFIG_ATM_FORE200E is not set# CONFIG_ATM_HE is not set# CONFIG_ATM_SOLOS is not set## CAIF transport drivers### Distributed Switch Architecture drivers## CONFIG_NET_DSA_MV88E6XXX is not set# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not setCONFIG_ETHERNET=yCONFIG_NET_VENDOR_3COM=y# CONFIG_TYPHOON is not setCONFIG_NET_VENDOR_ADAPTEC=y# CONFIG_ADAPTEC_STARFIRE is not setCONFIG_NET_VENDOR_AGERE=y# CONFIG_ET131X is not setCONFIG_NET_VENDOR_ALLWINNER=yCONFIG_SUN4I_EMAC=yCONFIG_NET_VENDOR_ALTEON=y# CONFIG_ACENIC is not set# CONFIG_ALTERA_TSE is not setCONFIG_NET_VENDOR_AMD=y# CONFIG_AMD8111_ETH is not set# CONFIG_PCNET32 is not setCONFIG_NET_VENDOR_ARC=y# CONFIG_ARC_EMAC is not set# CONFIG_EMAC_ROCKCHIP is not setCONFIG_NET_VENDOR_ATHEROS=y# CONFIG_ATL2 is not set# CONFIG_ATL1 is not set# CONFIG_ATL1E is not set# CONFIG_ATL1C is not set# CONFIG_ALX is not setCONFIG_NET_CADENCE=y# CONFIG_MACB is not setCONFIG_NET_VENDOR_BROADCOM=y# CONFIG_B44 is not set# CONFIG_BCMGENET is not set# CONFIG_BNX2 is not set# CONFIG_CNIC is not set# CONFIG_TIGON3 is not set# CONFIG_BNX2X is not set# CONFIG_SYSTEMPORT is not setCONFIG_NET_VENDOR_BROCADE=y# CONFIG_BNA is not setCONFIG_NET_CALXEDA_XGMAC=yCONFIG_NET_VENDOR_CHELSIO=y# CONFIG_CHELSIO_T1 is not set# CONFIG_CHELSIO_T3 is not set# CONFIG_CHELSIO_T4 is not set# CONFIG_CHELSIO_T4VF is not set# CONFIG_NET_VENDOR_CIRRUS is not setCONFIG_NET_VENDOR_CISCO=y# CONFIG_ENIC is not set# CONFIG_DM9000 is not set# CONFIG_DNET is not setCONFIG_NET_VENDOR_DEC=y# CONFIG_NET_TULIP is not setCONFIG_NET_VENDOR_DLINK=y# CONFIG_DL2K is not set# CONFIG_SUNDANCE is not setCONFIG_NET_VENDOR_EMULEX=y# CONFIG_BE2NET is not setCONFIG_NET_VENDOR_EXAR=y# CONFIG_S2IO is not set# CONFIG_VXGE is not set# CONFIG_NET_VENDOR_FARADAY is not setCONFIG_NET_VENDOR_FREESCALE=yCONFIG_FEC=y# CONFIG_FSL_PQ_MDIO is not set# CONFIG_FSL_XGMAC_MDIO is not setCONFIG_NET_VENDOR_HISILICON=yCONFIG_HIX5HD2_GMAC=y# CONFIG_HIP04_ETH is not setCONFIG_NET_VENDOR_HP=y# CONFIG_HP100 is not set# CONFIG_NET_VENDOR_INTEL is not set# CONFIG_IP1000 is not set# CONFIG_JME is not set# CONFIG_NET_VENDOR_MARVELL is not setCONFIG_NET_VENDOR_MELLANOX=y# CONFIG_MLX4_EN is not set# CONFIG_MLX4_CORE is not set# CONFIG_MLX5_CORE is not set# CONFIG_NET_VENDOR_MICREL is not set# CONFIG_NET_VENDOR_MICROCHIP is not setCONFIG_NET_VENDOR_MYRI=y# CONFIG_MYRI10GE is not set# CONFIG_FEALNX is not set# CONFIG_NET_VENDOR_NATSEMI is not setCONFIG_NET_VENDOR_NVIDIA=y# CONFIG_FORCEDETH is not setCONFIG_NET_VENDOR_OKI=y# CONFIG_ETHOC is not setCONFIG_NET_PACKET_ENGINE=y# CONFIG_HAMACHI is not set# CONFIG_YELLOWFIN is not setCONFIG_NET_VENDOR_QLOGIC=y# CONFIG_QLA3XXX is not set# CONFIG_QLCNIC is not set# CONFIG_QLGE is not set# CONFIG_NETXEN_NIC is not setCONFIG_NET_VENDOR_QUALCOMM=y# CONFIG_QCA7000 is not setCONFIG_NET_VENDOR_REALTEK=y# CONFIG_8139CP is not set# CONFIG_8139TOO is not setCONFIG_R8169=y# CONFIG_SH_ETH is not setCONFIG_NET_VENDOR_RDC=y# CONFIG_R6040 is not setCONFIG_NET_VENDOR_ROCKER=y# CONFIG_NET_VENDOR_SAMSUNG is not set# CONFIG_NET_VENDOR_SEEQ is not setCONFIG_NET_VENDOR_SILAN=y# CONFIG_SC92031 is not setCONFIG_NET_VENDOR_SIS=y# CONFIG_SIS900 is not set# CONFIG_SIS190 is not set# CONFIG_SFC is not set# CONFIG_NET_VENDOR_SMSC is not setCONFIG_NET_VENDOR_STMICRO=yCONFIG_STMMAC_ETH=yCONFIG_STMMAC_PLATFORM=y# CONFIG_STMMAC_PCI is not setCONFIG_NET_VENDOR_SUN=y# CONFIG_HAPPYMEAL is not set# CONFIG_SUNGEM is not set# CONFIG_CASSINI is not set# CONFIG_NIU is not setCONFIG_NET_VENDOR_TEHUTI=y# CONFIG_TEHUTI is not setCONFIG_NET_VENDOR_TI=y# CONFIG_TI_DAVINCI_EMAC is not setCONFIG_TI_DAVINCI_MDIO=yCONFIG_TI_DAVINCI_CPDMA=yCONFIG_TI_CPSW_PHY_SEL=yCONFIG_TI_CPSW_ALE=yCONFIG_TI_CPSW=y# CONFIG_TI_CPTS is not set# CONFIG_TLAN is not set# CONFIG_NET_VENDOR_VIA is not set# CONFIG_NET_VENDOR_WIZNET is not setCONFIG_NET_VENDOR_XILINX=yCONFIG_XILINX_EMACLITE=y# CONFIG_FDDI is not set# CONFIG_HIPPI is not setCONFIG_PHYLIB=yCONFIG_SWCONFIG=y# CONFIG_SWCONFIG_LEDS is not set## MII PHY device drivers#CONFIG_AT803X_PHY=y# CONFIG_AMD_PHY is not setCONFIG_MARVELL_PHY=y# CONFIG_DAVICOM_PHY is not set# CONFIG_QSEMI_PHY is not set# CONFIG_LXT_PHY is not set# CONFIG_CICADA_PHY is not set# CONFIG_VITESSE_PHY is not setCONFIG_SMSC_PHY=mCONFIG_BROADCOM_PHY=yCONFIG_BCM7XXX_PHY=mCONFIG_BCM87XX_PHY=mCONFIG_ICPLUS_PHY=yCONFIG_REALTEK_PHY=y# CONFIG_NATIONAL_PHY is not set# CONFIG_STE10XP is not set# CONFIG_LSI_ET1011C_PHY is not set# CONFIG_MICREL_PHY is not set# CONFIG_FIXED_PHY is not set# CONFIG_MDIO_BITBANG is not setCONFIG_MDIO_SUN4I=y# CONFIG_MDIO_BUS_MUX_GPIO is not set# CONFIG_MDIO_BUS_MUX_MMIOREG is not setCONFIG_MDIO_BCM_UNIMAC=mCONFIG_B53=yCONFIG_B53_SPI_DRIVER=yCONFIG_B53_PHY_DRIVER=y# CONFIG_B53_MMAP_DRIVER is not setCONFIG_B53_SRAB_DRIVER=yCONFIG_B53_PHY_FIXUP=yCONFIG_MICREL_KS8995MA=mCONFIG_PLIP=mCONFIG_PPP=mCONFIG_PPP_BSDCOMP=mCONFIG_PPP_DEFLATE=mCONFIG_PPP_FILTER=yCONFIG_PPP_MPPE=mCONFIG_PPP_MULTILINK=yCONFIG_PPPOATM=mCONFIG_PPPOE=mCONFIG_PPTP=mCONFIG_PPPOL2TP=mCONFIG_PPP_ASYNC=mCONFIG_PPP_SYNC_TTY=mCONFIG_SLIP=mCONFIG_SLHC=mCONFIG_SLIP_COMPRESSED=yCONFIG_SLIP_SMART=yCONFIG_SLIP_MODE_SLIP6=yCONFIG_USB_NET_DRIVERS=yCONFIG_USB_CATC=mCONFIG_USB_KAWETH=mCONFIG_USB_PEGASUS=mCONFIG_USB_RTL8150=mCONFIG_USB_RTL8152=mCONFIG_USB_USBNET=yCONFIG_USB_NET_AX8817X=mCONFIG_USB_NET_AX88179_178A=mCONFIG_USB_NET_CDCETHER=mCONFIG_USB_NET_CDC_EEM=mCONFIG_USB_NET_CDC_NCM=mCONFIG_USB_NET_HUAWEI_CDC_NCM=mCONFIG_USB_NET_CDC_MBIM=mCONFIG_USB_NET_DM9601=mCONFIG_USB_NET_SR9700=mCONFIG_USB_NET_SR9800=mCONFIG_USB_NET_SMSC75XX=mCONFIG_USB_NET_SMSC95XX=yCONFIG_USB_NET_GL620A=mCONFIG_USB_NET_NET1080=mCONFIG_USB_NET_PLUSB=mCONFIG_USB_NET_MCS7830=mCONFIG_USB_NET_RNDIS_HOST=mCONFIG_USB_NET_CDC_SUBSET=mCONFIG_USB_ALI_M5632=yCONFIG_USB_AN2720=yCONFIG_USB_BELKIN=yCONFIG_USB_ARMLINUX=yCONFIG_USB_EPSON2888=yCONFIG_USB_KC2190=yCONFIG_USB_NET_ZAURUS=mCONFIG_USB_NET_CX82310_ETH=mCONFIG_USB_NET_KALMIA=mCONFIG_USB_NET_QMI_WWAN=mCONFIG_USB_HSO=mCONFIG_USB_NET_INT51X1=mCONFIG_USB_IPHETH=mCONFIG_USB_SIERRA_NET=mCONFIG_USB_VL600=mCONFIG_WLAN=yCONFIG_LIBERTAS_THINFIRM=m# CONFIG_LIBERTAS_THINFIRM_DEBUG is not setCONFIG_LIBERTAS_THINFIRM_USB=m# CONFIG_ATMEL is not setCONFIG_AT76C50X_USB=m# CONFIG_PRISM54 is not setCONFIG_USB_ZD1201=mCONFIG_USB_NET_RNDIS_WLAN=m# CONFIG_RTL8180 is not setCONFIG_RTL8187=mCONFIG_RTL8187_LEDS=y# CONFIG_ADM8211 is not setCONFIG_MAC80211_HWSIM=m# CONFIG_MWL8K is not setCONFIG_ATH_COMMON=mCONFIG_ATH_CARDS=m# CONFIG_ATH_DEBUG is not set# CONFIG_ATH5K is not set# CONFIG_ATH5K_PCI is not setCONFIG_ATH9K_HW=mCONFIG_ATH9K_COMMON=mCONFIG_ATH9K_BTCOEX_SUPPORT=yCONFIG_ATH9K=mCONFIG_ATH9K_PCI=yCONFIG_ATH9K_AHB=y# CONFIG_ATH9K_DEBUGFS is not set# CONFIG_ATH9K_DYNACK is not set# CONFIG_ATH9K_WOW is not setCONFIG_ATH9K_RFKILL=yCONFIG_ATH9K_CHANNEL_CONTEXT=yCONFIG_ATH9K_PCOEM=yCONFIG_ATH9K_HTC=m# CONFIG_ATH9K_HTC_DEBUGFS is not setCONFIG_CARL9170=mCONFIG_CARL9170_LEDS=yCONFIG_CARL9170_WPC=yCONFIG_ATH6KL=mCONFIG_ATH6KL_SDIO=mCONFIG_ATH6KL_USB=m# CONFIG_ATH6KL_DEBUG is not set# CONFIG_ATH6KL_TRACING is not setCONFIG_AR5523=m# CONFIG_WIL6210 is not setCONFIG_ATH10K=m# CONFIG_ATH10K_PCI is not set# CONFIG_ATH10K_DEBUG is not set# CONFIG_ATH10K_DEBUGFS is not set# CONFIG_ATH10K_TRACING is not setCONFIG_WCN36XX=m# CONFIG_WCN36XX_DEBUGFS is not setCONFIG_B43=mCONFIG_B43_BCMA=yCONFIG_B43_SSB=yCONFIG_B43_BUSES_BCMA_AND_SSB=y# CONFIG_B43_BUSES_BCMA is not set# CONFIG_B43_BUSES_SSB is not setCONFIG_B43_PCI_AUTOSELECT=yCONFIG_B43_PCICORE_AUTOSELECT=yCONFIG_B43_SDIO=yCONFIG_B43_BCMA_PIO=yCONFIG_B43_PIO=yCONFIG_B43_PHY_G=yCONFIG_B43_PHY_N=yCONFIG_B43_PHY_LP=yCONFIG_B43_PHY_HT=yCONFIG_B43_LEDS=y# CONFIG_B43_DEBUG is not setCONFIG_B43LEGACY=mCONFIG_B43LEGACY_PCI_AUTOSELECT=yCONFIG_B43LEGACY_PCICORE_AUTOSELECT=yCONFIG_B43LEGACY_LEDS=yCONFIG_B43LEGACY_DEBUG=yCONFIG_B43LEGACY_DMA=yCONFIG_B43LEGACY_PIO=yCONFIG_B43LEGACY_DMA_AND_PIO_MODE=y# CONFIG_B43LEGACY_DMA_MODE is not set# CONFIG_B43LEGACY_PIO_MODE is not setCONFIG_BRCMUTIL=mCONFIG_BRCMSMAC=mCONFIG_BRCMFMAC=mCONFIG_BRCMFMAC_PROTO_BCDC=yCONFIG_BRCMFMAC_SDIO=yCONFIG_BRCMFMAC_USB=y# CONFIG_BRCMFMAC_PCIE is not set# CONFIG_BRCM_TRACING is not set# CONFIG_BRCMDBG is not setCONFIG_HOSTAP=mCONFIG_HOSTAP_FIRMWARE=yCONFIG_HOSTAP_FIRMWARE_NVRAM=y# CONFIG_HOSTAP_PLX is not set# CONFIG_HOSTAP_PCI is not set# CONFIG_IPW2100 is not set# CONFIG_IPW2200 is not set# CONFIG_IWLWIFI is not set# CONFIG_IWL4965 is not set# CONFIG_IWL3945 is not setCONFIG_LIBERTAS=mCONFIG_LIBERTAS_USB=mCONFIG_LIBERTAS_SDIO=mCONFIG_LIBERTAS_SPI=m# CONFIG_LIBERTAS_DEBUG is not setCONFIG_LIBERTAS_MESH=y# CONFIG_HERMES is not setCONFIG_P54_COMMON=mCONFIG_P54_USB=m# CONFIG_P54_PCI is not setCONFIG_P54_SPI=mCONFIG_P54_SPI_DEFAULT_EEPROM=yCONFIG_P54_LEDS=yCONFIG_RT2X00=m# CONFIG_RT2400PCI is not set# CONFIG_RT2500PCI is not set# CONFIG_RT61PCI is not set# CONFIG_RT2800PCI is not setCONFIG_RT2500USB=mCONFIG_RT73USB=mCONFIG_RT2800USB=mCONFIG_RT2800USB_RT33XX=yCONFIG_RT2800USB_RT35XX=yCONFIG_RT2800USB_RT3573=yCONFIG_RT2800USB_RT53XX=yCONFIG_RT2800USB_RT55XX=yCONFIG_RT2800USB_UNKNOWN=yCONFIG_RT2800_LIB=mCONFIG_RT2X00_LIB_USB=mCONFIG_RT2X00_LIB=mCONFIG_RT2X00_LIB_FIRMWARE=yCONFIG_RT2X00_LIB_CRYPTO=yCONFIG_RT2X00_LIB_LEDS=y# CONFIG_RT2X00_DEBUG is not setCONFIG_RTL_CARDS=m# CONFIG_RTL8192CE is not set# CONFIG_RTL8192SE is not set# CONFIG_RTL8192DE is not set# CONFIG_RTL8723AE is not set# CONFIG_RTL8723BE is not set# CONFIG_RTL8188EE is not set# CONFIG_RTL8192EE is not set# CONFIG_RTL8821AE is not setCONFIG_RTL8192CU=mCONFIG_RTLWIFI=mCONFIG_RTLWIFI_USB=mCONFIG_RTLWIFI_DEBUG=yCONFIG_RTL8192C_COMMON=mCONFIG_WL_TI=yCONFIG_WL1251=mCONFIG_WL1251_SPI=mCONFIG_WL1251_SDIO=mCONFIG_WL12XX=mCONFIG_WL18XX=mCONFIG_WLCORE=mCONFIG_WLCORE_SPI=mCONFIG_WLCORE_SDIO=mCONFIG_WILINK_PLATFORM_DATA=yCONFIG_ZD1211RW=m# CONFIG_ZD1211RW_DEBUG is not setCONFIG_MWIFIEX=mCONFIG_MWIFIEX_SDIO=m# CONFIG_MWIFIEX_PCIE is not setCONFIG_MWIFIEX_USB=mCONFIG_CW1200=mCONFIG_CW1200_WLAN_SDIO=mCONFIG_CW1200_WLAN_SPI=mCONFIG_RSI_91X=mCONFIG_RSI_DEBUGFS=yCONFIG_RSI_SDIO=mCONFIG_RSI_USB=m## WiMAX Wireless Broadband devices## CONFIG_WIMAX_I2400M_USB is not setCONFIG_WAN=yCONFIG_HDLC=mCONFIG_HDLC_RAW=mCONFIG_HDLC_RAW_ETH=mCONFIG_HDLC_CISCO=mCONFIG_HDLC_FR=mCONFIG_HDLC_PPP=m## X.25/LAPB support is disabled## CONFIG_PCI200SYN is not set# CONFIG_WANXL is not set# CONFIG_PC300TOO is not set# CONFIG_FARSYNC is not set# CONFIG_DSCC4 is not setCONFIG_DLCI=mCONFIG_DLCI_MAX=8CONFIG_XEN_NETDEV_FRONTEND=yCONFIG_XEN_NETDEV_BACKEND=m# CONFIG_VMXNET3 is not setCONFIG_ISDN=y# CONFIG_ISDN_I4L is not setCONFIG_ISDN_CAPI=mCONFIG_CAPI_TRACE=y# CONFIG_ISDN_CAPI_CAPI20 is not set## CAPI hardware drivers## CONFIG_CAPI_AVM is not set# CONFIG_CAPI_EICON is not setCONFIG_ISDN_DRV_GIGASET=mCONFIG_GIGASET_CAPI=y# CONFIG_GIGASET_DUMMYLL is not set# CONFIG_GIGASET_BASE is not set# CONFIG_GIGASET_M105 is not set# CONFIG_GIGASET_M101 is not set# CONFIG_GIGASET_DEBUG is not set# CONFIG_HYSDN is not setCONFIG_MISDN=m# CONFIG_MISDN_DSP is not set# CONFIG_MISDN_L1OIP is not set## mISDN hardware drivers## CONFIG_MISDN_HFCPCI is not set# CONFIG_MISDN_HFCMULTI is not set# CONFIG_MISDN_HFCUSB is not set# CONFIG_MISDN_AVMFRITZ is not set# CONFIG_MISDN_SPEEDFAX is not set# CONFIG_MISDN_INFINEON is not set# CONFIG_MISDN_W6692 is not set# CONFIG_MISDN_NETJET is not set## Input device support#CONFIG_INPUT=yCONFIG_INPUT_FF_MEMLESS=yCONFIG_INPUT_POLLDEV=yCONFIG_INPUT_SPARSEKMAP=yCONFIG_INPUT_MATRIXKMAP=y## Userland interfaces#CONFIG_INPUT_MOUSEDEV=yCONFIG_INPUT_MOUSEDEV_PSAUX=yCONFIG_INPUT_MOUSEDEV_SCREEN_X=1024CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768CONFIG_INPUT_JOYDEV=yCONFIG_INPUT_EVDEV=y# CONFIG_INPUT_EVBUG is not set## Input Device Drivers#CONFIG_INPUT_KEYBOARD=yCONFIG_KEYBOARD_ADP5588=mCONFIG_KEYBOARD_ADP5589=mCONFIG_KEYBOARD_ATKBD=yCONFIG_KEYBOARD_QT1070=mCONFIG_KEYBOARD_QT2160=mCONFIG_KEYBOARD_LKKBD=mCONFIG_KEYBOARD_GPIO=yCONFIG_KEYBOARD_GPIO_POLLED=mCONFIG_KEYBOARD_TCA6416=mCONFIG_KEYBOARD_TCA8418=mCONFIG_KEYBOARD_MATRIX=mCONFIG_KEYBOARD_LM8323=mCONFIG_KEYBOARD_LM8333=mCONFIG_KEYBOARD_MAX7359=mCONFIG_KEYBOARD_MCS=mCONFIG_KEYBOARD_MPR121=mCONFIG_KEYBOARD_IMX=mCONFIG_KEYBOARD_NEWTON=mCONFIG_KEYBOARD_NOMADIK=mCONFIG_KEYBOARD_TEGRA=yCONFIG_KEYBOARD_OPENCORES=mCONFIG_KEYBOARD_SAMSUNG=yCONFIG_KEYBOARD_STOWAWAY=mCONFIG_KEYBOARD_ST_KEYSCAN=yCONFIG_KEYBOARD_SUNKBD=mCONFIG_KEYBOARD_SH_KEYSC=mCONFIG_KEYBOARD_STMPE=mCONFIG_KEYBOARD_SUN4I_LRADC=mCONFIG_KEYBOARD_OMAP4=mCONFIG_KEYBOARD_SPEAR=yCONFIG_KEYBOARD_TWL4030=mCONFIG_KEYBOARD_XTKBD=mCONFIG_KEYBOARD_CROS_EC=yCONFIG_KEYBOARD_CAP11XX=mCONFIG_KEYBOARD_BCM=yCONFIG_INPUT_MOUSE=yCONFIG_MOUSE_PS2=yCONFIG_MOUSE_PS2_ALPS=yCONFIG_MOUSE_PS2_LOGIPS2PP=yCONFIG_MOUSE_PS2_SYNAPTICS=yCONFIG_MOUSE_PS2_CYPRESS=yCONFIG_MOUSE_PS2_TRACKPOINT=yCONFIG_MOUSE_PS2_ELANTECH=yCONFIG_MOUSE_PS2_SENTELIC=yCONFIG_MOUSE_PS2_TOUCHKIT=yCONFIG_MOUSE_PS2_FOCALTECH=yCONFIG_MOUSE_SERIAL=mCONFIG_MOUSE_APPLETOUCH=mCONFIG_MOUSE_BCM5974=mCONFIG_MOUSE_CYAPA=mCONFIG_MOUSE_ELAN_I2C=mCONFIG_MOUSE_ELAN_I2C_I2C=yCONFIG_MOUSE_ELAN_I2C_SMBUS=yCONFIG_MOUSE_VSXXXAA=mCONFIG_MOUSE_GPIO=mCONFIG_MOUSE_SYNAPTICS_I2C=mCONFIG_MOUSE_SYNAPTICS_USB=mCONFIG_INPUT_JOYSTICK=yCONFIG_JOYSTICK_ANALOG=mCONFIG_JOYSTICK_A3D=mCONFIG_JOYSTICK_ADI=mCONFIG_JOYSTICK_COBRA=mCONFIG_JOYSTICK_GF2K=mCONFIG_JOYSTICK_GRIP=mCONFIG_JOYSTICK_GRIP_MP=mCONFIG_JOYSTICK_GUILLEMOT=mCONFIG_JOYSTICK_INTERACT=mCONFIG_JOYSTICK_SIDEWINDER=mCONFIG_JOYSTICK_TMDC=mCONFIG_JOYSTICK_IFORCE=mCONFIG_JOYSTICK_IFORCE_USB=yCONFIG_JOYSTICK_IFORCE_232=yCONFIG_JOYSTICK_WARRIOR=mCONFIG_JOYSTICK_MAGELLAN=mCONFIG_JOYSTICK_SPACEORB=mCONFIG_JOYSTICK_SPACEBALL=mCONFIG_JOYSTICK_STINGER=mCONFIG_JOYSTICK_TWIDJOY=mCONFIG_JOYSTICK_ZHENHUA=mCONFIG_JOYSTICK_DB9=mCONFIG_JOYSTICK_GAMECON=mCONFIG_JOYSTICK_TURBOGRAFX=mCONFIG_JOYSTICK_AS5011=mCONFIG_JOYSTICK_JOYDUMP=mCONFIG_JOYSTICK_XPAD=mCONFIG_JOYSTICK_XPAD_FF=yCONFIG_JOYSTICK_XPAD_LEDS=yCONFIG_JOYSTICK_WALKERA0701=mCONFIG_INPUT_TABLET=yCONFIG_TABLET_USB_ACECAD=mCONFIG_TABLET_USB_AIPTEK=mCONFIG_TABLET_USB_GTCO=mCONFIG_TABLET_USB_HANWANG=mCONFIG_TABLET_USB_KBTAB=mCONFIG_TABLET_SERIAL_WACOM4=mCONFIG_INPUT_TOUCHSCREEN=yCONFIG_OF_TOUCHSCREEN=y# CONFIG_TOUCHSCREEN_ADS7846 is not set# CONFIG_TOUCHSCREEN_AD7877 is not set# CONFIG_TOUCHSCREEN_AD7879 is not set# CONFIG_TOUCHSCREEN_AR1021_I2C is not setCONFIG_TOUCHSCREEN_ATMEL_MXT=y# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set# CONFIG_TOUCHSCREEN_BU21013 is not set# CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set# CONFIG_TOUCHSCREEN_DYNAPRO is not set# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set# CONFIG_TOUCHSCREEN_EETI is not set# CONFIG_TOUCHSCREEN_EGALAX is not set# CONFIG_TOUCHSCREEN_FUJITSU is not set# CONFIG_TOUCHSCREEN_GOODIX is not set# CONFIG_TOUCHSCREEN_ILI210X is not set# CONFIG_TOUCHSCREEN_IPROC is not set# CONFIG_TOUCHSCREEN_GUNZE is not set# CONFIG_TOUCHSCREEN_ELAN is not set# CONFIG_TOUCHSCREEN_ELO is not set# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set# CONFIG_TOUCHSCREEN_WACOM_I2C is not set# CONFIG_TOUCHSCREEN_MAX11801 is not set# CONFIG_TOUCHSCREEN_MCS5000 is not set# CONFIG_TOUCHSCREEN_MMS114 is not set# CONFIG_TOUCHSCREEN_MTOUCH is not set# CONFIG_TOUCHSCREEN_INEXIO is not set# CONFIG_TOUCHSCREEN_MK712 is not set# CONFIG_TOUCHSCREEN_PENMOUNT is not set# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set# CONFIG_TOUCHSCREEN_TOUCHWIN is not set# CONFIG_TOUCHSCREEN_UCB1400 is not set# CONFIG_TOUCHSCREEN_PIXCIR is not set# CONFIG_TOUCHSCREEN_WM97XX is not setCONFIG_TOUCHSCREEN_USB_COMPOSITE=mCONFIG_TOUCHSCREEN_USB_EGALAX=yCONFIG_TOUCHSCREEN_USB_PANJIT=yCONFIG_TOUCHSCREEN_USB_3M=yCONFIG_TOUCHSCREEN_USB_ITM=yCONFIG_TOUCHSCREEN_USB_ETURBO=yCONFIG_TOUCHSCREEN_USB_GUNZE=yCONFIG_TOUCHSCREEN_USB_DMC_TSC10=yCONFIG_TOUCHSCREEN_USB_IRTOUCH=yCONFIG_TOUCHSCREEN_USB_IDEALTEK=yCONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=yCONFIG_TOUCHSCREEN_USB_GOTOP=yCONFIG_TOUCHSCREEN_USB_JASTEC=yCONFIG_TOUCHSCREEN_USB_ELO=yCONFIG_TOUCHSCREEN_USB_E2I=yCONFIG_TOUCHSCREEN_USB_ZYTRONIC=yCONFIG_TOUCHSCREEN_USB_ETT_TC45USB=yCONFIG_TOUCHSCREEN_USB_NEXIO=yCONFIG_TOUCHSCREEN_USB_EASYTOUCH=y# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set# CONFIG_TOUCHSCREEN_TSC_SERIO is not set# CONFIG_TOUCHSCREEN_TSC2005 is not set# CONFIG_TOUCHSCREEN_TSC2007 is not set# CONFIG_TOUCHSCREEN_ST1232 is not setCONFIG_TOUCHSCREEN_STMPE=y# CONFIG_TOUCHSCREEN_SUN4I is not set# CONFIG_TOUCHSCREEN_SUR40 is not set# CONFIG_TOUCHSCREEN_SX8654 is not set# CONFIG_TOUCHSCREEN_TPS6507X is not set# CONFIG_TOUCHSCREEN_ZFORCE is not setCONFIG_INPUT_MISC=y# CONFIG_INPUT_AB8500_PONKEY is not setCONFIG_INPUT_AD714X=mCONFIG_INPUT_AD714X_I2C=mCONFIG_INPUT_AD714X_SPI=m# CONFIG_INPUT_BMA150 is not set# CONFIG_INPUT_E3X0_BUTTON is not set# CONFIG_INPUT_MMA8450 is not setCONFIG_INPUT_MPU3050=y# CONFIG_INPUT_GP2A is not set# CONFIG_INPUT_GPIO_BEEPER is not set# CONFIG_INPUT_GPIO_TILT_POLLED is not setCONFIG_INPUT_ATI_REMOTE2=mCONFIG_INPUT_KEYSPAN_REMOTE=m# CONFIG_INPUT_KXTJ9 is not setCONFIG_INPUT_POWERMATE=mCONFIG_INPUT_YEALINK=mCONFIG_INPUT_CM109=m# CONFIG_INPUT_REGULATOR_HAPTIC is not setCONFIG_INPUT_AXP20X_PEK=y# CONFIG_INPUT_TWL4030_PWRBUTTON is not set# CONFIG_INPUT_TWL4030_VIBRA is not setCONFIG_INPUT_UINPUT=m# CONFIG_INPUT_PALMAS_PWRBUTTON is not set# CONFIG_INPUT_PCF8574 is not set# CONFIG_INPUT_PWM_BEEPER is not setCONFIG_INPUT_GPIO_ROTARY_ENCODER=mCONFIG_INPUT_ADXL34X=mCONFIG_INPUT_ADXL34X_I2C=mCONFIG_INPUT_ADXL34X_SPI=m# CONFIG_INPUT_IMS_PCU is not setCONFIG_INPUT_CMA3000=m# CONFIG_INPUT_CMA3000_I2C is not setCONFIG_INPUT_XEN_KBDDEV_FRONTEND=yCONFIG_INPUT_SIRFSOC_ONKEY=y# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set# CONFIG_INPUT_DRV260X_HAPTICS is not set# CONFIG_INPUT_DRV2667_HAPTICS is not set## Hardware I/O ports#CONFIG_SERIO=yCONFIG_SERIO_SERPORT=yCONFIG_SERIO_PARKBD=mCONFIG_SERIO_AMBAKMI=yCONFIG_SERIO_PCIPS2=mCONFIG_SERIO_LIBPS2=yCONFIG_SERIO_RAW=mCONFIG_SERIO_ALTERA_PS2=mCONFIG_SERIO_PS2MULT=mCONFIG_SERIO_ARC_PS2=mCONFIG_SERIO_APBPS2=mCONFIG_SERIO_SUN4I_PS2=yCONFIG_GAMEPORT=mCONFIG_GAMEPORT_NS558=mCONFIG_GAMEPORT_L4=mCONFIG_GAMEPORT_EMU10K1=mCONFIG_GAMEPORT_FM801=m## Character devices#CONFIG_TTY=yCONFIG_VT=yCONFIG_CONSOLE_TRANSLATIONS=yCONFIG_VT_CONSOLE=yCONFIG_VT_CONSOLE_SLEEP=yCONFIG_HW_CONSOLE=yCONFIG_VT_HW_CONSOLE_BINDING=yCONFIG_UNIX98_PTYS=yCONFIG_DEVPTS_MULTIPLE_INSTANCES=yCONFIG_LEGACY_PTYS=yCONFIG_LEGACY_PTY_COUNT=256# CONFIG_SERIAL_NONSTANDARD is not set# CONFIG_NOZOMI is not setCONFIG_N_GSM=m# CONFIG_TRACE_SINK is not setCONFIG_DEVMEM=y# CONFIG_DEVKMEM is not set## Serial drivers#CONFIG_SERIAL_EARLYCON=yCONFIG_SERIAL_8250=yCONFIG_SERIAL_8250_DEPRECATED_OPTIONS=yCONFIG_SERIAL_8250_CONSOLE=yCONFIG_SERIAL_8250_DMA=yCONFIG_SERIAL_8250_PCI=yCONFIG_SERIAL_8250_NR_UARTS=8CONFIG_SERIAL_8250_RUNTIME_UARTS=8# CONFIG_SERIAL_8250_EXTENDED is not setCONFIG_SERIAL_8250_DW=y# CONFIG_SERIAL_8250_EM is not set# CONFIG_SERIAL_8250_OMAP is not setCONFIG_SERIAL_8250_MT6577=y## Non-8250 serial port support## CONFIG_SERIAL_AMBA_PL010 is not setCONFIG_SERIAL_AMBA_PL011=yCONFIG_SERIAL_AMBA_PL011_CONSOLE=y# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set# CONFIG_SERIAL_KGDB_NMI is not setCONFIG_SERIAL_MESON=yCONFIG_SERIAL_MESON_CONSOLE=yCONFIG_SERIAL_SAMSUNG=yCONFIG_SERIAL_SAMSUNG_UARTS_4=yCONFIG_SERIAL_SAMSUNG_UARTS=4CONFIG_SERIAL_SAMSUNG_CONSOLE=yCONFIG_SERIAL_SIRFSOC=yCONFIG_SERIAL_SIRFSOC_CONSOLE=yCONFIG_SERIAL_TEGRA=y# CONFIG_SERIAL_MAX3100 is not set# CONFIG_SERIAL_MAX310X is not setCONFIG_SERIAL_IMX=yCONFIG_SERIAL_IMX_CONSOLE=y# CONFIG_SERIAL_UARTLITE is not set# CONFIG_SERIAL_SH_SCI is not setCONFIG_SERIAL_CORE=yCONFIG_SERIAL_CORE_CONSOLE=yCONFIG_CONSOLE_POLL=y# CONFIG_SERIAL_JSM is not setCONFIG_SERIAL_MSM=yCONFIG_SERIAL_MSM_CONSOLE=yCONFIG_SERIAL_VT8500=yCONFIG_SERIAL_VT8500_CONSOLE=yCONFIG_SERIAL_OF_PLATFORM=yCONFIG_SERIAL_OMAP=yCONFIG_SERIAL_OMAP_CONSOLE=y# CONFIG_SERIAL_SCCNXP is not set# CONFIG_SERIAL_SC16IS7XX is not set# CONFIG_SERIAL_BCM63XX is not set# CONFIG_SERIAL_ALTERA_JTAGUART is not set# CONFIG_SERIAL_ALTERA_UART is not set# CONFIG_SERIAL_IFX6X60 is not setCONFIG_SERIAL_XILINX_PS_UART=yCONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y# CONFIG_SERIAL_ARC is not set# CONFIG_SERIAL_RP2 is not setCONFIG_SERIAL_FSL_LPUART=yCONFIG_SERIAL_FSL_LPUART_CONSOLE=y# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not setCONFIG_SERIAL_ST_ASC=yCONFIG_SERIAL_ST_ASC_CONSOLE=yCONFIG_TTY_PRINTK=y# CONFIG_PRINTER is not set# CONFIG_PPDEV is not setCONFIG_HVC_DRIVER=yCONFIG_HVC_IRQ=yCONFIG_HVC_XEN=yCONFIG_HVC_XEN_FRONTEND=y# CONFIG_HVC_DCC is not set# CONFIG_VIRTIO_CONSOLE is not set# CONFIG_IPMI_HANDLER is not set# CONFIG_HW_RANDOM is not setCONFIG_NVRAM=m# CONFIG_R3964 is not set# CONFIG_APPLICOM is not setCONFIG_RAW_DRIVER=yCONFIG_MAX_RAW_DEVS=256# CONFIG_TCG_TPM is not setCONFIG_DEVPORT=y# CONFIG_XILLYBUS is not set## I2C support#CONFIG_I2C=yCONFIG_I2C_BOARDINFO=yCONFIG_I2C_COMPAT=yCONFIG_I2C_CHARDEV=yCONFIG_I2C_MUX=y## Multiplexer I2C Chip support## CONFIG_I2C_ARB_GPIO_CHALLENGE is not set# CONFIG_I2C_MUX_GPIO is not set# CONFIG_I2C_MUX_PCA9541 is not setCONFIG_I2C_MUX_PCA954x=yCONFIG_I2C_MUX_PINCTRL=yCONFIG_I2C_HELPER_AUTO=yCONFIG_I2C_ALGOBIT=y## I2C Hardware Bus support### PC SMBus host controller drivers## CONFIG_I2C_ALI1535 is not set# CONFIG_I2C_ALI1563 is not set# CONFIG_I2C_ALI15X3 is not set# CONFIG_I2C_AMD756 is not set# CONFIG_I2C_AMD8111 is not set# CONFIG_I2C_HIX5HD2 is not set# CONFIG_I2C_I801 is not set# CONFIG_I2C_ISCH is not set# CONFIG_I2C_PIIX4 is not set# CONFIG_I2C_NFORCE2 is not set# CONFIG_I2C_SIS5595 is not set# CONFIG_I2C_SIS630 is not set# CONFIG_I2C_SIS96X is not set# CONFIG_I2C_VIA is not set# CONFIG_I2C_VIAPRO is not set## I2C system bus drivers (mostly embedded / system-on-chip)#CONFIG_I2C_BCM_IPROC=yCONFIG_I2C_BCM_KONA=yCONFIG_I2C_CADENCE=y# CONFIG_I2C_CBUS_GPIO is not set# CONFIG_I2C_DAVINCI is not setCONFIG_I2C_DESIGNWARE_CORE=yCONFIG_I2C_DESIGNWARE_PLATFORM=y# CONFIG_I2C_DESIGNWARE_PCI is not setCONFIG_I2C_EXYNOS5=yCONFIG_I2C_GPIO=m# CONFIG_I2C_IMX is not set# CONFIG_I2C_MESON is not setCONFIG_I2C_MV64XXX=yCONFIG_I2C_NOMADIK=y# CONFIG_I2C_OCORES is not setCONFIG_I2C_OMAP=y# CONFIG_I2C_PCA_PLATFORM is not set# CONFIG_I2C_PXA_PCI is not set# CONFIG_I2C_QUP is not set# CONFIG_I2C_RIIC is not set# CONFIG_I2C_RK3X is not setCONFIG_HAVE_S3C2410_I2C=yCONFIG_I2C_S3C2410=y# CONFIG_I2C_SH_MOBILE is not set# CONFIG_I2C_SIMTEC is not setCONFIG_I2C_SIRF=yCONFIG_I2C_ST=yCONFIG_I2C_SUN6I_P2WI=yCONFIG_I2C_TEGRA=y# CONFIG_I2C_VERSATILE is not set# CONFIG_I2C_WMT is not setCONFIG_I2C_XILINX=y# CONFIG_I2C_RCAR is not set## External I2C/SMBus adapter drivers## CONFIG_I2C_DIOLAN_U2C is not set# CONFIG_I2C_PARPORT is not set# CONFIG_I2C_PARPORT_LIGHT is not set# CONFIG_I2C_ROBOTFUZZ_OSIF is not set# CONFIG_I2C_TAOS_EVM is not set# CONFIG_I2C_TINY_USB is not set## Other I2C/SMBus bus drivers## CONFIG_I2C_CROS_EC_TUNNEL is not set# CONFIG_I2C_STUB is not set# CONFIG_I2C_SLAVE is not set# CONFIG_I2C_DEBUG_CORE is not set# CONFIG_I2C_DEBUG_ALGO is not set# CONFIG_I2C_DEBUG_BUS is not setCONFIG_SPI=y# CONFIG_SPI_DEBUG is not setCONFIG_SPI_MASTER=y## SPI Master Controller Drivers## CONFIG_SPI_ALTERA is not set# CONFIG_SPI_BCM53XX is not setCONFIG_SPI_BITBANG=y# CONFIG_SPI_BUTTERFLY is not setCONFIG_SPI_CADENCE=y# CONFIG_SPI_DAVINCI is not set# CONFIG_SPI_GPIO is not set# CONFIG_SPI_IMX is not set# CONFIG_SPI_LM70_LLP is not set# CONFIG_SPI_FSL_SPI is not set# CONFIG_SPI_FSL_DSPI is not set# CONFIG_SPI_MESON_SPIFC is not set# CONFIG_SPI_OC_TINY is not setCONFIG_SPI_OMAP24XX=y# CONFIG_SPI_TI_QSPI is not setCONFIG_SPI_ORION=yCONFIG_SPI_PL022=y# CONFIG_SPI_PXA2XX is not set# CONFIG_SPI_PXA2XX_PCI is not set# CONFIG_SPI_ROCKCHIP is not set# CONFIG_SPI_RSPI is not set# CONFIG_SPI_QUP is not set# CONFIG_SPI_S3C64XX is not set# CONFIG_SPI_SC18IS602 is not set# CONFIG_SPI_SH_MSIOF is not set# CONFIG_SPI_SH_HSPI is not setCONFIG_SPI_SIRF=y# CONFIG_SPI_ST_SSC4 is not setCONFIG_SPI_SUN4I=yCONFIG_SPI_SUN6I=yCONFIG_SPI_TEGRA114=yCONFIG_SPI_TEGRA20_SFLASH=yCONFIG_SPI_TEGRA20_SLINK=y# CONFIG_SPI_XCOMM is not setCONFIG_SPI_XILINX=y# CONFIG_SPI_DESIGNWARE is not set## SPI Protocol Masters#CONFIG_SPI_SPIDEV=y# CONFIG_SPI_TLE62X0 is not set# CONFIG_SPMI is not set# CONFIG_HSI is not set## PPS support#CONFIG_PPS=y# CONFIG_PPS_DEBUG is not set## PPS clients support## CONFIG_PPS_CLIENT_KTIMER is not setCONFIG_PPS_CLIENT_LDISC=m# CONFIG_PPS_CLIENT_PARPORT is not setCONFIG_PPS_CLIENT_GPIO=m## PPS generators support### PTP clock support#CONFIG_PTP_1588_CLOCK=y# CONFIG_DP83640_PHY is not setCONFIG_PINCTRL=y## Pin controllers#CONFIG_PINMUX=yCONFIG_PINCONF=yCONFIG_GENERIC_PINCONF=y# CONFIG_DEBUG_PINCTRL is not setCONFIG_PINCTRL_AS3722=y# CONFIG_PINCTRL_AMD is not setCONFIG_PINCTRL_MESON=yCONFIG_PINCTRL_ROCKCHIP=yCONFIG_PINCTRL_SINGLE=yCONFIG_PINCTRL_SIRF=yCONFIG_PINCTRL_ST=yCONFIG_PINCTRL_TEGRA=yCONFIG_PINCTRL_TEGRA20=yCONFIG_PINCTRL_TEGRA30=yCONFIG_PINCTRL_TEGRA114=yCONFIG_PINCTRL_TEGRA124=yCONFIG_PINCTRL_TEGRA_XUSB=yCONFIG_PINCTRL_PALMAS=yCONFIG_PINCTRL_ZYNQ=y# CONFIG_PINCTRL_BCM281XX is not setCONFIG_PINCTRL_CYGNUS_GPIO=yCONFIG_PINCTRL_CYGNUS_MUX=yCONFIG_PINCTRL_BERLIN=yCONFIG_PINCTRL_BERLIN_BG2=yCONFIG_PINCTRL_BERLIN_BG2CD=yCONFIG_PINCTRL_BERLIN_BG2Q=yCONFIG_PINCTRL_IMX=yCONFIG_PINCTRL_IMX50=yCONFIG_PINCTRL_IMX51=yCONFIG_PINCTRL_IMX53=yCONFIG_PINCTRL_IMX6Q=yCONFIG_PINCTRL_IMX6SL=yCONFIG_PINCTRL_IMX6SX=yCONFIG_PINCTRL_VF610=yCONFIG_PINCTRL_MVEBU=yCONFIG_PINCTRL_DOVE=yCONFIG_PINCTRL_ARMADA_370=yCONFIG_PINCTRL_ARMADA_375=yCONFIG_PINCTRL_ARMADA_38X=yCONFIG_PINCTRL_ARMADA_XP=yCONFIG_PINCTRL_ABX500=yCONFIG_PINCTRL_AB8500=yCONFIG_PINCTRL_AB8540=yCONFIG_PINCTRL_AB9540=yCONFIG_PINCTRL_AB8505=yCONFIG_PINCTRL_NOMADIK=yCONFIG_PINCTRL_DB8500=yCONFIG_PINCTRL_DB8540=yCONFIG_PINCTRL_MSM=y# CONFIG_PINCTRL_APQ8064 is not setCONFIG_PINCTRL_APQ8084=y# CONFIG_PINCTRL_IPQ8064 is not set# CONFIG_PINCTRL_MSM8960 is not set# CONFIG_PINCTRL_MSM8X74 is not set# CONFIG_PINCTRL_MSM8916 is not setCONFIG_PINCTRL_SAMSUNG=yCONFIG_PINCTRL_EXYNOS=yCONFIG_PINCTRL_EXYNOS5440=yCONFIG_PINCTRL_SH_PFC=yCONFIG_GPIO_SH_PFC=yCONFIG_PINCTRL_SPEAR=yCONFIG_PINCTRL_SPEAR1310=yCONFIG_PINCTRL_SPEAR1340=yCONFIG_PINCTRL_SPEAR_PLGPIO=yCONFIG_PINCTRL_SUNXI_COMMON=yCONFIG_PINCTRL_SUN4I_A10=yCONFIG_PINCTRL_SUN5I_A10S=yCONFIG_PINCTRL_SUN5I_A13=yCONFIG_PINCTRL_SUN6I_A31=yCONFIG_PINCTRL_SUN6I_A31S=yCONFIG_PINCTRL_SUN6I_A31_R=yCONFIG_PINCTRL_SUN7I_A20=yCONFIG_PINCTRL_SUN8I_A23=yCONFIG_PINCTRL_SUN8I_A23_R=yCONFIG_PINCTRL_SUN9I_A80=y# CONFIG_PINCTRL_WM8850 is not setCONFIG_PINCTRL_MTK_COMMON=yCONFIG_PINCTRL_MT8135=yCONFIG_ARCH_HAVE_CUSTOM_GPIO_H=yCONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=yCONFIG_ARCH_REQUIRE_GPIOLIB=yCONFIG_GPIOLIB=yCONFIG_GPIO_DEVRES=yCONFIG_OF_GPIO=yCONFIG_GPIOLIB_IRQCHIP=y# CONFIG_DEBUG_GPIO is not setCONFIG_GPIO_SYSFS=yCONFIG_GPIO_GENERIC=yCONFIG_GPIO_MAX730X=m## Memory mapped GPIO drivers## CONFIG_GPIO_74XX_MMIO is not set# CONFIG_GPIO_ALTERA is not setCONFIG_GPIO_BCM_KONA=y# CONFIG_GPIO_DAVINCI is not setCONFIG_GPIO_DWAPB=y# CONFIG_GPIO_EM is not setCONFIG_GPIO_GENERIC_PLATFORM=y# CONFIG_GPIO_GRGPIO is not set# CONFIG_GPIO_MSM_V2 is not setCONFIG_GPIO_MVEBU=yCONFIG_GPIO_MXC=yCONFIG_GPIO_OMAP=yCONFIG_GPIO_PL061=y# CONFIG_GPIO_RCAR is not set# CONFIG_GPIO_SCH311X is not setCONFIG_GPIO_SPEAR_SPICS=y# CONFIG_GPIO_SYSCON is not setCONFIG_GPIO_VF610=y# CONFIG_GPIO_VX855 is not setCONFIG_GPIO_XILINX=y# CONFIG_GPIO_ZEVIO is not setCONFIG_GPIO_ZYNQ=y## I2C GPIO expanders#CONFIG_GPIO_ADP5588=mCONFIG_GPIO_ADNP=mCONFIG_GPIO_MAX7300=mCONFIG_GPIO_MAX732X=mCONFIG_GPIO_PCA953X=yCONFIG_GPIO_PCA953X_IRQ=yCONFIG_GPIO_PCF857X=m# CONFIG_GPIO_SX150X is not set## MFD GPIO expanders#CONFIG_GPIO_PALMAS=y# CONFIG_GPIO_STMPE is not setCONFIG_GPIO_TPS6586X=yCONFIG_GPIO_TPS65910=yCONFIG_GPIO_TWL4030=y# CONFIG_GPIO_UCB1400 is not set# CONFIG_GPIO_WM8994 is not set## PCI GPIO expanders## CONFIG_GPIO_AMD8111 is not setCONFIG_GPIO_BT8XX=m# CONFIG_GPIO_ML_IOH is not set# CONFIG_GPIO_RDC321X is not set## SPI GPIO expanders#CONFIG_GPIO_74X164=mCONFIG_GPIO_MAX7301=mCONFIG_GPIO_MCP23S08=mCONFIG_GPIO_MC33880=m## USB GPIO expanders#CONFIG_W1=mCONFIG_W1_CON=y## 1-wire Bus Masters#CONFIG_W1_MASTER_MATROX=mCONFIG_W1_MASTER_DS2490=mCONFIG_W1_MASTER_DS2482=mCONFIG_W1_MASTER_MXC=mCONFIG_W1_MASTER_DS1WM=mCONFIG_W1_MASTER_GPIO=mCONFIG_HDQ_MASTER_OMAP=m## 1-wire Slaves#CONFIG_W1_SLAVE_THERM=mCONFIG_W1_SLAVE_SMEM=mCONFIG_W1_SLAVE_DS2408=mCONFIG_W1_SLAVE_DS2408_READBACK=yCONFIG_W1_SLAVE_DS2413=mCONFIG_W1_SLAVE_DS2406=mCONFIG_W1_SLAVE_DS2423=mCONFIG_W1_SLAVE_DS2431=mCONFIG_W1_SLAVE_DS2433=mCONFIG_W1_SLAVE_DS2433_CRC=yCONFIG_W1_SLAVE_DS2760=mCONFIG_W1_SLAVE_DS2780=mCONFIG_W1_SLAVE_DS2781=mCONFIG_W1_SLAVE_DS28E04=mCONFIG_W1_SLAVE_BQ27000=mCONFIG_POWER_SUPPLY=y# CONFIG_POWER_SUPPLY_DEBUG is not setCONFIG_PDA_POWER=mCONFIG_GENERIC_ADC_BATTERY=m# CONFIG_TEST_POWER is not setCONFIG_BATTERY_DS2760=mCONFIG_BATTERY_DS2780=mCONFIG_BATTERY_DS2781=mCONFIG_BATTERY_DS2782=m# CONFIG_BATTERY_SBS is not setCONFIG_BATTERY_BQ27x00=mCONFIG_BATTERY_BQ27X00_I2C=yCONFIG_BATTERY_BQ27X00_PLATFORM=y# CONFIG_AXP288_FUEL_GAUGE is not setCONFIG_BATTERY_MAX17040=mCONFIG_BATTERY_MAX17042=mCONFIG_CHARGER_ISP1704=mCONFIG_CHARGER_MAX8903=mCONFIG_CHARGER_TWL4030=mCONFIG_CHARGER_LP8727=mCONFIG_CHARGER_GPIO=mCONFIG_CHARGER_MANAGER=yCONFIG_CHARGER_BQ2415X=mCONFIG_CHARGER_BQ24190=mCONFIG_CHARGER_BQ24735=mCONFIG_CHARGER_SMB347=m# CONFIG_CHARGER_TPS65090 is not set# CONFIG_BATTERY_GAUGE_LTC2941 is not set# CONFIG_AB8500_BM is not setCONFIG_POWER_RESET=yCONFIG_POWER_RESET_AS3722=yCONFIG_POWER_RESET_BRCMSTB=yCONFIG_POWER_RESET_GPIO=y# CONFIG_POWER_RESET_GPIO_RESTART is not setCONFIG_POWER_RESET_HISI=yCONFIG_POWER_RESET_IMX=y# CONFIG_POWER_RESET_MSM is not set# CONFIG_POWER_RESET_LTC2952 is not set# CONFIG_POWER_RESET_QNAP is not setCONFIG_POWER_RESET_RESTART=y# CONFIG_POWER_RESET_ST is not set# CONFIG_POWER_RESET_VERSATILE is not setCONFIG_POWER_RESET_VEXPRESS=y# CONFIG_POWER_RESET_KEYSTONE is not setCONFIG_POWER_RESET_SYSCON=y# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set# CONFIG_POWER_AVS is not set# CONFIG_ROCKCHIP_IODOMAIN is not setCONFIG_HWMON=mCONFIG_HWMON_VID=m# CONFIG_HWMON_DEBUG_CHIP is not set## Native drivers#CONFIG_SENSORS_AD7314=mCONFIG_SENSORS_AD7414=mCONFIG_SENSORS_AD7418=mCONFIG_SENSORS_ADM1021=mCONFIG_SENSORS_ADM1025=mCONFIG_SENSORS_ADM1026=mCONFIG_SENSORS_ADM1029=mCONFIG_SENSORS_ADM1031=mCONFIG_SENSORS_ADM9240=mCONFIG_SENSORS_ADT7X10=mCONFIG_SENSORS_ADT7310=mCONFIG_SENSORS_ADT7410=mCONFIG_SENSORS_ADT7411=mCONFIG_SENSORS_ADT7462=mCONFIG_SENSORS_ADT7470=mCONFIG_SENSORS_ADT7475=mCONFIG_SENSORS_ASC7621=mCONFIG_SENSORS_ATXP1=mCONFIG_SENSORS_DS620=mCONFIG_SENSORS_DS1621=mCONFIG_SENSORS_I5K_AMB=mCONFIG_SENSORS_F71805F=mCONFIG_SENSORS_F71882FG=mCONFIG_SENSORS_F75375S=mCONFIG_SENSORS_GL518SM=mCONFIG_SENSORS_GL520SM=mCONFIG_SENSORS_G760A=mCONFIG_SENSORS_G762=mCONFIG_SENSORS_GPIO_FAN=mCONFIG_SENSORS_HIH6130=mCONFIG_SENSORS_IIO_HWMON=mCONFIG_SENSORS_IT87=mCONFIG_SENSORS_JC42=mCONFIG_SENSORS_POWR1220=mCONFIG_SENSORS_LINEAGE=mCONFIG_SENSORS_LTC2945=mCONFIG_SENSORS_LTC4151=mCONFIG_SENSORS_LTC4215=mCONFIG_SENSORS_LTC4222=mCONFIG_SENSORS_LTC4245=mCONFIG_SENSORS_LTC4260=mCONFIG_SENSORS_LTC4261=mCONFIG_SENSORS_MAX1111=mCONFIG_SENSORS_MAX16065=mCONFIG_SENSORS_MAX1619=mCONFIG_SENSORS_MAX1668=mCONFIG_SENSORS_MAX197=mCONFIG_SENSORS_MAX6639=mCONFIG_SENSORS_MAX6642=mCONFIG_SENSORS_MAX6650=mCONFIG_SENSORS_MAX6697=mCONFIG_SENSORS_HTU21=mCONFIG_SENSORS_MCP3021=mCONFIG_SENSORS_ADCXX=mCONFIG_SENSORS_LM63=mCONFIG_SENSORS_LM70=mCONFIG_SENSORS_LM73=mCONFIG_SENSORS_LM75=mCONFIG_SENSORS_LM77=mCONFIG_SENSORS_LM78=mCONFIG_SENSORS_LM80=mCONFIG_SENSORS_LM83=mCONFIG_SENSORS_LM85=mCONFIG_SENSORS_LM87=mCONFIG_SENSORS_LM90=mCONFIG_SENSORS_LM92=mCONFIG_SENSORS_LM93=mCONFIG_SENSORS_LM95234=mCONFIG_SENSORS_LM95241=mCONFIG_SENSORS_LM95245=mCONFIG_SENSORS_PC87360=mCONFIG_SENSORS_PC87427=mCONFIG_SENSORS_NTC_THERMISTOR=mCONFIG_SENSORS_NCT6683=mCONFIG_SENSORS_NCT6775=mCONFIG_SENSORS_NCT7802=m# CONFIG_SENSORS_NCT7904 is not setCONFIG_SENSORS_PCF8591=mCONFIG_PMBUS=mCONFIG_SENSORS_PMBUS=mCONFIG_SENSORS_ADM1275=mCONFIG_SENSORS_LM25066=mCONFIG_SENSORS_LTC2978=mCONFIG_SENSORS_LTC2978_REGULATOR=yCONFIG_SENSORS_MAX16064=mCONFIG_SENSORS_MAX34440=mCONFIG_SENSORS_MAX8688=mCONFIG_SENSORS_TPS40422=mCONFIG_SENSORS_UCD9000=mCONFIG_SENSORS_UCD9200=mCONFIG_SENSORS_ZL6100=mCONFIG_SENSORS_PWM_FAN=mCONFIG_SENSORS_SHT15=mCONFIG_SENSORS_SHT21=mCONFIG_SENSORS_SHTC1=mCONFIG_SENSORS_SIS5595=mCONFIG_SENSORS_DME1737=mCONFIG_SENSORS_EMC1403=mCONFIG_SENSORS_EMC2103=mCONFIG_SENSORS_EMC6W201=mCONFIG_SENSORS_SMSC47M1=mCONFIG_SENSORS_SMSC47M192=mCONFIG_SENSORS_SMSC47B397=mCONFIG_SENSORS_SCH56XX_COMMON=mCONFIG_SENSORS_SCH5627=mCONFIG_SENSORS_SCH5636=mCONFIG_SENSORS_SMM665=mCONFIG_SENSORS_ADC128D818=mCONFIG_SENSORS_ADS1015=mCONFIG_SENSORS_ADS7828=mCONFIG_SENSORS_ADS7871=mCONFIG_SENSORS_AMC6821=mCONFIG_SENSORS_INA209=mCONFIG_SENSORS_INA2XX=mCONFIG_SENSORS_THMC50=mCONFIG_SENSORS_TMP102=mCONFIG_SENSORS_TMP103=mCONFIG_SENSORS_TMP401=mCONFIG_SENSORS_TMP421=mCONFIG_SENSORS_VEXPRESS=mCONFIG_SENSORS_VIA686A=mCONFIG_SENSORS_VT1211=mCONFIG_SENSORS_VT8231=mCONFIG_SENSORS_W83781D=mCONFIG_SENSORS_W83791D=mCONFIG_SENSORS_W83792D=mCONFIG_SENSORS_W83793=mCONFIG_SENSORS_W83795=m# CONFIG_SENSORS_W83795_FANCTRL is not setCONFIG_SENSORS_W83L785TS=mCONFIG_SENSORS_W83L786NG=mCONFIG_SENSORS_W83627HF=mCONFIG_SENSORS_W83627EHF=mCONFIG_THERMAL=yCONFIG_THERMAL_OF=yCONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set# CONFIG_THERMAL_GOV_FAIR_SHARE is not setCONFIG_THERMAL_GOV_STEP_WISE=y# CONFIG_THERMAL_GOV_BANG_BANG is not set# CONFIG_THERMAL_GOV_USER_SPACE is not set# CONFIG_CPU_THERMAL is not set# CONFIG_CLOCK_THERMAL is not set# CONFIG_THERMAL_EMULATION is not set# CONFIG_SPEAR_THERMAL is not set# CONFIG_ROCKCHIP_THERMAL is not set# CONFIG_RCAR_THERMAL is not set# CONFIG_DOVE_THERMAL is not setCONFIG_DB8500_THERMAL=yCONFIG_ARMADA_THERMAL=y# CONFIG_TEGRA_SOCTHERM is not set## Texas Instruments thermal drivers## CONFIG_TI_SOC_THERMAL is not set## Samsung thermal drivers## CONFIG_EXYNOS_THERMAL is not set## STMicroelectronics thermal drivers#CONFIG_ST_THERMAL=yCONFIG_ST_THERMAL_SYSCFG=yCONFIG_ST_THERMAL_MEMMAP=yCONFIG_WATCHDOG=yCONFIG_WATCHDOG_CORE=y# CONFIG_WATCHDOG_NOWAYOUT is not set## Watchdog Device Drivers## CONFIG_SOFT_WATCHDOG is not set# CONFIG_GPIO_WATCHDOG is not setCONFIG_XILINX_WATCHDOG=yCONFIG_ARM_SP805_WATCHDOG=y# CONFIG_CADENCE_WATCHDOG is not setCONFIG_HAVE_S3C2410_WATCHDOG=y# CONFIG_S3C2410_WATCHDOG is not set# CONFIG_DW_WATCHDOG is not set# CONFIG_OMAP_WATCHDOG is not set# CONFIG_DAVINCI_WATCHDOG is not setCONFIG_ORION_WATCHDOG=yCONFIG_SUNXI_WATCHDOG=y# CONFIG_TWL4030_WATCHDOG is not set# CONFIG_MAX63XX_WATCHDOG is not set# CONFIG_IMX2_WDT is not setCONFIG_UX500_WATCHDOG=yCONFIG_SIRFSOC_WATCHDOG=y# CONFIG_TEGRA_WATCHDOG is not set# CONFIG_QCOM_WDT is not setCONFIG_MESON_WATCHDOG=y# CONFIG_MEDIATEK_WATCHDOG is not set# CONFIG_ALIM7101_WDT is not set# CONFIG_I6300ESB_WDT is not set# CONFIG_BCM47XX_WDT is not set# CONFIG_BCM_KONA_WDT is not set# CONFIG_MEN_A21_WDT is not set# CONFIG_XEN_WDT is not set## PCI-based Watchdog Cards## CONFIG_PCIPCWATCHDOG is not set# CONFIG_WDTPCI is not set## USB-based Watchdog Cards## CONFIG_USBPCWATCHDOG is not setCONFIG_SSB_POSSIBLE=y## Sonics Silicon Backplane#CONFIG_SSB=mCONFIG_SSB_SPROM=yCONFIG_SSB_BLOCKIO=yCONFIG_SSB_PCIHOST_POSSIBLE=yCONFIG_SSB_PCIHOST=yCONFIG_SSB_B43_PCI_BRIDGE=yCONFIG_SSB_SDIOHOST_POSSIBLE=yCONFIG_SSB_SDIOHOST=y# CONFIG_SSB_SILENT is not set# CONFIG_SSB_DEBUG is not setCONFIG_SSB_DRIVER_PCICORE_POSSIBLE=yCONFIG_SSB_DRIVER_PCICORE=y# CONFIG_SSB_DRIVER_GPIO is not setCONFIG_BCMA_POSSIBLE=y## Broadcom specific AMBA#CONFIG_BCMA=mCONFIG_BCMA_BLOCKIO=yCONFIG_BCMA_HOST_PCI_POSSIBLE=yCONFIG_BCMA_HOST_PCI=y# CONFIG_BCMA_HOST_SOC is not setCONFIG_BCMA_DRIVER_PCI=y# CONFIG_BCMA_DRIVER_GMAC_CMN is not set# CONFIG_BCMA_DRIVER_GPIO is not set# CONFIG_BCMA_DEBUG is not set## Multifunction device drivers#CONFIG_MFD_CORE=y# CONFIG_MFD_AS3711 is not setCONFIG_MFD_AS3722=y# CONFIG_PMIC_ADP5520 is not set# CONFIG_MFD_AAT2870_CORE is not set# CONFIG_MFD_ATMEL_HLCDC is not setCONFIG_MFD_BCM590XX=yCONFIG_MFD_AXP20X=yCONFIG_MFD_CROS_EC=y# CONFIG_MFD_CROS_EC_I2C is not setCONFIG_MFD_CROS_EC_SPI=y# CONFIG_MFD_ASIC3 is not set# CONFIG_PMIC_DA903X is not set# CONFIG_MFD_DA9052_SPI is not set# CONFIG_MFD_DA9052_I2C is not set# CONFIG_MFD_DA9055 is not set# CONFIG_MFD_DA9063 is not set# CONFIG_MFD_DA9150 is not set# CONFIG_MFD_DLN2 is not set# CONFIG_MFD_MC13XXX_SPI is not set# CONFIG_MFD_MC13XXX_I2C is not set# CONFIG_MFD_HI6421_PMIC is not set# CONFIG_HTC_EGPIO is not set# CONFIG_HTC_PASIC3 is not set# CONFIG_HTC_I2CPLD is not set# CONFIG_LPC_ICH is not set# CONFIG_LPC_SCH is not set# CONFIG_INTEL_SOC_PMIC is not set# CONFIG_MFD_JANZ_CMODIO is not set# CONFIG_MFD_KEMPLD is not set# CONFIG_MFD_88PM800 is not set# CONFIG_MFD_88PM805 is not set# CONFIG_MFD_88PM860X is not set# CONFIG_MFD_MAX14577 is not setCONFIG_MFD_MAX77686=y# CONFIG_MFD_MAX77693 is not set# CONFIG_MFD_MAX77843 is not setCONFIG_MFD_MAX8907=y# CONFIG_MFD_MAX8925 is not set# CONFIG_MFD_MAX8997 is not set# CONFIG_MFD_MAX8998 is not set# CONFIG_MFD_MT6397 is not set# CONFIG_MFD_MENF21BMC is not set# CONFIG_EZX_PCAP is not set# CONFIG_MFD_VIPERBOARD is not set# CONFIG_MFD_RETU is not set# CONFIG_MFD_PCF50633 is not setCONFIG_UCB1400_CORE=m# CONFIG_MFD_PM8921_CORE is not set# CONFIG_MFD_QCOM_RPM is not set# CONFIG_MFD_RDC321X is not set# CONFIG_MFD_RTSX_PCI is not set# CONFIG_MFD_RT5033 is not set# CONFIG_MFD_RTSX_USB is not set# CONFIG_MFD_RC5T583 is not set# CONFIG_MFD_RK808 is not set# CONFIG_MFD_RN5T618 is not setCONFIG_MFD_SEC_CORE=y# CONFIG_MFD_SI476X_CORE is not set# CONFIG_MFD_SM501 is not set# CONFIG_MFD_SKY81452 is not set# CONFIG_MFD_SMSC is not setCONFIG_ABX500_CORE=y# CONFIG_AB3100_CORE is not setCONFIG_AB8500_CORE=yCONFIG_AB8500_DEBUG=yCONFIG_AB8500_GPADC=yCONFIG_MFD_DB8500_PRCMU=yCONFIG_MFD_STMPE=y## STMicroelectronics STMPE Interface Drivers#CONFIG_STMPE_I2C=yCONFIG_STMPE_SPI=yCONFIG_MFD_SUN6I_PRCM=yCONFIG_MFD_SYSCON=y# CONFIG_MFD_TI_AM335X_TSCADC is not set# CONFIG_MFD_LP3943 is not set# CONFIG_MFD_LP8788 is not setCONFIG_MFD_OMAP_USB_HOST=yCONFIG_MFD_PALMAS=y# CONFIG_TPS6105X is not set# CONFIG_TPS65010 is not set# CONFIG_TPS6507X is not setCONFIG_MFD_TPS65090=y# CONFIG_MFD_TPS65217 is not set# CONFIG_MFD_TPS65218 is not setCONFIG_MFD_TPS6586X=yCONFIG_MFD_TPS65910=y# CONFIG_MFD_TPS65912 is not set# CONFIG_MFD_TPS65912_I2C is not set# CONFIG_MFD_TPS65912_SPI is not set# CONFIG_MFD_TPS80031 is not setCONFIG_TWL4030_CORE=yCONFIG_TWL4030_POWER=yCONFIG_MFD_TWL4030_AUDIO=y# CONFIG_TWL6040_CORE is not setCONFIG_MFD_WL1273_CORE=m# CONFIG_MFD_LM3533 is not set# CONFIG_MFD_TC3589X is not set# CONFIG_MFD_TMIO is not set# CONFIG_MFD_T7L66XB is not set# CONFIG_MFD_TC6387XB is not set# CONFIG_MFD_TC6393XB is not set# CONFIG_MFD_VX855 is not set# CONFIG_MFD_ARIZONA_I2C is not set# CONFIG_MFD_ARIZONA_SPI is not set# CONFIG_MFD_WM8400 is not set# CONFIG_MFD_WM831X_I2C is not set# CONFIG_MFD_WM831X_SPI is not set# CONFIG_MFD_WM8350_I2C is not setCONFIG_MFD_WM8994=mCONFIG_MFD_VEXPRESS_SYSREG=yCONFIG_REGULATOR=y# CONFIG_REGULATOR_DEBUG is not setCONFIG_REGULATOR_FIXED_VOLTAGE=yCONFIG_REGULATOR_VIRTUAL_CONSUMER=mCONFIG_REGULATOR_USERSPACE_CONSUMER=m# CONFIG_REGULATOR_ACT8865 is not set# CONFIG_REGULATOR_AD5398 is not set# CONFIG_REGULATOR_ANATOP is not setCONFIG_REGULATOR_AB8500=yCONFIG_REGULATOR_AS3722=yCONFIG_REGULATOR_AXP20X=yCONFIG_REGULATOR_BCM590XX=y# CONFIG_REGULATOR_DA9210 is not set# CONFIG_REGULATOR_DA9211 is not setCONFIG_REGULATOR_DBX500_PRCMU=yCONFIG_REGULATOR_DB8500_PRCMU=y# CONFIG_REGULATOR_FAN53555 is not setCONFIG_REGULATOR_GPIO=y# CONFIG_REGULATOR_ISL9305 is not set# CONFIG_REGULATOR_ISL6271A is not set# CONFIG_REGULATOR_LP3971 is not set# CONFIG_REGULATOR_LP3972 is not set# CONFIG_REGULATOR_LP872X is not set# CONFIG_REGULATOR_LP8755 is not set# CONFIG_REGULATOR_LTC3589 is not set# CONFIG_REGULATOR_MAX1586 is not set# CONFIG_REGULATOR_MAX8649 is not set# CONFIG_REGULATOR_MAX8660 is not setCONFIG_REGULATOR_MAX8907=y# CONFIG_REGULATOR_MAX8952 is not set# CONFIG_REGULATOR_MAX8973 is not setCONFIG_REGULATOR_MAX77686=y# CONFIG_REGULATOR_MAX77802 is not setCONFIG_REGULATOR_PALMAS=y# CONFIG_REGULATOR_PBIAS is not set# CONFIG_REGULATOR_PFUZE100 is not set# CONFIG_REGULATOR_PWM is not set# CONFIG_REGULATOR_S2MPA01 is not setCONFIG_REGULATOR_S2MPS11=yCONFIG_REGULATOR_S5M8767=y# CONFIG_REGULATOR_TI_ABB is not setCONFIG_REGULATOR_TPS51632=yCONFIG_REGULATOR_TPS62360=y# CONFIG_REGULATOR_TPS65023 is not set# CONFIG_REGULATOR_TPS6507X is not setCONFIG_REGULATOR_TPS65090=y# CONFIG_REGULATOR_TPS6524X is not setCONFIG_REGULATOR_TPS6586X=yCONFIG_REGULATOR_TPS65910=yCONFIG_REGULATOR_TWL4030=yCONFIG_REGULATOR_VEXPRESS=y# CONFIG_REGULATOR_WM8994 is not setCONFIG_MEDIA_SUPPORT=y## Multimedia core support#CONFIG_MEDIA_CAMERA_SUPPORT=yCONFIG_MEDIA_ANALOG_TV_SUPPORT=yCONFIG_MEDIA_DIGITAL_TV_SUPPORT=yCONFIG_MEDIA_RADIO_SUPPORT=yCONFIG_MEDIA_SDR_SUPPORT=yCONFIG_MEDIA_RC_SUPPORT=yCONFIG_MEDIA_CONTROLLER=yCONFIG_VIDEO_DEV=yCONFIG_VIDEO_V4L2_SUBDEV_API=yCONFIG_VIDEO_V4L2=yCONFIG_VIDEO_ADV_DEBUG=yCONFIG_VIDEO_FIXED_MINOR_RANGES=yCONFIG_VIDEO_TUNER=mCONFIG_V4L2_MEM2MEM_DEV=mCONFIG_VIDEOBUF_GEN=mCONFIG_VIDEOBUF_VMALLOC=mCONFIG_VIDEOBUF_DMA_CONTIG=mCONFIG_VIDEOBUF_DVB=mCONFIG_VIDEOBUF2_CORE=mCONFIG_VIDEOBUF2_MEMOPS=mCONFIG_VIDEOBUF2_DMA_CONTIG=mCONFIG_VIDEOBUF2_VMALLOC=mCONFIG_VIDEOBUF2_DMA_SG=mCONFIG_DVB_CORE=yCONFIG_DVB_NET=yCONFIG_TTPCI_EEPROM=mCONFIG_DVB_MAX_ADAPTERS=8CONFIG_DVB_DYNAMIC_MINORS=y## Media drivers#CONFIG_RC_CORE=yCONFIG_RC_MAP=mCONFIG_RC_DECODERS=yCONFIG_LIRC=mCONFIG_IR_LIRC_CODEC=mCONFIG_IR_NEC_DECODER=mCONFIG_IR_RC5_DECODER=mCONFIG_IR_RC6_DECODER=mCONFIG_IR_JVC_DECODER=mCONFIG_IR_SONY_DECODER=mCONFIG_IR_SANYO_DECODER=mCONFIG_IR_SHARP_DECODER=mCONFIG_IR_MCE_KBD_DECODER=mCONFIG_IR_XMP_DECODER=mCONFIG_RC_DEVICES=yCONFIG_RC_ATI_REMOTE=m# CONFIG_IR_HIX5HD2 is not setCONFIG_IR_IMON=mCONFIG_IR_MCEUSB=m# CONFIG_IR_MESON is not setCONFIG_IR_REDRAT3=mCONFIG_IR_STREAMZAP=m# CONFIG_IR_IGORPLUGUSB is not setCONFIG_IR_IGUANA=mCONFIG_IR_TTUSBIR=mCONFIG_RC_LOOPBACK=mCONFIG_IR_GPIO_CIR=m# CONFIG_RC_ST is not set# CONFIG_IR_SUNXI is not setCONFIG_MEDIA_USB_SUPPORT=y## Webcam devices#CONFIG_USB_VIDEO_CLASS=mCONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=yCONFIG_USB_GSPCA=mCONFIG_USB_M5602=mCONFIG_USB_STV06XX=mCONFIG_USB_GL860=mCONFIG_USB_GSPCA_BENQ=mCONFIG_USB_GSPCA_CONEX=mCONFIG_USB_GSPCA_CPIA1=mCONFIG_USB_GSPCA_DTCS033=mCONFIG_USB_GSPCA_ETOMS=mCONFIG_USB_GSPCA_FINEPIX=mCONFIG_USB_GSPCA_JEILINJ=mCONFIG_USB_GSPCA_JL2005BCD=mCONFIG_USB_GSPCA_KINECT=mCONFIG_USB_GSPCA_KONICA=mCONFIG_USB_GSPCA_MARS=mCONFIG_USB_GSPCA_MR97310A=mCONFIG_USB_GSPCA_NW80X=mCONFIG_USB_GSPCA_OV519=mCONFIG_USB_GSPCA_OV534=mCONFIG_USB_GSPCA_OV534_9=mCONFIG_USB_GSPCA_PAC207=mCONFIG_USB_GSPCA_PAC7302=mCONFIG_USB_GSPCA_PAC7311=mCONFIG_USB_GSPCA_SE401=mCONFIG_USB_GSPCA_SN9C2028=mCONFIG_USB_GSPCA_SN9C20X=mCONFIG_USB_GSPCA_SONIXB=mCONFIG_USB_GSPCA_SONIXJ=mCONFIG_USB_GSPCA_SPCA500=mCONFIG_USB_GSPCA_SPCA501=mCONFIG_USB_GSPCA_SPCA505=mCONFIG_USB_GSPCA_SPCA506=mCONFIG_USB_GSPCA_SPCA508=mCONFIG_USB_GSPCA_SPCA561=mCONFIG_USB_GSPCA_SPCA1528=mCONFIG_USB_GSPCA_SQ905=mCONFIG_USB_GSPCA_SQ905C=mCONFIG_USB_GSPCA_SQ930X=mCONFIG_USB_GSPCA_STK014=mCONFIG_USB_GSPCA_STK1135=mCONFIG_USB_GSPCA_STV0680=mCONFIG_USB_GSPCA_SUNPLUS=mCONFIG_USB_GSPCA_T613=mCONFIG_USB_GSPCA_TOPRO=m# CONFIG_USB_GSPCA_TOUPTEK is not setCONFIG_USB_GSPCA_TV8532=mCONFIG_USB_GSPCA_VC032X=mCONFIG_USB_GSPCA_VICAM=mCONFIG_USB_GSPCA_XIRLINK_CIT=mCONFIG_USB_GSPCA_ZC3XX=mCONFIG_USB_PWC=m# CONFIG_USB_PWC_DEBUG is not setCONFIG_USB_PWC_INPUT_EVDEV=yCONFIG_VIDEO_CPIA2=mCONFIG_USB_ZR364XX=mCONFIG_USB_STKWEBCAM=mCONFIG_USB_S2255=mCONFIG_VIDEO_USBTV=m## Analog TV USB devices#CONFIG_VIDEO_PVRUSB2=mCONFIG_VIDEO_PVRUSB2_SYSFS=yCONFIG_VIDEO_PVRUSB2_DVB=y# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not setCONFIG_VIDEO_HDPVR=mCONFIG_VIDEO_USBVISION=mCONFIG_VIDEO_STK1160_COMMON=mCONFIG_VIDEO_STK1160_AC97=yCONFIG_VIDEO_STK1160=mCONFIG_VIDEO_GO7007=mCONFIG_VIDEO_GO7007_USB=mCONFIG_VIDEO_GO7007_LOADER=mCONFIG_VIDEO_GO7007_USB_S2250_BOARD=m## Analog/digital TV USB devices#CONFIG_VIDEO_AU0828=mCONFIG_VIDEO_AU0828_V4L2=yCONFIG_VIDEO_AU0828_RC=yCONFIG_VIDEO_CX231XX=mCONFIG_VIDEO_CX231XX_RC=yCONFIG_VIDEO_CX231XX_ALSA=mCONFIG_VIDEO_CX231XX_DVB=mCONFIG_VIDEO_TM6000=mCONFIG_VIDEO_TM6000_ALSA=mCONFIG_VIDEO_TM6000_DVB=m## Digital TV USB devices#CONFIG_DVB_USB=m# CONFIG_DVB_USB_DEBUG is not setCONFIG_DVB_USB_A800=mCONFIG_DVB_USB_DIBUSB_MB=mCONFIG_DVB_USB_DIBUSB_MB_FAULTY=yCONFIG_DVB_USB_DIBUSB_MC=mCONFIG_DVB_USB_DIB0700=mCONFIG_DVB_USB_UMT_010=mCONFIG_DVB_USB_CXUSB=mCONFIG_DVB_USB_M920X=mCONFIG_DVB_USB_DIGITV=mCONFIG_DVB_USB_VP7045=mCONFIG_DVB_USB_VP702X=mCONFIG_DVB_USB_GP8PSK=mCONFIG_DVB_USB_NOVA_T_USB2=mCONFIG_DVB_USB_TTUSB2=mCONFIG_DVB_USB_DTT200U=mCONFIG_DVB_USB_OPERA1=mCONFIG_DVB_USB_AF9005=mCONFIG_DVB_USB_AF9005_REMOTE=mCONFIG_DVB_USB_PCTV452E=mCONFIG_DVB_USB_DW2102=mCONFIG_DVB_USB_CINERGY_T2=mCONFIG_DVB_USB_DTV5100=mCONFIG_DVB_USB_FRIIO=mCONFIG_DVB_USB_AZ6027=mCONFIG_DVB_USB_TECHNISAT_USB2=mCONFIG_DVB_USB_V2=mCONFIG_DVB_USB_AF9015=mCONFIG_DVB_USB_AF9035=mCONFIG_DVB_USB_ANYSEE=mCONFIG_DVB_USB_AU6610=mCONFIG_DVB_USB_AZ6007=mCONFIG_DVB_USB_CE6230=mCONFIG_DVB_USB_EC168=mCONFIG_DVB_USB_GL861=mCONFIG_DVB_USB_LME2510=mCONFIG_DVB_USB_MXL111SF=mCONFIG_DVB_USB_RTL28XXU=mCONFIG_DVB_USB_DVBSKY=mCONFIG_DVB_TTUSB_BUDGET=mCONFIG_DVB_TTUSB_DEC=mCONFIG_SMS_USB_DRV=mCONFIG_DVB_B2C2_FLEXCOP_USB=m# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not setCONFIG_DVB_AS102=m## Webcam, TV (analog/digital) USB devices#CONFIG_VIDEO_EM28XX=mCONFIG_VIDEO_EM28XX_V4L2=mCONFIG_VIDEO_EM28XX_ALSA=mCONFIG_VIDEO_EM28XX_DVB=mCONFIG_VIDEO_EM28XX_RC=m## Software defined radio USB devices#CONFIG_USB_AIRSPY=mCONFIG_USB_HACKRF=mCONFIG_USB_MSI2500=m# CONFIG_MEDIA_PCI_SUPPORT is not setCONFIG_V4L_PLATFORM_DRIVERS=yCONFIG_VIDEO_CAFE_CCIC=mCONFIG_VIDEO_OMAP2_VOUT_VRFB=yCONFIG_VIDEO_OMAP2_VOUT=mCONFIG_VIDEO_SH_VOU=m# CONFIG_VIDEO_OMAP3 is not setCONFIG_SOC_CAMERA=mCONFIG_SOC_CAMERA_SCALE_CROP=mCONFIG_SOC_CAMERA_PLATFORM=mCONFIG_VIDEO_MX3=mCONFIG_VIDEO_RCAR_VIN=mCONFIG_VIDEO_SH_MOBILE_CSI2=mCONFIG_VIDEO_SH_MOBILE_CEU=mCONFIG_VIDEO_SAMSUNG_EXYNOS4_IS=y# CONFIG_VIDEO_S5P_FIMC is not set# CONFIG_VIDEO_S5P_MIPI_CSIS is not set# CONFIG_VIDEO_EXYNOS_FIMC_LITE is not set# CONFIG_VIDEO_EXYNOS4_FIMC_IS is not set# CONFIG_VIDEO_SAMSUNG_S5P_TV is not set# CONFIG_VIDEO_AM437X_VPFE is not set# CONFIG_VIDEO_XILINX is not setCONFIG_V4L_MEM2MEM_DRIVERS=yCONFIG_VIDEO_CODA=m# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set# CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set# CONFIG_VIDEO_SAMSUNG_S5P_JPEG is not set# CONFIG_VIDEO_SAMSUNG_S5P_MFC is not set# CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC is not set# CONFIG_VIDEO_SH_VEU is not set# CONFIG_VIDEO_RENESAS_VSP1 is not set# CONFIG_VIDEO_TI_VPE is not setCONFIG_V4L_TEST_DRIVERS=yCONFIG_VIDEO_VIVID=mCONFIG_VIDEO_VIM2M=m## Supported MMC/SDIO adapters#CONFIG_SMS_SDIO_DRV=mCONFIG_RADIO_ADAPTERS=yCONFIG_RADIO_TEA575X=m# CONFIG_RADIO_SI470X is not setCONFIG_RADIO_SI4713=mCONFIG_USB_SI4713=mCONFIG_PLATFORM_SI4713=mCONFIG_I2C_SI4713=mCONFIG_USB_MR800=mCONFIG_USB_DSBR=mCONFIG_RADIO_MAXIRADIO=mCONFIG_RADIO_SHARK=mCONFIG_RADIO_SHARK2=mCONFIG_USB_KEENE=mCONFIG_USB_RAREMONO=mCONFIG_USB_MA901=mCONFIG_RADIO_TEA5764=mCONFIG_RADIO_SAA7706H=mCONFIG_RADIO_TEF6862=mCONFIG_RADIO_WL1273=m## Texas Instruments WL128x FM driver (ST based)#CONFIG_RADIO_WL128X=mCONFIG_MEDIA_COMMON_OPTIONS=y## common driver options#CONFIG_VIDEO_CX2341X=mCONFIG_VIDEO_TVEEPROM=mCONFIG_CYPRESS_FIRMWARE=mCONFIG_DVB_B2C2_FLEXCOP=mCONFIG_SMS_SIANO_MDTV=mCONFIG_SMS_SIANO_RC=y# CONFIG_SMS_SIANO_DEBUGFS is not set## Media ancillary drivers (tuners, sensors, i2c, frontends)#CONFIG_MEDIA_SUBDRV_AUTOSELECT=yCONFIG_MEDIA_ATTACH=yCONFIG_VIDEO_IR_I2C=y## Audio decoders, processors and mixers#CONFIG_VIDEO_MSP3400=mCONFIG_VIDEO_CS53L32A=mCONFIG_VIDEO_UDA1342=mCONFIG_VIDEO_WM8775=mCONFIG_VIDEO_SONY_BTF_MPX=m## RDS decoders### Video decoders#CONFIG_VIDEO_SAA711X=mCONFIG_VIDEO_TVP5150=mCONFIG_VIDEO_TW2804=mCONFIG_VIDEO_TW9903=mCONFIG_VIDEO_TW9906=m## Video and audio decoders#CONFIG_VIDEO_CX25840=m## Video encoders### Camera sensor devices#CONFIG_VIDEO_OV7640=mCONFIG_VIDEO_OV7670=mCONFIG_VIDEO_MT9V011=m## Flash devices### Video improvement chips### Audio/Video compression chips### Miscellaneous helper chips### Sensors used on soc_camera driver### soc_camera sensor drivers#CONFIG_SOC_CAMERA_IMX074=mCONFIG_SOC_CAMERA_MT9M001=mCONFIG_SOC_CAMERA_MT9M111=mCONFIG_SOC_CAMERA_MT9T031=mCONFIG_SOC_CAMERA_MT9T112=mCONFIG_SOC_CAMERA_MT9V022=mCONFIG_SOC_CAMERA_OV2640=mCONFIG_SOC_CAMERA_OV5642=mCONFIG_SOC_CAMERA_OV6650=mCONFIG_SOC_CAMERA_OV772X=mCONFIG_SOC_CAMERA_OV9640=mCONFIG_SOC_CAMERA_OV9740=mCONFIG_SOC_CAMERA_RJ54N1=mCONFIG_SOC_CAMERA_TW9910=mCONFIG_MEDIA_TUNER=yCONFIG_MEDIA_TUNER_SIMPLE=yCONFIG_MEDIA_TUNER_TDA8290=yCONFIG_MEDIA_TUNER_TDA827X=yCONFIG_MEDIA_TUNER_TDA18271=yCONFIG_MEDIA_TUNER_TDA9887=yCONFIG_MEDIA_TUNER_TEA5761=yCONFIG_MEDIA_TUNER_TEA5767=yCONFIG_MEDIA_TUNER_MSI001=mCONFIG_MEDIA_TUNER_MT20XX=yCONFIG_MEDIA_TUNER_MT2060=mCONFIG_MEDIA_TUNER_MT2063=mCONFIG_MEDIA_TUNER_MT2266=mCONFIG_MEDIA_TUNER_QT1010=mCONFIG_MEDIA_TUNER_XC2028=yCONFIG_MEDIA_TUNER_XC5000=yCONFIG_MEDIA_TUNER_XC4000=yCONFIG_MEDIA_TUNER_MXL5005S=mCONFIG_MEDIA_TUNER_MXL5007T=mCONFIG_MEDIA_TUNER_MC44S803=yCONFIG_MEDIA_TUNER_MAX2165=mCONFIG_MEDIA_TUNER_TDA18218=mCONFIG_MEDIA_TUNER_FC0011=mCONFIG_MEDIA_TUNER_FC0012=mCONFIG_MEDIA_TUNER_FC0013=mCONFIG_MEDIA_TUNER_TDA18212=mCONFIG_MEDIA_TUNER_E4000=mCONFIG_MEDIA_TUNER_FC2580=mCONFIG_MEDIA_TUNER_TUA9001=mCONFIG_MEDIA_TUNER_SI2157=mCONFIG_MEDIA_TUNER_IT913X=mCONFIG_MEDIA_TUNER_R820T=m## Multistandard (satellite) frontends#CONFIG_DVB_STB0899=mCONFIG_DVB_STB6100=mCONFIG_DVB_STV090x=mCONFIG_DVB_STV6110x=mCONFIG_DVB_M88DS3103=m## Multistandard (cable + terrestrial) frontends#CONFIG_DVB_DRXK=mCONFIG_DVB_TDA18271C2DD=mCONFIG_DVB_SI2165=m## DVB-S (satellite) frontends#CONFIG_DVB_CX24123=mCONFIG_DVB_MT312=mCONFIG_DVB_ZL10039=mCONFIG_DVB_S5H1420=mCONFIG_DVB_STV0288=mCONFIG_DVB_STB6000=mCONFIG_DVB_STV0299=mCONFIG_DVB_STV6110=mCONFIG_DVB_STV0900=mCONFIG_DVB_TDA8083=mCONFIG_DVB_TDA10086=mCONFIG_DVB_TUNER_ITD1000=mCONFIG_DVB_TUNER_CX24113=mCONFIG_DVB_TDA826X=mCONFIG_DVB_CX24116=mCONFIG_DVB_SI21XX=mCONFIG_DVB_TS2020=mCONFIG_DVB_DS3000=mCONFIG_DVB_TDA10071=m## DVB-T (terrestrial) frontends#CONFIG_DVB_CX22700=mCONFIG_DVB_CX22702=mCONFIG_DVB_DRXD=mCONFIG_DVB_TDA1004X=mCONFIG_DVB_NXT6000=mCONFIG_DVB_MT352=mCONFIG_DVB_ZL10353=mCONFIG_DVB_DIB3000MB=mCONFIG_DVB_DIB3000MC=mCONFIG_DVB_DIB7000M=mCONFIG_DVB_DIB7000P=mCONFIG_DVB_TDA10048=mCONFIG_DVB_AF9013=mCONFIG_DVB_EC100=mCONFIG_DVB_CXD2820R=mCONFIG_DVB_RTL2830=mCONFIG_DVB_RTL2832=mCONFIG_DVB_RTL2832_SDR=mCONFIG_DVB_SI2168=mCONFIG_DVB_AS102_FE=m## DVB-C (cable) frontends#CONFIG_DVB_VES1820=mCONFIG_DVB_TDA10023=mCONFIG_DVB_STV0297=m## ATSC (North American/Korean Terrestrial/Cable DTV) frontends#CONFIG_DVB_NXT200X=mCONFIG_DVB_BCM3510=mCONFIG_DVB_LGDT330X=mCONFIG_DVB_LGDT3305=mCONFIG_DVB_LGDT3306A=mCONFIG_DVB_LG2160=mCONFIG_DVB_S5H1409=mCONFIG_DVB_AU8522=mCONFIG_DVB_AU8522_DTV=mCONFIG_DVB_AU8522_V4L=mCONFIG_DVB_S5H1411=m## ISDB-T (terrestrial) frontends#CONFIG_DVB_S921=mCONFIG_DVB_DIB8000=mCONFIG_DVB_MB86A20S=m## ISDB-S (satellite) & ISDB-T (terrestrial) frontends### Digital terrestrial only tuners/PLL#CONFIG_DVB_PLL=mCONFIG_DVB_TUNER_DIB0070=mCONFIG_DVB_TUNER_DIB0090=m## SEC control devices for DVB-S#CONFIG_DVB_DRX39XYJ=mCONFIG_DVB_LNBP21=mCONFIG_DVB_LNBP22=mCONFIG_DVB_ISL6421=mCONFIG_DVB_ISL6423=mCONFIG_DVB_A8293=mCONFIG_DVB_SP2=mCONFIG_DVB_LGS8GXX=mCONFIG_DVB_ATBM8830=mCONFIG_DVB_IX2505V=mCONFIG_DVB_M88RS2000=mCONFIG_DVB_AF9033=m## Tools to develop new frontends## CONFIG_DVB_DUMMY_FE is not set## Graphics support#CONFIG_VGA_ARB=yCONFIG_VGA_ARB_MAX_GPUS=16CONFIG_TEGRA_HOST1X=yCONFIG_TEGRA_HOST1X_FIREWALL=y# CONFIG_IMX_IPUV3_CORE is not set## Direct Rendering Manager#CONFIG_DRM=yCONFIG_DRM_MIPI_DSI=yCONFIG_DRM_KMS_HELPER=yCONFIG_DRM_KMS_FB_HELPER=y# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set## I2C encoder or helper chips## CONFIG_DRM_I2C_ADV7511 is not set# CONFIG_DRM_I2C_CH7006 is not set# CONFIG_DRM_I2C_SIL164 is not set# CONFIG_DRM_I2C_NXP_TDA998X is not set# CONFIG_DRM_PTN3460 is not set# CONFIG_DRM_PS8622 is not set# CONFIG_DRM_TDFX is not set# CONFIG_DRM_R128 is not set# CONFIG_DRM_RADEON is not set# CONFIG_DRM_NOUVEAU is not set# CONFIG_DRM_MGA is not set# CONFIG_DRM_VIA is not set# CONFIG_DRM_SAVAGE is not set# CONFIG_DRM_VGEM is not set# CONFIG_DRM_EXYNOS is not set# CONFIG_DRM_VMWGFX is not set# CONFIG_DRM_UDL is not set# CONFIG_DRM_AST is not set# CONFIG_DRM_MGAG200 is not set# CONFIG_DRM_CIRRUS_QEMU is not set# CONFIG_DRM_ARMADA is not set# CONFIG_DRM_RCAR_DU is not set# CONFIG_DRM_SHMOBILE is not set# CONFIG_DRM_OMAP is not set# CONFIG_DRM_TILCDC is not set# CONFIG_DRM_QXL is not set# CONFIG_DRM_BOCHS is not setCONFIG_DRM_MSM=yCONFIG_DRM_MSM_FBDEV=y# CONFIG_DRM_MSM_REGISTER_LOGGING is not setCONFIG_DRM_MSM_DSI=yCONFIG_DRM_TEGRA=yCONFIG_DRM_TEGRA_FBDEV=y# CONFIG_DRM_TEGRA_DEBUG is not set# CONFIG_DRM_TEGRA_STAGING is not setCONFIG_DRM_PANEL=y## Display Panels#CONFIG_DRM_PANEL_SIMPLE=y# CONFIG_DRM_PANEL_LD9040 is not set# CONFIG_DRM_PANEL_S6E8AA0 is not set# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set# CONFIG_DRM_STI is not set## Frame buffer Devices#CONFIG_FB=y# CONFIG_FIRMWARE_EDID is not setCONFIG_FB_CMDLINE=y# CONFIG_FB_DDC is not set# CONFIG_FB_BOOT_VESA_SUPPORT is not setCONFIG_FB_CFB_FILLRECT=yCONFIG_FB_CFB_COPYAREA=yCONFIG_FB_CFB_IMAGEBLIT=y# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not setCONFIG_FB_SYS_FILLRECT=yCONFIG_FB_SYS_COPYAREA=yCONFIG_FB_SYS_IMAGEBLIT=y# CONFIG_FB_FOREIGN_ENDIAN is not setCONFIG_FB_SYS_FOPS=yCONFIG_FB_DEFERRED_IO=y# CONFIG_FB_SVGALIB is not set# CONFIG_FB_MACMODES is not setCONFIG_FB_BACKLIGHT=yCONFIG_FB_MODE_HELPERS=y# CONFIG_FB_TILEBLITTING is not set## Frame buffer hardware drivers## CONFIG_FB_CIRRUS is not set# CONFIG_FB_PM2 is not setCONFIG_FB_ARMCLCD=yCONFIG_PLAT_VERSATILE_CLCD=y# CONFIG_FB_IMX is not set# CONFIG_FB_CYBER2000 is not set# CONFIG_FB_ASILIANT is not set# CONFIG_FB_IMSTT is not set# CONFIG_FB_UVESA is not set# CONFIG_FB_OPENCORES is not set# CONFIG_FB_S1D13XXX is not set# CONFIG_FB_NVIDIA is not set# CONFIG_FB_RIVA is not set# CONFIG_FB_I740 is not set# CONFIG_FB_MATROX is not set# CONFIG_FB_RADEON is not set# CONFIG_FB_ATY128 is not set# CONFIG_FB_ATY is not set# CONFIG_FB_S3 is not set# CONFIG_FB_SAVAGE is not set# CONFIG_FB_SIS is not set# CONFIG_FB_NEOMAGIC is not set# CONFIG_FB_KYRO is not set# CONFIG_FB_3DFX is not set# CONFIG_FB_VOODOO1 is not set# CONFIG_FB_VT8623 is not set# CONFIG_FB_TRIDENT is not set# CONFIG_FB_ARK is not set# CONFIG_FB_PM3 is not set# CONFIG_FB_CARMINE is not set# CONFIG_FB_VT8500 is not setCONFIG_FB_WM8505=y# CONFIG_FB_WMT_GE_ROPS is not set# CONFIG_FB_SH_MOBILE_LCDC is not set# CONFIG_FB_S3C is not set# CONFIG_FB_SMSCUFX is not set# CONFIG_FB_UDL is not set# CONFIG_FB_XILINX is not set# CONFIG_FB_DA8XX is not set# CONFIG_FB_VIRTUAL is not setCONFIG_XEN_FBDEV_FRONTEND=y# CONFIG_FB_METRONOME is not set# CONFIG_FB_MB862XX is not setCONFIG_FB_MX3=y# CONFIG_FB_BROADSHEET is not set# CONFIG_FB_AUO_K190X is not set# CONFIG_FB_MXS is not setCONFIG_FB_SIMPLE=yCONFIG_OMAP2_VRFB=yCONFIG_OMAP2_DSS_INIT=yCONFIG_OMAP2_DSS=m# CONFIG_OMAP2_DSS_DEBUG is not set# CONFIG_OMAP2_DSS_DEBUGFS is not setCONFIG_OMAP2_DSS_DPI=yCONFIG_OMAP2_DSS_VENC=yCONFIG_OMAP2_DSS_HDMI_COMMON=yCONFIG_OMAP4_DSS_HDMI=y# CONFIG_OMAP5_DSS_HDMI is not set# CONFIG_OMAP2_DSS_SDI is not set# CONFIG_OMAP2_DSS_DSI is not setCONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y# CONFIG_FB_OMAP2 is not set## OMAP Display Device Drivers (new device model)## CONFIG_DISPLAY_ENCODER_OPA362 is not set# CONFIG_DISPLAY_ENCODER_TFP410 is not set# CONFIG_DISPLAY_ENCODER_TPD12S015 is not set# CONFIG_DISPLAY_CONNECTOR_DVI is not set# CONFIG_DISPLAY_CONNECTOR_HDMI is not set# CONFIG_DISPLAY_CONNECTOR_ANALOG_TV is not set# CONFIG_DISPLAY_PANEL_DPI is not set# CONFIG_DISPLAY_PANEL_DSI_CM is not set# CONFIG_DISPLAY_PANEL_SONY_ACX565AKM is not set# CONFIG_DISPLAY_PANEL_LGPHILIPS_LB035Q02 is not set# CONFIG_DISPLAY_PANEL_SHARP_LS037V7DW01 is not set# CONFIG_DISPLAY_PANEL_TPO_TD028TTEC1 is not set# CONFIG_DISPLAY_PANEL_TPO_TD043MTEA1 is not set# CONFIG_DISPLAY_PANEL_NEC_NL8048HL11 is not set# CONFIG_EXYNOS_VIDEO is not set# CONFIG_FB_SH_MOBILE_MERAM is not set# CONFIG_FB_SSD1307 is not setCONFIG_BACKLIGHT_LCD_SUPPORT=yCONFIG_LCD_CLASS_DEVICE=m# CONFIG_LCD_L4F00242T03 is not set# CONFIG_LCD_LMS283GF05 is not set# CONFIG_LCD_LTV350QV is not set# CONFIG_LCD_ILI922X is not set# CONFIG_LCD_ILI9320 is not set# CONFIG_LCD_TDO24M is not set# CONFIG_LCD_VGG2432A4 is not set# CONFIG_LCD_PLATFORM is not set# CONFIG_LCD_S6E63M0 is not set# CONFIG_LCD_LD9040 is not set# CONFIG_LCD_AMS369FG06 is not set# CONFIG_LCD_LMS501KF03 is not set# CONFIG_LCD_HX8357 is not setCONFIG_BACKLIGHT_CLASS_DEVICE=yCONFIG_BACKLIGHT_GENERIC=yCONFIG_BACKLIGHT_PWM=y# CONFIG_BACKLIGHT_ADP8860 is not set# CONFIG_BACKLIGHT_ADP8870 is not set# CONFIG_BACKLIGHT_LM3630A is not set# CONFIG_BACKLIGHT_LM3639 is not set# CONFIG_BACKLIGHT_LP855X is not set# CONFIG_BACKLIGHT_PANDORA is not set# CONFIG_BACKLIGHT_GPIO is not set# CONFIG_BACKLIGHT_LV5207LP is not set# CONFIG_BACKLIGHT_BD6107 is not set# CONFIG_VGASTATE is not setCONFIG_VIDEOMODE_HELPERS=yCONFIG_HDMI=y## Console display driver support#CONFIG_DUMMY_CONSOLE=yCONFIG_FRAMEBUFFER_CONSOLE=yCONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=yCONFIG_FRAMEBUFFER_CONSOLE_ROTATION=yCONFIG_LOGO=yCONFIG_LOGO_LINUX_MONO=yCONFIG_LOGO_LINUX_VGA16=yCONFIG_LOGO_LINUX_CLUT224=yCONFIG_SOUND=yCONFIG_SOUND_OSS_CORE=yCONFIG_SOUND_OSS_CORE_PRECLAIM=yCONFIG_SND=yCONFIG_SND_TIMER=yCONFIG_SND_PCM=yCONFIG_SND_DMAENGINE_PCM=yCONFIG_SND_HWDEP=mCONFIG_SND_RAWMIDI=mCONFIG_SND_COMPRESS_OFFLOAD=yCONFIG_SND_JACK=yCONFIG_SND_SEQUENCER=mCONFIG_SND_SEQ_DUMMY=mCONFIG_SND_OSSEMUL=yCONFIG_SND_MIXER_OSS=mCONFIG_SND_PCM_OSS=mCONFIG_SND_PCM_OSS_PLUGINS=yCONFIG_SND_SEQUENCER_OSS=yCONFIG_SND_HRTIMER=mCONFIG_SND_SEQ_HRTIMER_DEFAULT=yCONFIG_SND_DYNAMIC_MINORS=yCONFIG_SND_MAX_CARDS=32CONFIG_SND_SUPPORT_OLD_API=yCONFIG_SND_VERBOSE_PROCFS=y# CONFIG_SND_VERBOSE_PRINTK is not set# CONFIG_SND_DEBUG is not setCONFIG_SND_VMASTER=yCONFIG_SND_RAWMIDI_SEQ=m# CONFIG_SND_OPL3_LIB_SEQ is not set# CONFIG_SND_OPL4_LIB_SEQ is not set# CONFIG_SND_SBAWE_SEQ is not set# CONFIG_SND_EMU10K1_SEQ is not setCONFIG_SND_MPU401_UART=mCONFIG_SND_AC97_CODEC=mCONFIG_SND_DRIVERS=yCONFIG_SND_DUMMY=mCONFIG_SND_ALOOP=mCONFIG_SND_VIRMIDI=mCONFIG_SND_MTPAV=mCONFIG_SND_MTS64=mCONFIG_SND_SERIAL_U16550=mCONFIG_SND_MPU401=mCONFIG_SND_PORTMAN2X4=m# CONFIG_SND_AC97_POWER_SAVE is not setCONFIG_SND_PCI=y# CONFIG_SND_AD1889 is not set# CONFIG_SND_ALS300 is not set# CONFIG_SND_ALI5451 is not set# CONFIG_SND_ATIIXP is not set# CONFIG_SND_ATIIXP_MODEM is not set# CONFIG_SND_AU8810 is not set# CONFIG_SND_AU8820 is not set# CONFIG_SND_AU8830 is not set# CONFIG_SND_AW2 is not set# CONFIG_SND_AZT3328 is not set# CONFIG_SND_BT87X is not set# CONFIG_SND_CA0106 is not set# CONFIG_SND_CMIPCI is not set# CONFIG_SND_OXYGEN is not set# CONFIG_SND_CS4281 is not set# CONFIG_SND_CS46XX is not set# CONFIG_SND_CTXFI is not set# CONFIG_SND_DARLA20 is not set# CONFIG_SND_GINA20 is not set# CONFIG_SND_LAYLA20 is not set# CONFIG_SND_DARLA24 is not set# CONFIG_SND_GINA24 is not set# CONFIG_SND_LAYLA24 is not set# CONFIG_SND_MONA is not set# CONFIG_SND_MIA is not set# CONFIG_SND_ECHO3G is not set# CONFIG_SND_INDIGO is not set# CONFIG_SND_INDIGOIO is not set# CONFIG_SND_INDIGODJ is not set# CONFIG_SND_INDIGOIOX is not set# CONFIG_SND_INDIGODJX is not set# CONFIG_SND_EMU10K1 is not set# CONFIG_SND_EMU10K1X is not set# CONFIG_SND_ENS1370 is not set# CONFIG_SND_ENS1371 is not set# CONFIG_SND_ES1938 is not set# CONFIG_SND_ES1968 is not set# CONFIG_SND_FM801 is not set# CONFIG_SND_HDSP is not set# CONFIG_SND_HDSPM is not set# CONFIG_SND_ICE1712 is not set# CONFIG_SND_ICE1724 is not set# CONFIG_SND_INTEL8X0 is not set# CONFIG_SND_INTEL8X0M is not set# CONFIG_SND_KORG1212 is not set# CONFIG_SND_LOLA is not set# CONFIG_SND_MAESTRO3 is not set# CONFIG_SND_MIXART is not set# CONFIG_SND_NM256 is not set# CONFIG_SND_PCXHR is not set# CONFIG_SND_RIPTIDE is not set# CONFIG_SND_RME32 is not set# CONFIG_SND_RME96 is not set# CONFIG_SND_RME9652 is not set# CONFIG_SND_SE6X is not set# CONFIG_SND_SONICVIBES is not set# CONFIG_SND_TRIDENT is not set# CONFIG_SND_VIA82XX is not set# CONFIG_SND_VIA82XX_MODEM is not set# CONFIG_SND_VIRTUOSO is not set# CONFIG_SND_VX222 is not set# CONFIG_SND_YMFPCI is not set## HD-Audio## CONFIG_SND_HDA_INTEL is not set# CONFIG_SND_HDA_TEGRA is not setCONFIG_SND_ARM=yCONFIG_SND_ARMAACI=mCONFIG_SND_SPI=yCONFIG_SND_USB=yCONFIG_SND_USB_AUDIO=mCONFIG_SND_USB_UA101=mCONFIG_SND_USB_CAIAQ=mCONFIG_SND_USB_CAIAQ_INPUT=yCONFIG_SND_USB_6FIRE=mCONFIG_SND_USB_HIFACE=mCONFIG_SND_BCD2000=m# CONFIG_SND_USB_POD is not set# CONFIG_SND_USB_PODHD is not set# CONFIG_SND_USB_TONEPORT is not set# CONFIG_SND_USB_VARIAX is not setCONFIG_SND_SOC=yCONFIG_SND_SOC_AC97_BUS=yCONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=yCONFIG_SND_SOC_ADI=mCONFIG_SND_SOC_ADI_AXI_I2S=mCONFIG_SND_SOC_ADI_AXI_SPDIF=mCONFIG_SND_ATMEL_SOC=mCONFIG_SND_EDMA_SOC=mCONFIG_SND_DAVINCI_SOC_MCASP=mCONFIG_SND_DAVINCI_SOC_GENERIC_EVM=mCONFIG_SND_AM33XX_SOC_EVM=mCONFIG_SND_DESIGNWARE_I2S=m## SoC Audio for Freescale CPUs### Common SoC Audio options for Freescale CPUs:#CONFIG_SND_SOC_FSL_ASRC=mCONFIG_SND_SOC_FSL_SAI=mCONFIG_SND_SOC_FSL_SSI=mCONFIG_SND_SOC_FSL_SPDIF=mCONFIG_SND_SOC_FSL_ESAI=mCONFIG_SND_SOC_FSL_UTILS=mCONFIG_SND_SOC_IMX_PCM_DMA=mCONFIG_SND_SOC_IMX_AUDMUX=mCONFIG_SND_IMX_SOC=mCONFIG_SND_SOC_IMX_SSI=mCONFIG_SND_SOC_IMX_PCM_FIQ=m## SoC Audio support for Freescale i.MX boards:#CONFIG_SND_SOC_EUKREA_TLV320=mCONFIG_SND_SOC_IMX_WM8962=mCONFIG_SND_SOC_IMX_ES8328=mCONFIG_SND_SOC_IMX_SGTL5000=mCONFIG_SND_SOC_IMX_SPDIF=mCONFIG_SND_SOC_FSL_ASOC_CARD=mCONFIG_SND_OMAP_SOC=mCONFIG_SND_OMAP_SOC_MCBSP=mCONFIG_SND_OMAP_SOC_HDMI_AUDIO=mCONFIG_SND_OMAP_SOC_RX51=mCONFIG_SND_OMAP_SOC_AM3517EVM=mCONFIG_SND_OMAP_SOC_OMAP_TWL4030=mCONFIG_SND_OMAP_SOC_OMAP3_PANDORA=mCONFIG_SND_KIRKWOOD_SOC=m# CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB is not set# CONFIG_SND_SOC_QCOM is not setCONFIG_SND_SOC_ROCKCHIP=mCONFIG_SND_SOC_ROCKCHIP_I2S=mCONFIG_SND_SOC_SAMSUNG=mCONFIG_SND_SAMSUNG_PCM=mCONFIG_SND_SAMSUNG_SPDIF=mCONFIG_SND_SAMSUNG_I2S=mCONFIG_SND_SOC_SAMSUNG_SMDK_WM8994=mCONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF=mCONFIG_SND_SOC_SMDK_WM8994_PCM=mCONFIG_SND_SOC_SNOW=mCONFIG_SND_SOC_ODROIDX2=mCONFIG_SND_SOC_ARNDALE_RT5631_ALC5631=m## SoC Audio support for SuperH#CONFIG_SND_SOC_SH4_FSI=mCONFIG_SND_SOC_RCAR=m# CONFIG_SND_SOC_RSRC_CARD is not setCONFIG_SND_SOC_SIRF=mCONFIG_SND_SOC_SIRF_AUDIO=mCONFIG_SND_SOC_SIRF_AUDIO_PORT=mCONFIG_SND_SOC_SIRF_USP=mCONFIG_SND_SOC_TEGRA=mCONFIG_SND_SOC_TEGRA20_AC97=mCONFIG_SND_SOC_TEGRA20_DAS=mCONFIG_SND_SOC_TEGRA20_I2S=mCONFIG_SND_SOC_TEGRA20_SPDIF=mCONFIG_SND_SOC_TEGRA30_AHUB=mCONFIG_SND_SOC_TEGRA30_I2S=mCONFIG_SND_SOC_TEGRA_RT5640=mCONFIG_SND_SOC_TEGRA_WM8753=mCONFIG_SND_SOC_TEGRA_WM8903=mCONFIG_SND_SOC_TEGRA_WM9712=mCONFIG_SND_SOC_TEGRA_TRIMSLICE=mCONFIG_SND_SOC_TEGRA_ALC5632=mCONFIG_SND_SOC_TEGRA_MAX98090=m# CONFIG_SND_SOC_TEGRA_RT5677 is not setCONFIG_SND_SOC_UX500=m# CONFIG_SND_SOC_UX500_PLAT_DMA is not set# CONFIG_SND_SOC_UX500_MACH_MOP500 is not set# CONFIG_SND_SOC_XTFPGA_I2S is not setCONFIG_SND_SOC_I2C_AND_SPI=y## CODEC drivers#CONFIG_SND_SOC_WM_HUBS=mCONFIG_SND_SOC_ADAU1701=mCONFIG_SND_SOC_AK4104=mCONFIG_SND_SOC_AK4554=mCONFIG_SND_SOC_AK4642=mCONFIG_SND_SOC_AK5386=mCONFIG_SND_SOC_ALC5623=mCONFIG_SND_SOC_ALC5632=mCONFIG_SND_SOC_CS35L32=mCONFIG_SND_SOC_CS42L51=mCONFIG_SND_SOC_CS42L51_I2C=mCONFIG_SND_SOC_CS42L52=mCONFIG_SND_SOC_CS42L56=mCONFIG_SND_SOC_CS42L73=mCONFIG_SND_SOC_CS4265=mCONFIG_SND_SOC_CS4270=mCONFIG_SND_SOC_CS4271=mCONFIG_SND_SOC_CS4271_I2C=mCONFIG_SND_SOC_CS4271_SPI=mCONFIG_SND_SOC_CS42XX8=mCONFIG_SND_SOC_CS42XX8_I2C=mCONFIG_SND_SOC_HDMI_CODEC=mCONFIG_SND_SOC_ES8328=mCONFIG_SND_SOC_ES8328_I2C=mCONFIG_SND_SOC_ES8328_SPI=mCONFIG_SND_SOC_MAX98090=mCONFIG_SND_SOC_MAX98095=mCONFIG_SND_SOC_PCM1681=mCONFIG_SND_SOC_PCM1792A=mCONFIG_SND_SOC_PCM512x=mCONFIG_SND_SOC_PCM512x_I2C=mCONFIG_SND_SOC_PCM512x_SPI=mCONFIG_SND_SOC_RL6231=mCONFIG_SND_SOC_RT5631=mCONFIG_SND_SOC_RT5640=m# CONFIG_SND_SOC_RT5677_SPI is not setCONFIG_SND_SOC_SGTL5000=mCONFIG_SND_SOC_SIGMADSP=mCONFIG_SND_SOC_SIGMADSP_I2C=mCONFIG_SND_SOC_SIRF_AUDIO_CODEC=mCONFIG_SND_SOC_SPDIF=mCONFIG_SND_SOC_SSM2602=mCONFIG_SND_SOC_SSM2602_SPI=mCONFIG_SND_SOC_SSM2602_I2C=mCONFIG_SND_SOC_SSM4567=m# CONFIG_SND_SOC_STA32X is not setCONFIG_SND_SOC_STA350=mCONFIG_SND_SOC_TAS2552=mCONFIG_SND_SOC_TAS5086=mCONFIG_SND_SOC_TFA9879=mCONFIG_SND_SOC_TLV320AIC23=yCONFIG_SND_SOC_TLV320AIC23_I2C=yCONFIG_SND_SOC_TLV320AIC23_SPI=mCONFIG_SND_SOC_TLV320AIC31XX=mCONFIG_SND_SOC_TLV320AIC3X=mCONFIG_SND_SOC_TS3A227E=mCONFIG_SND_SOC_TWL4030=mCONFIG_SND_SOC_WM8510=mCONFIG_SND_SOC_WM8523=mCONFIG_SND_SOC_WM8580=mCONFIG_SND_SOC_WM8711=mCONFIG_SND_SOC_WM8728=mCONFIG_SND_SOC_WM8731=mCONFIG_SND_SOC_WM8737=mCONFIG_SND_SOC_WM8741=mCONFIG_SND_SOC_WM8750=mCONFIG_SND_SOC_WM8753=yCONFIG_SND_SOC_WM8770=mCONFIG_SND_SOC_WM8776=m# CONFIG_SND_SOC_WM8804_I2C is not set# CONFIG_SND_SOC_WM8804_SPI is not setCONFIG_SND_SOC_WM8903=yCONFIG_SND_SOC_WM8962=mCONFIG_SND_SOC_WM8978=mCONFIG_SND_SOC_WM8994=mCONFIG_SND_SOC_WM9712=mCONFIG_SND_SOC_TPA6130A2=mCONFIG_SND_SIMPLE_CARD=m# CONFIG_SOUND_PRIME is not setCONFIG_AC97_BUS=y## HID support#CONFIG_HID=yCONFIG_HID_BATTERY_STRENGTH=yCONFIG_HIDRAW=y# CONFIG_UHID is not setCONFIG_HID_GENERIC=y## Special HID drivers#CONFIG_HID_A4TECH=y# CONFIG_HID_ACRUX is not setCONFIG_HID_APPLE=y# CONFIG_HID_APPLEIR is not set# CONFIG_HID_AUREAL is not setCONFIG_HID_BELKIN=y# CONFIG_HID_BETOP_FF is not setCONFIG_HID_CHERRY=yCONFIG_HID_CHICONY=y# CONFIG_HID_PRODIKEYS is not set# CONFIG_HID_CP2112 is not setCONFIG_HID_CYPRESS=mCONFIG_HID_DRAGONRISE=m# CONFIG_DRAGONRISE_FF is not setCONFIG_HID_EMS_FF=mCONFIG_HID_ELECOM=mCONFIG_HID_ELO=mCONFIG_HID_EZKEY=mCONFIG_HID_HOLTEK=m# CONFIG_HOLTEK_FF is not set# CONFIG_HID_GT683R is not setCONFIG_HID_KEYTOUCH=mCONFIG_HID_KYE=mCONFIG_HID_UCLOGIC=mCONFIG_HID_WALTOP=mCONFIG_HID_GYRATION=m# CONFIG_HID_ICADE is not setCONFIG_HID_TWINHAN=mCONFIG_HID_KENSINGTON=mCONFIG_HID_LCPOWER=m# CONFIG_HID_LENOVO is not setCONFIG_HID_LOGITECH=yCONFIG_HID_LOGITECH_DJ=yCONFIG_HID_LOGITECH_HIDPP=yCONFIG_LOGITECH_FF=yCONFIG_LOGIRUMBLEPAD2_FF=yCONFIG_LOGIG940_FF=yCONFIG_LOGIWHEELS_FF=y# CONFIG_HID_MAGICMOUSE is not setCONFIG_HID_MICROSOFT=yCONFIG_HID_MONTEREY=yCONFIG_HID_MULTITOUCH=mCONFIG_HID_NTRIG=mCONFIG_HID_ORTEK=mCONFIG_HID_PANTHERLORD=m# CONFIG_PANTHERLORD_FF is not set# CONFIG_HID_PENMOUNT is not setCONFIG_HID_PETALYNX=mCONFIG_HID_PICOLCD=m# CONFIG_HID_PICOLCD_FB is not set# CONFIG_HID_PICOLCD_BACKLIGHT is not set# CONFIG_HID_PICOLCD_LCD is not set# CONFIG_HID_PICOLCD_LEDS is not set# CONFIG_HID_PICOLCD_CIR is not set# CONFIG_HID_PLANTRONICS is not set# CONFIG_HID_PRIMAX is not setCONFIG_HID_ROCCAT=m# CONFIG_HID_SAITEK is not setCONFIG_HID_SAMSUNG=mCONFIG_HID_SONY=m# CONFIG_SONY_FF is not setCONFIG_HID_SPEEDLINK=m# CONFIG_HID_STEELSERIES is not setCONFIG_HID_SUNPLUS=m# CONFIG_HID_RMI is not setCONFIG_HID_GREENASIA=m# CONFIG_GREENASIA_FF is not setCONFIG_HID_SMARTJOYPLUS=m# CONFIG_SMARTJOYPLUS_FF is not set# CONFIG_HID_TIVO is not setCONFIG_HID_TOPSEED=mCONFIG_HID_THINGM=mCONFIG_HID_THRUSTMASTER=m# CONFIG_THRUSTMASTER_FF is not setCONFIG_HID_WACOM=mCONFIG_HID_WIIMOTE=mCONFIG_HID_XINMO=mCONFIG_HID_ZEROPLUS=m# CONFIG_ZEROPLUS_FF is not setCONFIG_HID_ZYDACRON=m# CONFIG_HID_SENSOR_HUB is not set## USB HID support#CONFIG_USB_HID=yCONFIG_HID_PID=yCONFIG_USB_HIDDEV=y## I2C HID support## CONFIG_I2C_HID is not setCONFIG_USB_OHCI_LITTLE_ENDIAN=yCONFIG_USB_SUPPORT=yCONFIG_USB_COMMON=yCONFIG_USB_ARCH_HAS_HCD=yCONFIG_USB=yCONFIG_USB_ANNOUNCE_NEW_DEVICES=y## Miscellaneous USB options#CONFIG_USB_DEFAULT_PERSIST=y# CONFIG_USB_DYNAMIC_MINORS is not set# CONFIG_USB_OTG is not set# CONFIG_USB_OTG_WHITELIST is not set# CONFIG_USB_OTG_BLACKLIST_HUB is not set# CONFIG_USB_OTG_FSM is not setCONFIG_USB_MON=m# CONFIG_USB_WUSB_CBAF is not set## USB Host Controller Drivers## CONFIG_USB_C67X00_HCD is not setCONFIG_USB_XHCI_HCD=yCONFIG_USB_XHCI_PCI=yCONFIG_USB_XHCI_PLATFORM=yCONFIG_USB_XHCI_MVEBU=y# CONFIG_USB_XHCI_RCAR is not setCONFIG_USB_EHCI_HCD=yCONFIG_USB_EHCI_ROOT_HUB_TT=yCONFIG_USB_EHCI_TT_NEWSCHED=yCONFIG_USB_EHCI_PCI=y# CONFIG_USB_EHCI_MXC is not setCONFIG_USB_EHCI_HCD_OMAP=yCONFIG_USB_EHCI_HCD_ORION=yCONFIG_USB_EHCI_HCD_SPEAR=yCONFIG_USB_EHCI_HCD_STI=y# CONFIG_USB_EHCI_MSM is not setCONFIG_USB_EHCI_TEGRA=yCONFIG_USB_EHCI_EXYNOS=yCONFIG_USB_EHCI_HCD_PLATFORM=y# CONFIG_USB_OXU210HP_HCD is not set# CONFIG_USB_ISP116X_HCD is not set# CONFIG_USB_ISP1362_HCD is not set# CONFIG_USB_FUSBH200_HCD is not set# CONFIG_USB_FOTG210_HCD is not set# CONFIG_USB_MAX3421_HCD is not setCONFIG_USB_OHCI_HCD=yCONFIG_USB_OHCI_HCD_SPEAR=yCONFIG_USB_OHCI_HCD_STI=yCONFIG_USB_OHCI_HCD_OMAP3=yCONFIG_USB_OHCI_HCD_PCI=y# CONFIG_USB_OHCI_EXYNOS is not setCONFIG_USB_OHCI_HCD_PLATFORM=y# CONFIG_USB_UHCI_HCD is not setCONFIG_USB_UHCI_SUPPORT_NON_PCI_HC=yCONFIG_USB_UHCI_PLATFORM=y# CONFIG_USB_U132_HCD is not set# CONFIG_USB_SL811_HCD is not set# CONFIG_USB_R8A66597_HCD is not set# CONFIG_USB_IMX21_HCD is not set# CONFIG_USB_HCD_BCMA is not set# CONFIG_USB_HCD_SSB is not set# CONFIG_USB_HCD_TEST_MODE is not set## USB Device Class drivers#CONFIG_USB_ACM=mCONFIG_USB_PRINTER=mCONFIG_USB_WDM=m# CONFIG_USB_TMC is not set## NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may### also be needed; see USB_STORAGE Help for more info#CONFIG_USB_STORAGE=y# CONFIG_USB_STORAGE_DEBUG is not setCONFIG_USB_STORAGE_REALTEK=mCONFIG_REALTEK_AUTOPM=yCONFIG_USB_STORAGE_DATAFAB=mCONFIG_USB_STORAGE_FREECOM=mCONFIG_USB_STORAGE_ISD200=mCONFIG_USB_STORAGE_USBAT=mCONFIG_USB_STORAGE_SDDR09=mCONFIG_USB_STORAGE_SDDR55=mCONFIG_USB_STORAGE_JUMPSHOT=mCONFIG_USB_STORAGE_ALAUDA=mCONFIG_USB_STORAGE_ONETOUCH=mCONFIG_USB_STORAGE_KARMA=mCONFIG_USB_STORAGE_CYPRESS_ATACB=mCONFIG_USB_STORAGE_ENE_UB6250=m# CONFIG_USB_UAS is not set## USB Imaging devices#CONFIG_USB_MDC800=mCONFIG_USB_MICROTEK=mCONFIG_USBIP_CORE=mCONFIG_USBIP_VHCI_HCD=mCONFIG_USBIP_HOST=m# CONFIG_USBIP_DEBUG is not set# CONFIG_USB_MUSB_HDRC is not set# CONFIG_USB_DWC3 is not set# CONFIG_USB_DWC2 is not setCONFIG_USB_CHIPIDEA=yCONFIG_USB_CHIPIDEA_OF=yCONFIG_USB_CHIPIDEA_PCI=yCONFIG_USB_CHIPIDEA_HOST=y# CONFIG_USB_CHIPIDEA_DEBUG is not set# CONFIG_USB_ISP1760 is not set## USB port drivers## CONFIG_USB_USS720 is not setCONFIG_USB_SERIAL=mCONFIG_USB_SERIAL_GENERIC=yCONFIG_USB_SERIAL_SIMPLE=mCONFIG_USB_SERIAL_AIRCABLE=mCONFIG_USB_SERIAL_ARK3116=mCONFIG_USB_SERIAL_BELKIN=mCONFIG_USB_SERIAL_CH341=mCONFIG_USB_SERIAL_WHITEHEAT=mCONFIG_USB_SERIAL_DIGI_ACCELEPORT=mCONFIG_USB_SERIAL_CP210X=mCONFIG_USB_SERIAL_CYPRESS_M8=mCONFIG_USB_SERIAL_EMPEG=mCONFIG_USB_SERIAL_FTDI_SIO=mCONFIG_USB_SERIAL_VISOR=mCONFIG_USB_SERIAL_IPAQ=mCONFIG_USB_SERIAL_IR=mCONFIG_USB_SERIAL_EDGEPORT=mCONFIG_USB_SERIAL_EDGEPORT_TI=mCONFIG_USB_SERIAL_F81232=mCONFIG_USB_SERIAL_GARMIN=mCONFIG_USB_SERIAL_IPW=mCONFIG_USB_SERIAL_IUU=mCONFIG_USB_SERIAL_KEYSPAN_PDA=mCONFIG_USB_SERIAL_KEYSPAN=mCONFIG_USB_SERIAL_KEYSPAN_MPR=yCONFIG_USB_SERIAL_KEYSPAN_USA28=yCONFIG_USB_SERIAL_KEYSPAN_USA28X=yCONFIG_USB_SERIAL_KEYSPAN_USA28XA=yCONFIG_USB_SERIAL_KEYSPAN_USA28XB=yCONFIG_USB_SERIAL_KEYSPAN_USA19=yCONFIG_USB_SERIAL_KEYSPAN_USA18X=yCONFIG_USB_SERIAL_KEYSPAN_USA19W=yCONFIG_USB_SERIAL_KEYSPAN_USA19QW=yCONFIG_USB_SERIAL_KEYSPAN_USA19QI=yCONFIG_USB_SERIAL_KEYSPAN_USA49W=yCONFIG_USB_SERIAL_KEYSPAN_USA49WLC=yCONFIG_USB_SERIAL_KLSI=mCONFIG_USB_SERIAL_KOBIL_SCT=mCONFIG_USB_SERIAL_MCT_U232=mCONFIG_USB_SERIAL_METRO=mCONFIG_USB_SERIAL_MOS7720=mCONFIG_USB_SERIAL_MOS7715_PARPORT=yCONFIG_USB_SERIAL_MOS7840=mCONFIG_USB_SERIAL_MXUPORT=mCONFIG_USB_SERIAL_NAVMAN=mCONFIG_USB_SERIAL_PL2303=mCONFIG_USB_SERIAL_OTI6858=mCONFIG_USB_SERIAL_QCAUX=mCONFIG_USB_SERIAL_QUALCOMM=mCONFIG_USB_SERIAL_SPCP8X5=mCONFIG_USB_SERIAL_SAFE=mCONFIG_USB_SERIAL_SAFE_PADDED=yCONFIG_USB_SERIAL_SIERRAWIRELESS=mCONFIG_USB_SERIAL_SYMBOL=mCONFIG_USB_SERIAL_TI=mCONFIG_USB_SERIAL_CYBERJACK=mCONFIG_USB_SERIAL_XIRCOM=mCONFIG_USB_SERIAL_WWAN=mCONFIG_USB_SERIAL_OPTION=mCONFIG_USB_SERIAL_OMNINET=mCONFIG_USB_SERIAL_OPTICON=mCONFIG_USB_SERIAL_XSENS_MT=mCONFIG_USB_SERIAL_WISHBONE=mCONFIG_USB_SERIAL_SSU100=mCONFIG_USB_SERIAL_QT2=mCONFIG_USB_SERIAL_DEBUG=m## USB Miscellaneous drivers#CONFIG_USB_EMI62=mCONFIG_USB_EMI26=mCONFIG_USB_ADUTUX=mCONFIG_USB_SEVSEG=mCONFIG_USB_RIO500=mCONFIG_USB_LEGOTOWER=mCONFIG_USB_LCD=mCONFIG_USB_LED=mCONFIG_USB_CYPRESS_CY7C63=mCONFIG_USB_CYTHERM=mCONFIG_USB_IDMOUSE=mCONFIG_USB_FTDI_ELAN=mCONFIG_USB_APPLEDISPLAY=m# CONFIG_USB_SISUSBVGA is not setCONFIG_USB_LD=mCONFIG_USB_TRANCEVIBRATOR=mCONFIG_USB_IOWARRIOR=mCONFIG_USB_TEST=m# CONFIG_USB_EHSET_TEST_FIXTURE is not setCONFIG_USB_ISIGHTFW=mCONFIG_USB_YUREX=mCONFIG_USB_EZUSB_FX2=m# CONFIG_USB_HSIC_USB3503 is not set# CONFIG_USB_LINK_LAYER_TEST is not setCONFIG_USB_ATM=mCONFIG_USB_SPEEDTOUCH=mCONFIG_USB_CXACRU=mCONFIG_USB_UEAGLEATM=mCONFIG_USB_XUSBATM=m## USB Physical Layer drivers#CONFIG_USB_PHY=yCONFIG_AB8500_USB=y# CONFIG_KEYSTONE_USB_PHY is not setCONFIG_NOP_USB_XCEIV=y# CONFIG_AM335X_PHY_USB is not setCONFIG_USB_GPIO_VBUS=yCONFIG_USB_ISP1301=y# CONFIG_USB_MSM_OTG is not setCONFIG_USB_MXS_PHY=yCONFIG_USB_ULPI=yCONFIG_USB_ULPI_VIEWPORT=y# CONFIG_USB_GADGET is not set# CONFIG_USB_LED_TRIG is not set# CONFIG_UWB is not setCONFIG_MMC=y# CONFIG_MMC_DEBUG is not set# CONFIG_MMC_CLKGATE is not set## MMC/SD/SDIO Card Drivers#CONFIG_MMC_BLOCK=yCONFIG_MMC_BLOCK_MINORS=16CONFIG_MMC_BLOCK_BOUNCE=y# CONFIG_SDIO_UART is not set# CONFIG_MMC_TEST is not set## MMC/SD/SDIO Host Controller Drivers#CONFIG_MMC_ARMMMCI=yCONFIG_MMC_SDHCI=yCONFIG_MMC_SDHCI_IO_ACCESSORS=y# CONFIG_MMC_SDHCI_PCI is not setCONFIG_MMC_SDHCI_PLTFM=yCONFIG_MMC_SDHCI_OF_ARASAN=yCONFIG_MMC_SDHCI_ESDHC_IMX=yCONFIG_MMC_SDHCI_DOVE=yCONFIG_MMC_SDHCI_TEGRA=yCONFIG_MMC_SDHCI_S3C=y# CONFIG_MMC_SDHCI_SIRF is not set# CONFIG_MMC_SDHCI_PXAV3 is not setCONFIG_MMC_SDHCI_SPEAR=yCONFIG_MMC_SDHCI_S3C_DMA=yCONFIG_MMC_SDHCI_BCM_KONA=y# CONFIG_MMC_SDHCI_F_SDH30 is not setCONFIG_MMC_SDHCI_IPROC=yCONFIG_MMC_SDHCI_ST=yCONFIG_MMC_OMAP=yCONFIG_MMC_OMAP_HS=y# CONFIG_MMC_SDHCI_MSM is not set# CONFIG_MMC_MXC is not set# CONFIG_MMC_TIFM_SD is not setCONFIG_MMC_MVSDIO=y# CONFIG_MMC_SDHI is not set# CONFIG_MMC_CB710 is not set# CONFIG_MMC_VIA_SDMMC is not setCONFIG_MMC_DW=yCONFIG_MMC_DW_IDMAC=yCONFIG_MMC_DW_PLTFM=yCONFIG_MMC_DW_EXYNOS=y# CONFIG_MMC_DW_K3 is not set# CONFIG_MMC_DW_PCI is not setCONFIG_MMC_DW_ROCKCHIP=y# CONFIG_MMC_SH_MMCIF is not set# CONFIG_MMC_VUB300 is not set# CONFIG_MMC_USHC is not setCONFIG_MMC_WMT=y# CONFIG_MMC_USDHI6ROL0 is not setCONFIG_MMC_SUNXI=y# CONFIG_MMC_TOSHIBA_PCI is not setCONFIG_MEMSTICK=m# CONFIG_MEMSTICK_DEBUG is not set## MemoryStick drivers## CONFIG_MEMSTICK_UNSAFE_RESUME is not set# CONFIG_MSPRO_BLOCK is not set# CONFIG_MS_BLOCK is not set## MemoryStick Host Controller Drivers## CONFIG_MEMSTICK_TIFM_MS is not set# CONFIG_MEMSTICK_JMICRON_38X is not set# CONFIG_MEMSTICK_R592 is not setCONFIG_NEW_LEDS=yCONFIG_LEDS_CLASS=y# CONFIG_LEDS_CLASS_FLASH is not set## LED drivers## CONFIG_LEDS_LM3530 is not set# CONFIG_LEDS_LM3642 is not set# CONFIG_LEDS_PCA9532 is not setCONFIG_LEDS_GPIO=y# CONFIG_LEDS_LP3944 is not set# CONFIG_LEDS_LP5521 is not set# CONFIG_LEDS_LP5523 is not set# CONFIG_LEDS_LP5562 is not set# CONFIG_LEDS_LP8501 is not set# CONFIG_LEDS_LP8860 is not set# CONFIG_LEDS_PCA955X is not set# CONFIG_LEDS_PCA963X is not set# CONFIG_LEDS_DAC124S085 is not setCONFIG_LEDS_PWM=y# CONFIG_LEDS_REGULATOR is not set# CONFIG_LEDS_BD2802 is not set# CONFIG_LEDS_LT3593 is not set# CONFIG_LEDS_TCA6507 is not set# CONFIG_LEDS_LM355x is not set## LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)## CONFIG_LEDS_BLINKM is not set# CONFIG_LEDS_SYSCON is not set# CONFIG_LEDS_PM8941_WLED is not set## LED Triggers#CONFIG_LEDS_TRIGGERS=yCONFIG_LEDS_TRIGGER_TIMER=yCONFIG_LEDS_TRIGGER_ONESHOT=yCONFIG_LEDS_TRIGGER_HEARTBEAT=yCONFIG_LEDS_TRIGGER_BACKLIGHT=yCONFIG_LEDS_TRIGGER_CPU=yCONFIG_LEDS_TRIGGER_GPIO=yCONFIG_LEDS_TRIGGER_DEFAULT_ON=y## iptables trigger is under Netfilter config (LED target)#CONFIG_LEDS_TRIGGER_TRANSIENT=mCONFIG_LEDS_TRIGGER_CAMERA=m# CONFIG_LEDS_TRIGGER_MORSE is not set# CONFIG_LEDS_TRIGGER_NETDEV is not set# CONFIG_LEDS_TRIGGER_USBDEV is not set# CONFIG_ACCESSIBILITY is not set# CONFIG_INFINIBAND is not setCONFIG_EDAC=yCONFIG_EDAC_LEGACY_SYSFS=y# CONFIG_EDAC_DEBUG is not setCONFIG_EDAC_MM_EDAC=yCONFIG_EDAC_HIGHBANK_MC=yCONFIG_EDAC_HIGHBANK_L2=y# CONFIG_EDAC_ALTERA_MC is not set# CONFIG_EDAC_SYNOPSYS is not setCONFIG_RTC_LIB=yCONFIG_RTC_CLASS=yCONFIG_RTC_HCTOSYS=yCONFIG_RTC_SYSTOHC=yCONFIG_RTC_HCTOSYS_DEVICE="rtc0"# CONFIG_RTC_DEBUG is not set## RTC interfaces#CONFIG_RTC_INTF_SYSFS=yCONFIG_RTC_INTF_PROC=yCONFIG_RTC_INTF_DEV=y# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set# CONFIG_RTC_DRV_TEST is not set## I2C RTC drivers## CONFIG_RTC_DRV_ABB5ZES3 is not set# CONFIG_RTC_DRV_ABX80X is not set# CONFIG_RTC_DRV_AS3722 is not setCONFIG_RTC_DRV_DS1307=mCONFIG_RTC_DRV_DS1374=m# CONFIG_RTC_DRV_DS1374_WDT is not setCONFIG_RTC_DRV_DS1672=mCONFIG_RTC_DRV_DS3232=m# CONFIG_RTC_DRV_HYM8563 is not setCONFIG_RTC_DRV_MAX6900=m# CONFIG_RTC_DRV_MAX8907 is not set# CONFIG_RTC_DRV_MAX77686 is not set# CONFIG_RTC_DRV_MAX77802 is not setCONFIG_RTC_DRV_RS5C372=mCONFIG_RTC_DRV_ISL1208=mCONFIG_RTC_DRV_ISL12022=mCONFIG_RTC_DRV_ISL12057=mCONFIG_RTC_DRV_X1205=m# CONFIG_RTC_DRV_PALMAS is not setCONFIG_RTC_DRV_PCF2127=mCONFIG_RTC_DRV_PCF8523=mCONFIG_RTC_DRV_PCF8563=m# CONFIG_RTC_DRV_PCF85063 is not setCONFIG_RTC_DRV_PCF8583=mCONFIG_RTC_DRV_M41T80=m# CONFIG_RTC_DRV_M41T80_WDT is not setCONFIG_RTC_DRV_BQ32K=m# CONFIG_RTC_DRV_TWL4030 is not set# CONFIG_RTC_DRV_TPS6586X is not set# CONFIG_RTC_DRV_TPS65910 is not setCONFIG_RTC_DRV_S35390A=mCONFIG_RTC_DRV_FM3130=mCONFIG_RTC_DRV_RX8581=mCONFIG_RTC_DRV_RX8025=mCONFIG_RTC_DRV_EM3027=mCONFIG_RTC_DRV_RV3029C2=m# CONFIG_RTC_DRV_S5M is not set## SPI RTC drivers#CONFIG_RTC_DRV_M41T93=mCONFIG_RTC_DRV_M41T94=mCONFIG_RTC_DRV_DS1305=m# CONFIG_RTC_DRV_DS1343 is not set# CONFIG_RTC_DRV_DS1347 is not setCONFIG_RTC_DRV_DS1390=mCONFIG_RTC_DRV_MAX6902=mCONFIG_RTC_DRV_R9701=mCONFIG_RTC_DRV_RS5C348=mCONFIG_RTC_DRV_DS3234=mCONFIG_RTC_DRV_PCF2123=mCONFIG_RTC_DRV_RX4581=m# CONFIG_RTC_DRV_MCP795 is not set## Platform RTC drivers#CONFIG_RTC_DRV_CMOS=m# CONFIG_RTC_DRV_DS1286 is not set# CONFIG_RTC_DRV_DS1511 is not set# CONFIG_RTC_DRV_DS1553 is not set# CONFIG_RTC_DRV_DS1685_FAMILY is not set# CONFIG_RTC_DRV_DS1742 is not set# CONFIG_RTC_DRV_DS2404 is not set# CONFIG_RTC_DRV_STK17TA8 is not set# CONFIG_RTC_DRV_M48T86 is not set# CONFIG_RTC_DRV_M48T35 is not set# CONFIG_RTC_DRV_M48T59 is not set# CONFIG_RTC_DRV_MSM6242 is not set# CONFIG_RTC_DRV_BQ4802 is not set# CONFIG_RTC_DRV_RP5C01 is not set# CONFIG_RTC_DRV_V3020 is not setCONFIG_RTC_DRV_SPEAR=y# CONFIG_RTC_DRV_AB8500 is not set## on-CPU RTC drivers## CONFIG_RTC_DRV_IMXDI is not set# CONFIG_RTC_DRV_OMAP is not setCONFIG_HAVE_S3C_RTC=y# CONFIG_RTC_DRV_S3C is not set# CONFIG_RTC_DRV_PL030 is not setCONFIG_RTC_DRV_PL031=yCONFIG_RTC_DRV_VT8500=yCONFIG_RTC_DRV_SUN6I=yCONFIG_RTC_DRV_SUNXI=yCONFIG_RTC_DRV_MV=y# CONFIG_RTC_DRV_ARMADA38X is not setCONFIG_RTC_DRV_TEGRA=y# CONFIG_RTC_DRV_MXC is not set# CONFIG_RTC_DRV_SNVS is not set# CONFIG_RTC_DRV_SIRFSOC is not set# CONFIG_RTC_DRV_XGENE is not set## HID Sensor RTC drivers## CONFIG_RTC_DRV_HID_SENSOR_TIME is not setCONFIG_DMADEVICES=y# CONFIG_DMADEVICES_DEBUG is not set## DMA Devices#CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y# CONFIG_AMBA_PL08X is not setCONFIG_DW_DMAC_CORE=yCONFIG_DW_DMAC=y# CONFIG_DW_DMAC_PCI is not set# CONFIG_HSU_DMA_PCI is not setCONFIG_MV_XOR=yCONFIG_MX3_IPU=yCONFIG_MX3_IPU_IRQS=4CONFIG_TEGRA20_APB_DMA=yCONFIG_RENESAS_DMA=yCONFIG_SH_DMAE_BASE=y# CONFIG_SH_DMAE is not set# CONFIG_SUDMAC is not set# CONFIG_RCAR_HPB_DMAE is not set# CONFIG_RCAR_DMAC is not set# CONFIG_RENESAS_USB_DMAC is not setCONFIG_STE_DMA40=yCONFIG_SIRF_DMA=yCONFIG_TI_EDMA=yCONFIG_PL330_DMA=yCONFIG_IMX_SDMA=yCONFIG_IMX_DMA=yCONFIG_MXS_DMA=yCONFIG_DMA_OMAP=y# CONFIG_TI_CPPI41 is not set# CONFIG_K3_DMA is not set# CONFIG_FSL_EDMA is not setCONFIG_XILINX_VDMA=y# CONFIG_DMA_SUN6I is not set# CONFIG_NBPFAXI_DMA is not setCONFIG_DMA_ENGINE=yCONFIG_DMA_VIRTUAL_CHANNELS=yCONFIG_DMA_OF=y## DMA Clients## CONFIG_ASYNC_TX_DMA is not set# CONFIG_DMATEST is not setCONFIG_DMA_ENGINE_RAID=y# CONFIG_QCOM_BAM_DMA is not set# CONFIG_AUXDISPLAY is not setCONFIG_UIO=m# CONFIG_UIO_CIF is not set# CONFIG_UIO_PDRV_GENIRQ is not set# CONFIG_UIO_DMEM_GENIRQ is not set# CONFIG_UIO_AEC is not set# CONFIG_UIO_SERCOS3 is not set# CONFIG_UIO_PCI_GENERIC is not set# CONFIG_UIO_NETX is not set# CONFIG_UIO_MF624 is not setCONFIG_VIRT_DRIVERS=yCONFIG_VIRTIO=m## Virtio drivers## CONFIG_VIRTIO_PCI is not set# CONFIG_VIRTIO_BALLOON is not set# CONFIG_VIRTIO_INPUT is not setCONFIG_VIRTIO_MMIO=m# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set## Microsoft Hyper-V guest support### Xen driver support#CONFIG_XEN_BALLOON=yCONFIG_XEN_SCRUB_PAGES=yCONFIG_XEN_DEV_EVTCHN=yCONFIG_XEN_BACKEND=yCONFIG_XENFS=yCONFIG_XEN_COMPAT_XENFS=yCONFIG_XEN_SYS_HYPERVISOR=yCONFIG_XEN_XENBUS_FRONTEND=yCONFIG_XEN_GNTDEV=mCONFIG_XEN_GRANT_DEV_ALLOC=mCONFIG_SWIOTLB_XEN=yCONFIG_XEN_PRIVCMD=yCONFIG_XEN_AUTO_XLATE=yCONFIG_STAGING=yCONFIG_PRISM2_USB=mCONFIG_COMEDI=m# CONFIG_COMEDI_DEBUG is not setCONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480# CONFIG_COMEDI_MISC_DRIVERS is not set# CONFIG_COMEDI_ISA_DRIVERS is not set# CONFIG_COMEDI_PCI_DRIVERS is not set# CONFIG_COMEDI_USB_DRIVERS is not set# CONFIG_COMEDI_8255 is not set# CONFIG_COMEDI_KCOMEDILIB is not set# CONFIG_PANEL is not setCONFIG_RTL8192U=mCONFIG_RTLLIB=mCONFIG_RTLLIB_CRYPTO_CCMP=mCONFIG_RTLLIB_CRYPTO_TKIP=mCONFIG_RTLLIB_CRYPTO_WEP=mCONFIG_RTL8192E=mCONFIG_R8712U=mCONFIG_R8188EU=mCONFIG_88EU_AP_MODE=yCONFIG_R8723AU=mCONFIG_8723AU_AP_MODE=yCONFIG_8723AU_BT_COEXIST=yCONFIG_RTS5208=mCONFIG_VT6655=mCONFIG_VT6656=m## IIO staging drivers### Accelerometers#CONFIG_ADIS16201=mCONFIG_ADIS16203=mCONFIG_ADIS16204=mCONFIG_ADIS16209=mCONFIG_ADIS16220=mCONFIG_ADIS16240=mCONFIG_LIS3L02DQ=mCONFIG_SCA3000=m## Analog to digital converters## CONFIG_AD7606 is not set# CONFIG_AD7780 is not set# CONFIG_AD7816 is not set# CONFIG_AD7192 is not set# CONFIG_AD7280 is not set# CONFIG_SPEAR_ADC is not set## Analog digital bi-direction converters## CONFIG_ADT7316 is not set## Capacitance to digital converters## CONFIG_AD7150 is not set# CONFIG_AD7152 is not set# CONFIG_AD7746 is not set## Direct Digital Synthesis#CONFIG_AD9832=mCONFIG_AD9834=m## Digital gyroscope sensors## CONFIG_ADIS16060 is not set## Network Analyzer, Impedance Converters## CONFIG_AD5933 is not set## Light sensors#CONFIG_SENSORS_ISL29018=yCONFIG_SENSORS_ISL29028=y# CONFIG_TSL2583 is not set# CONFIG_TSL2x7x is not set## Magnetometer sensors## CONFIG_SENSORS_HMC5843_I2C is not set# CONFIG_SENSORS_HMC5843_SPI is not set## Active energy metering IC## CONFIG_ADE7753 is not set# CONFIG_ADE7754 is not set# CONFIG_ADE7758 is not set# CONFIG_ADE7759 is not set# CONFIG_ADE7854 is not set## Resolver to digital converters## CONFIG_AD2S90 is not set# CONFIG_AD2S1200 is not set# CONFIG_AD2S1210 is not set## Triggers - standalone## CONFIG_IIO_PERIODIC_RTC_TRIGGER is not set# CONFIG_IIO_SIMPLE_DUMMY is not set# CONFIG_FB_SM7XX is not set# CONFIG_FB_SM750 is not set# CONFIG_FB_XGI is not set# CONFIG_FT1000 is not set## Speakup console speech#CONFIG_SPEAKUP=m# CONFIG_SPEAKUP_SYNTH_ACNTSA is not set# CONFIG_SPEAKUP_SYNTH_APOLLO is not set# CONFIG_SPEAKUP_SYNTH_AUDPTR is not set# CONFIG_SPEAKUP_SYNTH_BNS is not set# CONFIG_SPEAKUP_SYNTH_DECTLK is not set# CONFIG_SPEAKUP_SYNTH_DECEXT is not set# CONFIG_SPEAKUP_SYNTH_LTLK is not setCONFIG_SPEAKUP_SYNTH_SOFT=m# CONFIG_SPEAKUP_SYNTH_SPKOUT is not set# CONFIG_SPEAKUP_SYNTH_TXPRT is not set# CONFIG_SPEAKUP_SYNTH_DUMMY is not set# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set# CONFIG_MFD_NVEC is not setCONFIG_STAGING_MEDIA=y# CONFIG_I2C_BCM2048 is not set# CONFIG_DVB_CXD2099 is not set# CONFIG_VIDEO_DT3155 is not set# CONFIG_DVB_MN88472 is not set# CONFIG_DVB_MN88473 is not set# CONFIG_VIDEO_OMAP4 is not set# CONFIG_LIRC_STAGING is not set## Android#CONFIG_USB_WPAN_HCD=m# CONFIG_WIMAX_GDM72XX is not set# CONFIG_LTE_GDM724X is not set# CONFIG_MTD_SPINAND_MT29F is not set# CONFIG_LUSTRE_FS is not set# CONFIG_DGNC is not set# CONFIG_DGAP is not set# CONFIG_GS_FPGABOOT is not set# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not setCONFIG_FB_TFT=mCONFIG_FB_TFT_AGM1264K_FL=mCONFIG_FB_TFT_BD663474=mCONFIG_FB_TFT_HX8340BN=mCONFIG_FB_TFT_HX8347D=mCONFIG_FB_TFT_HX8353D=m# CONFIG_FB_TFT_ILI9163 is not setCONFIG_FB_TFT_ILI9320=mCONFIG_FB_TFT_ILI9325=mCONFIG_FB_TFT_ILI9340=mCONFIG_FB_TFT_ILI9341=mCONFIG_FB_TFT_ILI9481=mCONFIG_FB_TFT_ILI9486=mCONFIG_FB_TFT_PCD8544=mCONFIG_FB_TFT_RA8875=mCONFIG_FB_TFT_S6D02A1=mCONFIG_FB_TFT_S6D1121=mCONFIG_FB_TFT_SSD1289=mCONFIG_FB_TFT_SSD1306=mCONFIG_FB_TFT_SSD1331=mCONFIG_FB_TFT_SSD1351=mCONFIG_FB_TFT_ST7735R=mCONFIG_FB_TFT_TINYLCD=mCONFIG_FB_TFT_TLS8204=mCONFIG_FB_TFT_UC1701=mCONFIG_FB_TFT_UPD161704=mCONFIG_FB_TFT_WATTEROTT=mCONFIG_FB_FLEX=mCONFIG_FB_TFT_FBTFT_DEVICE=m# CONFIG_I2O is not set# CONFIG_CHROME_PLATFORMS is not setCONFIG_CLKDEV_LOOKUP=yCONFIG_HAVE_CLK_PREPARE=yCONFIG_COMMON_CLK=y## Common Clock Framework#CONFIG_COMMON_CLK_VERSATILE=yCONFIG_CLK_SP810=yCONFIG_CLK_VEXPRESS_OSC=yCONFIG_COMMON_CLK_MAX_GEN=yCONFIG_COMMON_CLK_MAX77686=y# CONFIG_COMMON_CLK_MAX77802 is not set# CONFIG_COMMON_CLK_SI5351 is not set# CONFIG_COMMON_CLK_SI570 is not set# CONFIG_COMMON_CLK_S2MPS11 is not set# CONFIG_COMMON_CLK_AXI_CLKGEN is not set# CONFIG_CLK_QORIQ is not setCONFIG_COMMON_CLK_KEYSTONE=y# CONFIG_COMMON_CLK_PALMAS is not set# CONFIG_COMMON_CLK_PWM is not set# CONFIG_COMMON_CLK_PXA is not set# CONFIG_COMMON_CLK_CDCE706 is not setCONFIG_COMMON_CLK_QCOM=yCONFIG_APQ_GCC_8084=yCONFIG_APQ_MMCC_8084=y# CONFIG_IPQ_GCC_806X is not set# CONFIG_IPQ_LCC_806X is not setCONFIG_MSM_GCC_8660=y# CONFIG_MSM_GCC_8916 is not setCONFIG_MSM_GCC_8960=y# CONFIG_MSM_LCC_8960 is not setCONFIG_MSM_MMCC_8960=yCONFIG_MSM_GCC_8974=yCONFIG_MSM_MMCC_8974=yCONFIG_CLK_BCM_KONA=yCONFIG_MVEBU_CLK_COMMON=yCONFIG_MVEBU_CLK_CPU=yCONFIG_MVEBU_CLK_COREDIV=yCONFIG_ARMADA_370_CLK=yCONFIG_ARMADA_375_CLK=yCONFIG_ARMADA_38X_CLK=yCONFIG_ARMADA_XP_CLK=yCONFIG_DOVE_CLK=yCONFIG_COMMON_CLK_SAMSUNG=y## Hardware Spinlock drivers## CONFIG_HWSPINLOCK_OMAP is not set# CONFIG_HSEM_U8500 is not set## Clock Source drivers#CONFIG_CLKSRC_OF=yCONFIG_CLKSRC_MMIO=yCONFIG_DW_APB_TIMER=yCONFIG_DW_APB_TIMER_OF=yCONFIG_ROCKCHIP_TIMER=yCONFIG_ARMADA_370_XP_TIMER=yCONFIG_MESON6_TIMER=yCONFIG_ORION_TIMER=yCONFIG_SUN4I_TIMER=yCONFIG_SUN5I_HSTIMER=yCONFIG_TEGRA_TIMER=yCONFIG_VT8500_TIMER=yCONFIG_CADENCE_TTC_TIMER=yCONFIG_CLKSRC_NOMADIK_MTU=yCONFIG_CLKSRC_DBX500_PRCMU=yCONFIG_CLKSRC_DBX500_PRCMU_SCHED_CLOCK=yCONFIG_ARM_ARCH_TIMER=yCONFIG_ARM_ARCH_TIMER_EVTSTREAM=yCONFIG_ARM_GLOBAL_TIMER=yCONFIG_CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK=y# CONFIG_ATMEL_PIT is not setCONFIG_CLKSRC_EXYNOS_MCT=yCONFIG_CLKSRC_SAMSUNG_PWM=yCONFIG_MTK_TIMER=y# CONFIG_SH_TIMER_CMT is not set# CONFIG_SH_TIMER_MTU2 is not set# CONFIG_SH_TIMER_TMU is not set# CONFIG_EM_TIMER_STI is not setCONFIG_CLKSRC_QCOM=y# CONFIG_CLKSRC_VERSATILE is not setCONFIG_MAILBOX=y# CONFIG_ARM_MHU is not setCONFIG_PL320_MBOX=y# CONFIG_OMAP2PLUS_MBOX is not set# CONFIG_ALTERA_MBOX is not set# CONFIG_IOMMU_SUPPORT is not set## Remoteproc drivers## CONFIG_STE_MODEM_RPROC is not set## Rpmsg drivers### SOC (System On Chip) specific Drivers## CONFIG_MTK_PMIC_WRAP is not setCONFIG_QCOM_GSBI=y# CONFIG_SOC_TI is not setCONFIG_PM_DEVFREQ=y## DEVFREQ Governors#CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=mCONFIG_DEVFREQ_GOV_PERFORMANCE=mCONFIG_DEVFREQ_GOV_POWERSAVE=mCONFIG_DEVFREQ_GOV_USERSPACE=m## DEVFREQ Drivers## CONFIG_ARM_EXYNOS5_BUS_DEVFREQ is not set# CONFIG_ARM_TEGRA_DEVFREQ is not set# CONFIG_PM_DEVFREQ_EVENT is not setCONFIG_EXTCON=y## Extcon Device Drivers## CONFIG_EXTCON_ADC_JACK is not set# CONFIG_EXTCON_GPIO is not set# CONFIG_EXTCON_PALMAS is not set# CONFIG_EXTCON_RT8973A is not set# CONFIG_EXTCON_SM5502 is not set# CONFIG_EXTCON_USB_GPIO is not setCONFIG_MEMORY=y# CONFIG_TI_AEMIF is not set# CONFIG_TI_EMIF is not setCONFIG_OMAP_GPMC=yCONFIG_MVEBU_DEVBUS=yCONFIG_TEGRA20_MC=yCONFIG_TEGRA_MC=yCONFIG_IIO=yCONFIG_IIO_BUFFER=y# CONFIG_IIO_BUFFER_CB is not setCONFIG_IIO_KFIFO_BUF=yCONFIG_IIO_TRIGGERED_BUFFER=yCONFIG_IIO_TRIGGER=yCONFIG_IIO_CONSUMERS_PER_TRIGGER=2## Accelerometers## CONFIG_BMA180 is not set# CONFIG_BMC150_ACCEL is not set# CONFIG_IIO_ST_ACCEL_3AXIS is not set# CONFIG_KXSD9 is not set# CONFIG_MMA8452 is not set# CONFIG_KXCJK1013 is not set# CONFIG_MMA9551 is not set# CONFIG_MMA9553 is not set## Analog to digital converters## CONFIG_AD7266 is not set# CONFIG_AD7291 is not set# CONFIG_AD7298 is not set# CONFIG_AD7476 is not set# CONFIG_AD7791 is not set# CONFIG_AD7793 is not set# CONFIG_AD7887 is not set# CONFIG_AD7923 is not set# CONFIG_AD799X is not set# CONFIG_AXP288_ADC is not set# CONFIG_CC10001_ADC is not set# CONFIG_EXYNOS_ADC is not set# CONFIG_MAX1027 is not set# CONFIG_MAX1363 is not set# CONFIG_MCP320X is not set# CONFIG_MCP3422 is not set# CONFIG_NAU7802 is not set# CONFIG_ROCKCHIP_SARADC is not set# CONFIG_TI_ADC081C is not set# CONFIG_TI_ADC128S052 is not set# CONFIG_TWL4030_MADC is not set# CONFIG_TWL6030_GPADC is not set# CONFIG_VF610_ADC is not setCONFIG_XILINX_XADC=y## Amplifiers## CONFIG_AD8366 is not set## Hid Sensor IIO Common### SSP Sensor Common## CONFIG_IIO_SSP_SENSORHUB is not set## Digital to analog converters## CONFIG_AD5064 is not set# CONFIG_AD5360 is not set# CONFIG_AD5380 is not set# CONFIG_AD5421 is not set# CONFIG_AD5446 is not set# CONFIG_AD5449 is not set# CONFIG_AD5504 is not set# CONFIG_AD5624R_SPI is not set# CONFIG_AD5686 is not set# CONFIG_AD5755 is not set# CONFIG_AD5764 is not set# CONFIG_AD5791 is not set# CONFIG_AD7303 is not set# CONFIG_MAX517 is not set# CONFIG_MAX5821 is not set# CONFIG_MCP4725 is not set# CONFIG_MCP4922 is not set## Frequency Synthesizers DDS/PLL### Clock Generator/Distribution## CONFIG_AD9523 is not set## Phase-Locked Loop (PLL) frequency synthesizers## CONFIG_ADF4350 is not set## Digital gyroscope sensors## CONFIG_ADIS16080 is not set# CONFIG_ADIS16130 is not set# CONFIG_ADIS16136 is not set# CONFIG_ADIS16260 is not set# CONFIG_ADXRS450 is not set# CONFIG_BMG160 is not set# CONFIG_IIO_ST_GYRO_3AXIS is not set# CONFIG_ITG3200 is not set## Humidity sensors## CONFIG_DHT11 is not set# CONFIG_SI7005 is not set# CONFIG_SI7020 is not set## Inertial measurement units## CONFIG_ADIS16400 is not set# CONFIG_ADIS16480 is not set# CONFIG_KMX61 is not set# CONFIG_INV_MPU6050_IIO is not setCONFIG_IIO_ADIS_LIB=mCONFIG_IIO_ADIS_LIB_BUFFER=y## Light sensors## CONFIG_ADJD_S311 is not set# CONFIG_AL3320A is not set# CONFIG_APDS9300 is not set# CONFIG_CM32181 is not set# CONFIG_CM3232 is not set# CONFIG_CM3323 is not set# CONFIG_CM36651 is not set# CONFIG_GP2AP020A00F is not set# CONFIG_ISL29125 is not set# CONFIG_JSA1212 is not set# CONFIG_LTR501 is not set# CONFIG_TCS3414 is not set# CONFIG_TCS3472 is not set# CONFIG_SENSORS_TSL2563 is not set# CONFIG_TSL4531 is not set# CONFIG_VCNL4000 is not set## Magnetometer sensors#CONFIG_AK8975=y# CONFIG_AK09911 is not set# CONFIG_MAG3110 is not set# CONFIG_IIO_ST_MAGN_3AXIS is not set## Inclinometer sensors### Triggers - standalone## CONFIG_IIO_INTERRUPT_TRIGGER is not set# CONFIG_IIO_SYSFS_TRIGGER is not set## Pressure sensors## CONFIG_BMP280 is not set# CONFIG_MPL115 is not set# CONFIG_MPL3115 is not set# CONFIG_MS5611 is not set# CONFIG_IIO_ST_PRESS is not set# CONFIG_T5403 is not set## Lightning sensors## CONFIG_AS3935 is not set## Proximity sensors## CONFIG_SX9500 is not set## Temperature sensors## CONFIG_MLX90614 is not set# CONFIG_TMP006 is not set# CONFIG_VME_BUS is not setCONFIG_PWM=yCONFIG_PWM_SYSFS=yCONFIG_PWM_AB8500=y# CONFIG_PWM_BCM_KONA is not setCONFIG_PWM_FSL_FTM=mCONFIG_PWM_IMX=m# CONFIG_PWM_PCA9685 is not set# CONFIG_PWM_RENESAS_TPU is not set# CONFIG_PWM_ROCKCHIP is not set# CONFIG_PWM_SAMSUNG is not set# CONFIG_PWM_SPEAR is not set# CONFIG_PWM_STI is not setCONFIG_PWM_SUN4I=mCONFIG_PWM_TEGRA=y# CONFIG_PWM_TIECAP is not set# CONFIG_PWM_TIEHRPWM is not set# CONFIG_PWM_TWL is not set# CONFIG_PWM_TWL_LED is not setCONFIG_PWM_VT8500=yCONFIG_IRQCHIP=yCONFIG_ARM_GIC=yCONFIG_GIC_NON_BANKED=yCONFIG_BCM7120_L2_IRQ=yCONFIG_BRCMSTB_L2_IRQ=yCONFIG_DW_APB_ICTL=yCONFIG_OMAP_IRQCHIP=yCONFIG_ORION_IRQCHIP=yCONFIG_IRQ_CROSSBAR=y# CONFIG_KEYSTONE_IRQ is not set# CONFIG_IPACK_BUS is not setCONFIG_ARCH_HAS_RESET_CONTROLLER=yCONFIG_RESET_CONTROLLER=yCONFIG_STI_RESET_SYSCFG=yCONFIG_STIH415_RESET=yCONFIG_STIH416_RESET=yCONFIG_STIH407_RESET=y# CONFIG_FMC is not set## PHY Subsystem#CONFIG_GENERIC_PHY=y# CONFIG_PHY_BERLIN_USB is not set# CONFIG_PHY_BERLIN_SATA is not setCONFIG_ARMADA375_USBCLUSTER_PHY=y# CONFIG_PHY_DM816X_USB is not setCONFIG_PHY_EXYNOS_MIPI_VIDEO=yCONFIG_PHY_MVEBU_SATA=y# CONFIG_PHY_MIPHY28LP is not setCONFIG_PHY_MIPHY365X=y# CONFIG_PHY_RCAR_GEN2 is not setCONFIG_OMAP_CONTROL_PHY=yCONFIG_OMAP_USB2=yCONFIG_TI_PIPE3=yCONFIG_PHY_EXYNOS_DP_VIDEO=y# CONFIG_BCM_KONA_USB2_PHY is not set# CONFIG_PHY_EXYNOS5250_SATA is not setCONFIG_PHY_HIX5HD2_SATA=yCONFIG_PHY_SUN4I_USB=y# CONFIG_PHY_SUN9I_USB is not setCONFIG_PHY_SAMSUNG_USB2=yCONFIG_PHY_EXYNOS4210_USB2=yCONFIG_PHY_EXYNOS4X12_USB2=yCONFIG_PHY_EXYNOS5250_USB2=y# CONFIG_PHY_QCOM_APQ8064_SATA is not set# CONFIG_PHY_QCOM_IPQ806X_SATA is not set# CONFIG_PHY_ROCKCHIP_USB is not setCONFIG_PHY_ST_SPEAR1310_MIPHY=yCONFIG_PHY_ST_SPEAR1340_MIPHY=y# CONFIG_PHY_STIH407_USB is not setCONFIG_PHY_STIH41X_USB=y# CONFIG_PHY_QCOM_UFS is not set# CONFIG_POWERCAP is not set# CONFIG_MCB is not setCONFIG_RAS=y# CONFIG_THUNDERBOLT is not set## Android## CONFIG_ANDROID is not set## Firmware Drivers## CONFIG_FIRMWARE_MEMMAP is not setCONFIG_QCOM_SCM=y## File systems#CONFIG_DCACHE_WORD_ACCESS=y# CONFIG_EXT2_FS is not set# CONFIG_EXT3_FS is not setCONFIG_EXT4_FS=yCONFIG_EXT4_USE_FOR_EXT23=yCONFIG_EXT4_FS_POSIX_ACL=yCONFIG_EXT4_FS_SECURITY=y# CONFIG_EXT4_ENCRYPTION is not set# CONFIG_EXT4_DEBUG is not setCONFIG_JBD2=y# CONFIG_JBD2_DEBUG is not setCONFIG_FS_MBCACHE=yCONFIG_REISERFS_FS=m# CONFIG_REISERFS_CHECK is not set# CONFIG_REISERFS_PROC_INFO is not setCONFIG_REISERFS_FS_XATTR=yCONFIG_REISERFS_FS_POSIX_ACL=yCONFIG_REISERFS_FS_SECURITY=yCONFIG_JFS_FS=mCONFIG_JFS_POSIX_ACL=yCONFIG_JFS_SECURITY=y# CONFIG_JFS_DEBUG is not setCONFIG_JFS_STATISTICS=yCONFIG_XFS_FS=mCONFIG_XFS_QUOTA=yCONFIG_XFS_POSIX_ACL=yCONFIG_XFS_RT=y# CONFIG_XFS_WARN is not set# CONFIG_XFS_DEBUG is not setCONFIG_GFS2_FS=m# CONFIG_GFS2_FS_LOCKING_DLM is not setCONFIG_OCFS2_FS=mCONFIG_OCFS2_FS_O2CB=mCONFIG_OCFS2_FS_USERSPACE_CLUSTER=mCONFIG_OCFS2_FS_STATS=yCONFIG_OCFS2_DEBUG_MASKLOG=y# CONFIG_OCFS2_DEBUG_FS is not setCONFIG_BTRFS_FS=mCONFIG_BTRFS_FS_POSIX_ACL=y# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set# CONFIG_BTRFS_DEBUG is not set# CONFIG_BTRFS_ASSERT is not setCONFIG_NILFS2_FS=mCONFIG_F2FS_FS=yCONFIG_F2FS_STAT_FS=yCONFIG_F2FS_FS_XATTR=yCONFIG_F2FS_FS_POSIX_ACL=y# CONFIG_F2FS_FS_SECURITY is not set# CONFIG_F2FS_CHECK_FS is not set# CONFIG_F2FS_IO_TRACE is not setCONFIG_FS_POSIX_ACL=yCONFIG_EXPORTFS=yCONFIG_FILE_LOCKING=yCONFIG_FSNOTIFY=yCONFIG_DNOTIFY=yCONFIG_INOTIFY_USER=yCONFIG_FANOTIFY=y# CONFIG_FANOTIFY_ACCESS_PERMISSIONS is not setCONFIG_QUOTA=yCONFIG_QUOTA_NETLINK_INTERFACE=yCONFIG_PRINT_QUOTA_WARNING=y# CONFIG_QUOTA_DEBUG is not setCONFIG_QUOTA_TREE=mCONFIG_QFMT_V1=mCONFIG_QFMT_V2=mCONFIG_QUOTACTL=yCONFIG_AUTOFS4_FS=yCONFIG_FUSE_FS=mCONFIG_CUSE=mCONFIG_OVERLAY_FS=m## Caches#CONFIG_FSCACHE=yCONFIG_FSCACHE_STATS=yCONFIG_FSCACHE_HISTOGRAM=y# CONFIG_FSCACHE_DEBUG is not set# CONFIG_FSCACHE_OBJECT_LIST is not setCONFIG_CACHEFILES=y# CONFIG_CACHEFILES_DEBUG is not set# CONFIG_CACHEFILES_HISTOGRAM is not set## CD-ROM/DVD Filesystems#CONFIG_ISO9660_FS=mCONFIG_JOLIET=yCONFIG_ZISOFS=yCONFIG_UDF_FS=mCONFIG_UDF_NLS=y## DOS/FAT/NT Filesystems#CONFIG_FAT_FS=yCONFIG_MSDOS_FS=yCONFIG_VFAT_FS=yCONFIG_FAT_DEFAULT_CODEPAGE=437CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"CONFIG_NTFS_FS=y# CONFIG_NTFS_DEBUG is not setCONFIG_NTFS_RW=y## Pseudo filesystems#CONFIG_PROC_FS=yCONFIG_PROC_VMCORE=yCONFIG_PROC_SYSCTL=yCONFIG_PROC_PAGE_MONITOR=yCONFIG_KERNFS=yCONFIG_SYSFS=yCONFIG_TMPFS=yCONFIG_TMPFS_POSIX_ACL=yCONFIG_TMPFS_XATTR=y# CONFIG_HUGETLB_PAGE is not setCONFIG_CONFIGFS_FS=yCONFIG_MISC_FILESYSTEMS=y# CONFIG_ADFS_FS is not set# CONFIG_AFFS_FS is not setCONFIG_ECRYPT_FS=m# CONFIG_ECRYPT_FS_MESSAGING is not setCONFIG_HFS_FS=mCONFIG_HFSPLUS_FS=m# CONFIG_HFSPLUS_FS_POSIX_ACL 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 setCONFIG_UBIFS_FS=y# CONFIG_UBIFS_FS_ADVANCED_COMPR is not setCONFIG_UBIFS_FS_LZO=yCONFIG_UBIFS_FS_ZLIB=y# CONFIG_LOGFS is not set# CONFIG_CRAMFS is not setCONFIG_SQUASHFS=yCONFIG_SQUASHFS_FILE_CACHE=y# CONFIG_SQUASHFS_FILE_DIRECT is not setCONFIG_SQUASHFS_DECOMP_SINGLE=y# CONFIG_SQUASHFS_DECOMP_MULTI is not set# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not setCONFIG_SQUASHFS_XATTR=yCONFIG_SQUASHFS_ZLIB=y# CONFIG_SQUASHFS_LZ4 is not setCONFIG_SQUASHFS_LZO=yCONFIG_SQUASHFS_XZ=y# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set# CONFIG_SQUASHFS_EMBEDDED is not setCONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3# CONFIG_VXFS_FS is not set# CONFIG_MINIX_FS 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 is not set# CONFIG_PSTORE is not set# CONFIG_SYSV_FS is not set# CONFIG_UFS_FS is not set# CONFIG_EXOFS_FS is not setCONFIG_NETWORK_FILESYSTEMS=yCONFIG_NFS_FS=yCONFIG_NFS_V2=yCONFIG_NFS_V3=yCONFIG_NFS_V3_ACL=yCONFIG_NFS_V4=yCONFIG_NFS_SWAP=y# CONFIG_NFS_V4_1 is not setCONFIG_ROOT_NFS=yCONFIG_NFS_FSCACHE=y# CONFIG_NFS_USE_LEGACY_DNS is not setCONFIG_NFS_USE_KERNEL_DNS=yCONFIG_NFSD=mCONFIG_NFSD_V2_ACL=yCONFIG_NFSD_V3=yCONFIG_NFSD_V3_ACL=yCONFIG_NFSD_V4=y# CONFIG_NFSD_PNFS is not set# CONFIG_NFSD_V4_SECURITY_LABEL is not set# CONFIG_NFSD_FAULT_INJECTION is not setCONFIG_GRACE_PERIOD=yCONFIG_LOCKD=yCONFIG_LOCKD_V4=yCONFIG_NFS_ACL_SUPPORT=yCONFIG_NFS_COMMON=yCONFIG_SUNRPC=yCONFIG_SUNRPC_GSS=yCONFIG_SUNRPC_SWAP=yCONFIG_RPCSEC_GSS_KRB5=m# CONFIG_SUNRPC_DEBUG is not set# CONFIG_CEPH_FS is not setCONFIG_CIFS=m# CONFIG_CIFS_STATS is not setCONFIG_CIFS_WEAK_PW_HASH=y# CONFIG_CIFS_UPCALL is not setCONFIG_CIFS_XATTR=yCONFIG_CIFS_POSIX=y# CONFIG_CIFS_ACL is not setCONFIG_CIFS_DEBUG=y# CONFIG_CIFS_DEBUG2 is not setCONFIG_CIFS_DFS_UPCALL=yCONFIG_CIFS_SMB2=y# CONFIG_CIFS_FSCACHE is not set# CONFIG_NCP_FS is not set# CONFIG_CODA_FS is not set# CONFIG_AFS_FS is not setCONFIG_NLS=yCONFIG_NLS_DEFAULT="utf8"CONFIG_NLS_CODEPAGE_437=yCONFIG_NLS_CODEPAGE_737=mCONFIG_NLS_CODEPAGE_775=mCONFIG_NLS_CODEPAGE_850=mCONFIG_NLS_CODEPAGE_852=mCONFIG_NLS_CODEPAGE_855=mCONFIG_NLS_CODEPAGE_857=mCONFIG_NLS_CODEPAGE_860=mCONFIG_NLS_CODEPAGE_861=mCONFIG_NLS_CODEPAGE_862=mCONFIG_NLS_CODEPAGE_863=mCONFIG_NLS_CODEPAGE_864=mCONFIG_NLS_CODEPAGE_865=mCONFIG_NLS_CODEPAGE_866=mCONFIG_NLS_CODEPAGE_869=mCONFIG_NLS_CODEPAGE_936=mCONFIG_NLS_CODEPAGE_950=mCONFIG_NLS_CODEPAGE_932=mCONFIG_NLS_CODEPAGE_949=mCONFIG_NLS_CODEPAGE_874=mCONFIG_NLS_ISO8859_8=mCONFIG_NLS_CODEPAGE_1250=mCONFIG_NLS_CODEPAGE_1251=mCONFIG_NLS_ASCII=yCONFIG_NLS_ISO8859_1=mCONFIG_NLS_ISO8859_2=mCONFIG_NLS_ISO8859_3=mCONFIG_NLS_ISO8859_4=mCONFIG_NLS_ISO8859_5=mCONFIG_NLS_ISO8859_6=mCONFIG_NLS_ISO8859_7=mCONFIG_NLS_ISO8859_9=mCONFIG_NLS_ISO8859_13=mCONFIG_NLS_ISO8859_14=mCONFIG_NLS_ISO8859_15=mCONFIG_NLS_KOI8_R=mCONFIG_NLS_KOI8_U=m# CONFIG_NLS_MAC_ROMAN is not set# CONFIG_NLS_MAC_CELTIC is not set# CONFIG_NLS_MAC_CENTEURO is not set# CONFIG_NLS_MAC_CROATIAN is not set# CONFIG_NLS_MAC_CYRILLIC is not set# CONFIG_NLS_MAC_GAELIC is not set# CONFIG_NLS_MAC_GREEK is not set# CONFIG_NLS_MAC_ICELAND is not set# CONFIG_NLS_MAC_INUIT is not set# CONFIG_NLS_MAC_ROMANIAN is not set# CONFIG_NLS_MAC_TURKISH is not setCONFIG_NLS_UTF8=mCONFIG_DLM=m# CONFIG_DLM_DEBUG is not set## Kernel hacking### printk and dmesg options#CONFIG_PRINTK_TIME=yCONFIG_MESSAGE_LOGLEVEL_DEFAULT=4# CONFIG_BOOT_PRINTK_DELAY is not setCONFIG_DYNAMIC_DEBUG=y## Compile-time checks and compiler options## CONFIG_DEBUG_INFO is not setCONFIG_ENABLE_WARN_DEPRECATED=yCONFIG_ENABLE_MUST_CHECK=yCONFIG_FRAME_WARN=1024CONFIG_STRIP_ASM_SYMS=y# CONFIG_READABLE_ASM is not set# CONFIG_UNUSED_SYMBOLS is not set# CONFIG_PAGE_OWNER is not setCONFIG_DEBUG_FS=y# CONFIG_HEADERS_CHECK is not set# CONFIG_DEBUG_SECTION_MISMATCH is not setCONFIG_FRAME_POINTER=y# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not setCONFIG_MAGIC_SYSRQ=yCONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1CONFIG_DEBUG_KERNEL=y## Memory Debugging## CONFIG_PAGE_EXTENSION is not set# CONFIG_DEBUG_PAGEALLOC is not set# CONFIG_DEBUG_OBJECTS is not set# CONFIG_SLUB_DEBUG_ON is not set# CONFIG_SLUB_STATS is not setCONFIG_HAVE_DEBUG_KMEMLEAK=y# CONFIG_DEBUG_KMEMLEAK is not set# CONFIG_DEBUG_STACK_USAGE is not set# CONFIG_DEBUG_VM is not setCONFIG_DEBUG_MEMORY_INIT=y# CONFIG_DEBUG_PER_CPU_MAPS is not set# CONFIG_DEBUG_HIGHMEM is not set# CONFIG_DEBUG_SHIRQ is not set## Debug Lockups and Hangs#CONFIG_LOCKUP_DETECTOR=y# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not setCONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0CONFIG_DETECT_HUNG_TASK=yCONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not setCONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0# CONFIG_PANIC_ON_OOPS is not setCONFIG_PANIC_ON_OOPS_VALUE=0CONFIG_PANIC_TIMEOUT=0CONFIG_SCHED_DEBUG=y# CONFIG_SCHEDSTATS is not set# CONFIG_SCHED_STACK_END_CHECK is not set# CONFIG_DEBUG_TIMEKEEPING is not setCONFIG_TIMER_STATS=y## Lock Debugging (spinlocks, mutexes, etc...)## CONFIG_DEBUG_RT_MUTEXES is not set# CONFIG_DEBUG_SPINLOCK is not set# CONFIG_DEBUG_MUTEXES is not set# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set# CONFIG_DEBUG_LOCK_ALLOC is not set# CONFIG_PROVE_LOCKING is not set# CONFIG_LOCK_STAT is not set# CONFIG_DEBUG_ATOMIC_SLEEP is not set# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set# CONFIG_LOCK_TORTURE_TEST is not setCONFIG_TRACE_IRQFLAGS=yCONFIG_STACKTRACE=y# CONFIG_DEBUG_KOBJECT is not setCONFIG_DEBUG_BUGVERBOSE=y# CONFIG_DEBUG_LIST is not set# CONFIG_DEBUG_PI_LIST is not set# CONFIG_DEBUG_SG is not set# CONFIG_DEBUG_NOTIFIERS is not set# CONFIG_DEBUG_CREDENTIALS is not set## RCU Debugging## CONFIG_PROVE_RCU is not set# CONFIG_SPARSE_RCU_POINTER is not set# CONFIG_TORTURE_TEST is not set# CONFIG_RCU_TORTURE_TEST is not setCONFIG_RCU_CPU_STALL_TIMEOUT=21# CONFIG_RCU_CPU_STALL_INFO is not set# CONFIG_RCU_TRACE is not set# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set# CONFIG_NOTIFIER_ERROR_INJECTION is not set# CONFIG_FAULT_INJECTION is not setCONFIG_NOP_TRACER=yCONFIG_HAVE_FUNCTION_TRACER=yCONFIG_HAVE_FUNCTION_GRAPH_TRACER=yCONFIG_HAVE_DYNAMIC_FTRACE=yCONFIG_HAVE_FTRACE_MCOUNT_RECORD=yCONFIG_HAVE_SYSCALL_TRACEPOINTS=yCONFIG_HAVE_C_RECORDMCOUNT=yCONFIG_TRACER_MAX_TRACE=yCONFIG_TRACE_CLOCK=yCONFIG_RING_BUFFER=yCONFIG_EVENT_TRACING=yCONFIG_CONTEXT_SWITCH_TRACER=yCONFIG_RING_BUFFER_ALLOW_SWAP=yCONFIG_TRACING=yCONFIG_GENERIC_TRACER=yCONFIG_TRACING_SUPPORT=yCONFIG_FTRACE=yCONFIG_FUNCTION_TRACER=yCONFIG_FUNCTION_GRAPH_TRACER=yCONFIG_IRQSOFF_TRACER=yCONFIG_SCHED_TRACER=y# CONFIG_FTRACE_SYSCALLS is not setCONFIG_TRACER_SNAPSHOT=yCONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP=yCONFIG_BRANCH_PROFILE_NONE=y# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set# CONFIG_PROFILE_ALL_BRANCHES is not setCONFIG_STACK_TRACER=yCONFIG_BLK_DEV_IO_TRACE=y# CONFIG_KPROBE_EVENT is not set# CONFIG_UPROBE_EVENT is not set# CONFIG_PROBE_EVENTS is not setCONFIG_DYNAMIC_FTRACE=yCONFIG_FUNCTION_PROFILER=yCONFIG_FTRACE_MCOUNT_RECORD=y# CONFIG_FTRACE_STARTUP_TEST is not set# CONFIG_TRACEPOINT_BENCHMARK is not set# CONFIG_RING_BUFFER_BENCHMARK is not set# CONFIG_RING_BUFFER_STARTUP_TEST is not set# CONFIG_TRACE_ENUM_MAP_FILE is not set## Runtime Testing## CONFIG_LKDTM is not set# CONFIG_TEST_LIST_SORT is not set# CONFIG_KPROBES_SANITY_TEST is not set# CONFIG_BACKTRACE_SELF_TEST is not set# CONFIG_RBTREE_TEST is not set# CONFIG_INTERVAL_TREE_TEST is not set# CONFIG_PERCPU_TEST is not set# CONFIG_ATOMIC64_SELFTEST is not set# CONFIG_ASYNC_RAID6_TEST is not set# CONFIG_TEST_HEXDUMP is not set# CONFIG_TEST_STRING_HELPERS is not set# CONFIG_TEST_KSTRTOX is not set# CONFIG_TEST_RHASHTABLE is not set# CONFIG_DMA_API_DEBUG is not set# CONFIG_TEST_LKM is not set# CONFIG_TEST_USER_COPY is not set# CONFIG_TEST_BPF is not set# CONFIG_TEST_FIRMWARE is not set# CONFIG_TEST_UDELAY is not set# CONFIG_MEMTEST is not set# CONFIG_SAMPLES is not setCONFIG_HAVE_ARCH_KGDB=yCONFIG_KGDB=yCONFIG_KGDB_SERIAL_CONSOLE=y# CONFIG_KGDB_TESTS is not setCONFIG_KGDB_KDB=yCONFIG_KDB_DEFAULT_ENABLE=0x1CONFIG_KDB_KEYBOARD=yCONFIG_KDB_CONTINUE_CATASTROPHIC=0# CONFIG_ARM_PTDUMP is not setCONFIG_STRICT_DEVMEM=yCONFIG_ARM_UNWIND=yCONFIG_OLD_MCOUNT=y# CONFIG_DEBUG_USER is not set# CONFIG_DEBUG_LL is not setCONFIG_DEBUG_IMX_UART_PORT=1CONFIG_DEBUG_VF_UART_PORT=1CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"# CONFIG_DEBUG_UART_8250 is not set# CONFIG_DEBUG_UART_BCM63XX is not setCONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"# CONFIG_ARM_KPROBES_TEST is not set# CONFIG_PID_IN_CONTEXTIDR is not setCONFIG_DEBUG_SET_MODULE_RONX=y# CONFIG_CORESIGHT is not set## Security options#CONFIG_KEYS=y# CONFIG_PERSISTENT_KEYRINGS is not set# CONFIG_BIG_KEYS is not setCONFIG_ENCRYPTED_KEYS=y# CONFIG_SECURITY_DMESG_RESTRICT is not setCONFIG_SECURITY=yCONFIG_SECURITYFS=yCONFIG_SECURITY_NETWORK=yCONFIG_SECURITY_NETWORK_XFRM=yCONFIG_SECURITY_PATH=yCONFIG_LSM_MMAP_MIN_ADDR=0CONFIG_SECURITY_SELINUX=yCONFIG_SECURITY_SELINUX_BOOTPARAM=yCONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1CONFIG_SECURITY_SELINUX_DISABLE=yCONFIG_SECURITY_SELINUX_DEVELOP=yCONFIG_SECURITY_SELINUX_AVC_STATS=yCONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not setCONFIG_SECURITY_SMACK=y# CONFIG_SECURITY_SMACK_BRINGUP is not set# CONFIG_SECURITY_SMACK_NETFILTER is not setCONFIG_SECURITY_TOMOYO=yCONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not setCONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init"CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init"CONFIG_SECURITY_APPARMOR=yCONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1CONFIG_SECURITY_APPARMOR_HASH=yCONFIG_SECURITY_YAMA=yCONFIG_SECURITY_YAMA_STACKED=yCONFIG_INTEGRITY=y# CONFIG_INTEGRITY_SIGNATURE is not setCONFIG_INTEGRITY_AUDIT=y# CONFIG_IMA is not set# CONFIG_EVM is not set# CONFIG_DEFAULT_SECURITY_SELINUX is not set# CONFIG_DEFAULT_SECURITY_SMACK is not set# CONFIG_DEFAULT_SECURITY_TOMOYO is not setCONFIG_DEFAULT_SECURITY_APPARMOR=y# CONFIG_DEFAULT_SECURITY_YAMA is not set# CONFIG_DEFAULT_SECURITY_DAC is not setCONFIG_DEFAULT_SECURITY="apparmor"CONFIG_XOR_BLOCKS=mCONFIG_ASYNC_CORE=mCONFIG_ASYNC_MEMCPY=mCONFIG_ASYNC_XOR=mCONFIG_ASYNC_PQ=mCONFIG_ASYNC_RAID6_RECOV=mCONFIG_CRYPTO=y## Crypto core or helper#CONFIG_CRYPTO_ALGAPI=yCONFIG_CRYPTO_ALGAPI2=yCONFIG_CRYPTO_AEAD=yCONFIG_CRYPTO_AEAD2=yCONFIG_CRYPTO_BLKCIPHER=yCONFIG_CRYPTO_BLKCIPHER2=yCONFIG_CRYPTO_HASH=yCONFIG_CRYPTO_HASH2=yCONFIG_CRYPTO_RNG=yCONFIG_CRYPTO_RNG2=yCONFIG_CRYPTO_PCOMP=mCONFIG_CRYPTO_PCOMP2=yCONFIG_CRYPTO_MANAGER=yCONFIG_CRYPTO_MANAGER2=yCONFIG_CRYPTO_USER=mCONFIG_CRYPTO_MANAGER_DISABLE_TESTS=yCONFIG_CRYPTO_GF128MUL=yCONFIG_CRYPTO_NULL=m# CONFIG_CRYPTO_PCRYPT is not setCONFIG_CRYPTO_WORKQUEUE=yCONFIG_CRYPTO_CRYPTD=m# CONFIG_CRYPTO_MCRYPTD is not setCONFIG_CRYPTO_AUTHENC=y# CONFIG_CRYPTO_TEST is not set## Authenticated Encryption with Associated Data#CONFIG_CRYPTO_CCM=mCONFIG_CRYPTO_GCM=mCONFIG_CRYPTO_SEQIV=m## Block modes#CONFIG_CRYPTO_CBC=yCONFIG_CRYPTO_CTR=mCONFIG_CRYPTO_CTS=mCONFIG_CRYPTO_ECB=mCONFIG_CRYPTO_LRW=mCONFIG_CRYPTO_PCBC=mCONFIG_CRYPTO_XTS=m## Hash modes#CONFIG_CRYPTO_CMAC=mCONFIG_CRYPTO_HMAC=yCONFIG_CRYPTO_XCBC=mCONFIG_CRYPTO_VMAC=m## Digest#CONFIG_CRYPTO_CRC32C=yCONFIG_CRYPTO_CRC32=mCONFIG_CRYPTO_CRCT10DIF=yCONFIG_CRYPTO_GHASH=mCONFIG_CRYPTO_MD4=mCONFIG_CRYPTO_MD5=yCONFIG_CRYPTO_MICHAEL_MIC=mCONFIG_CRYPTO_RMD128=mCONFIG_CRYPTO_RMD160=mCONFIG_CRYPTO_RMD256=mCONFIG_CRYPTO_RMD320=mCONFIG_CRYPTO_SHA1=yCONFIG_CRYPTO_SHA256=yCONFIG_CRYPTO_SHA512=mCONFIG_CRYPTO_TGR192=mCONFIG_CRYPTO_WP512=m## Ciphers#CONFIG_CRYPTO_AES=yCONFIG_CRYPTO_ANUBIS=mCONFIG_CRYPTO_ARC4=mCONFIG_CRYPTO_BLOWFISH=mCONFIG_CRYPTO_BLOWFISH_COMMON=mCONFIG_CRYPTO_CAMELLIA=mCONFIG_CRYPTO_CAST_COMMON=mCONFIG_CRYPTO_CAST5=mCONFIG_CRYPTO_CAST6=mCONFIG_CRYPTO_DES=yCONFIG_CRYPTO_FCRYPT=mCONFIG_CRYPTO_KHAZAD=mCONFIG_CRYPTO_SALSA20=mCONFIG_CRYPTO_SEED=mCONFIG_CRYPTO_SERPENT=mCONFIG_CRYPTO_TEA=mCONFIG_CRYPTO_TWOFISH=mCONFIG_CRYPTO_TWOFISH_COMMON=m## Compression#CONFIG_CRYPTO_DEFLATE=yCONFIG_CRYPTO_ZLIB=mCONFIG_CRYPTO_LZO=yCONFIG_CRYPTO_LZ4=mCONFIG_CRYPTO_LZ4HC=m## Random Number Generation#CONFIG_CRYPTO_ANSI_CPRNG=yCONFIG_CRYPTO_DRBG_MENU=mCONFIG_CRYPTO_DRBG_HMAC=y# CONFIG_CRYPTO_DRBG_HASH is not set# CONFIG_CRYPTO_DRBG_CTR is not setCONFIG_CRYPTO_DRBG=mCONFIG_CRYPTO_USER_API=mCONFIG_CRYPTO_USER_API_HASH=mCONFIG_CRYPTO_USER_API_SKCIPHER=m# CONFIG_CRYPTO_USER_API_RNG is not setCONFIG_CRYPTO_HW=y# CONFIG_CRYPTO_DEV_MV_CESA is not set# CONFIG_CRYPTO_DEV_OMAP_SHAM is not set# CONFIG_CRYPTO_DEV_OMAP_AES is not set# CONFIG_CRYPTO_DEV_OMAP_DES is not set# CONFIG_CRYPTO_DEV_SAHARA is not set# CONFIG_CRYPTO_DEV_S5P is not set# CONFIG_CRYPTO_DEV_UX500 is not set# CONFIG_CRYPTO_DEV_QCE is not setCONFIG_ASYMMETRIC_KEY_TYPE=m# CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE is not set# CONFIG_PUBLIC_KEY_ALGO_RSA is not set# CONFIG_ARM_CRYPTO is not setCONFIG_BINARY_PRINTF=y## Library routines#CONFIG_RAID6_PQ=mCONFIG_BITREVERSE=yCONFIG_HAVE_ARCH_BITREVERSE=yCONFIG_RATIONAL=yCONFIG_GENERIC_STRNCPY_FROM_USER=yCONFIG_GENERIC_STRNLEN_USER=yCONFIG_GENERIC_NET_UTILS=yCONFIG_GENERIC_PCI_IOMAP=yCONFIG_GENERIC_IO=yCONFIG_STMP_DEVICE=yCONFIG_ARCH_USE_CMPXCHG_LOCKREF=yCONFIG_CRC_CCITT=mCONFIG_CRC16=yCONFIG_CRC_T10DIF=yCONFIG_CRC_ITU_T=yCONFIG_CRC32=y# CONFIG_CRC32_SELFTEST is not setCONFIG_CRC32_SLICEBY8=y# CONFIG_CRC32_SLICEBY4 is not set# CONFIG_CRC32_SARWATE is not set# CONFIG_CRC32_BIT is not setCONFIG_CRC7=mCONFIG_LIBCRC32C=y# CONFIG_CRC8 is not setCONFIG_AUDIT_GENERIC=y# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set# CONFIG_RANDOM32_SELFTEST is not setCONFIG_ZLIB_INFLATE=yCONFIG_ZLIB_DEFLATE=yCONFIG_LZO_COMPRESS=yCONFIG_LZO_DECOMPRESS=yCONFIG_LZ4_COMPRESS=mCONFIG_LZ4HC_COMPRESS=mCONFIG_LZ4_DECOMPRESS=yCONFIG_XZ_DEC=yCONFIG_XZ_DEC_X86=yCONFIG_XZ_DEC_POWERPC=yCONFIG_XZ_DEC_IA64=yCONFIG_XZ_DEC_ARM=yCONFIG_XZ_DEC_ARMTHUMB=yCONFIG_XZ_DEC_SPARC=yCONFIG_XZ_DEC_BCJ=y# CONFIG_XZ_DEC_TEST is not setCONFIG_DECOMPRESS_GZIP=yCONFIG_DECOMPRESS_BZIP2=yCONFIG_DECOMPRESS_LZMA=yCONFIG_DECOMPRESS_XZ=yCONFIG_DECOMPRESS_LZO=yCONFIG_DECOMPRESS_LZ4=yCONFIG_GENERIC_ALLOCATOR=yCONFIG_TEXTSEARCH=yCONFIG_TEXTSEARCH_KMP=mCONFIG_TEXTSEARCH_BM=mCONFIG_TEXTSEARCH_FSM=mCONFIG_ASSOCIATIVE_ARRAY=yCONFIG_HAS_IOMEM=yCONFIG_HAS_DMA=yCONFIG_CPU_RMAP=yCONFIG_DQL=yCONFIG_GLOB=y# CONFIG_GLOB_SELFTEST is not setCONFIG_NLATTR=yCONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=yCONFIG_LRU_CACHE=mCONFIG_AVERAGE=yCONFIG_CORDIC=m# CONFIG_DDR is not setCONFIG_LIBFDT=yCONFIG_OID_REGISTRY=yCONFIG_FONT_SUPPORT=y# CONFIG_FONTS is not setCONFIG_FONT_8x8=yCONFIG_FONT_8x16=yCONFIG_ARCH_HAS_SG_CHAIN=yCONFIG_VIRTUALIZATION=yModule.symvers0xba0e9037iscsi_host_adddrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x5523cbcatm6000_set_reg_maskdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0x7eb7f1f1cfg80211_send_rx_assocvmlinuxEXPORT_SYMBOL0xf9f3438fsata_pmp_error_handlervmlinuxEXPORT_SYMBOL_GPL0x9ba0501eunregister_vt_notifiervmlinuxEXPORT_SYMBOL_GPL0x67fd02c2generic_file_splice_writevmlinuxEXPORT_SYMBOL0x649213b0set_anon_supervmlinuxEXPORT_SYMBOL0xb43efaf1kmem_cache_allocvmlinuxEXPORT_SYMBOL0xace24162replace_page_cache_pagevmlinuxEXPORT_SYMBOL_GPL0x70523a7a__cond_resched_softirqvmlinuxEXPORT_SYMBOL0xaccef465ieee80211_wake_queuesnet/mac80211/mac80211EXPORT_SYMBOL0x1277fee7snd_soc_platform_readvmlinuxEXPORT_SYMBOL_GPL0x96a7a53di2c_put_adaptervmlinuxEXPORT_SYMBOL0x68e317c7rtc_class_openvmlinuxEXPORT_SYMBOL_GPL0xbf7e3fdedw_spi_remove_hostvmlinuxEXPORT_SYMBOL_GPL0x96cd2b04scsi_sense_key_stringvmlinuxEXPORT_SYMBOL0x79ed02c5request_firmwarevmlinuxEXPORT_SYMBOL0xd791b75airq_to_descvmlinuxEXPORT_SYMBOL0x0a2487e0unblock_all_signalsvmlinuxEXPORT_SYMBOL0x0996ad3adev_uc_syncvmlinuxEXPORT_SYMBOL0xab326530dev_mc_syncvmlinuxEXPORT_SYMBOL0x0cfb89eahwmon_device_unregistervmlinuxEXPORT_SYMBOL_GPL0x65e75cb6__list_del_entryvmlinuxEXPORT_SYMBOL0xfbaaf01econsole_lockvmlinuxEXPORT_SYMBOL0xe113bbbccsum_partialvmlinuxEXPORT_SYMBOL0x095e02a3ieee80211_queue_stoppednet/mac80211/mac80211EXPORT_SYMBOL0xa9b7456fcfg80211_wext_siwscanvmlinuxEXPORT_SYMBOL_GPL0xed70654ccfg80211_wext_giwscanvmlinuxEXPORT_SYMBOL_GPL0x419cdaeamemcg_tcp_enter_memory_pressurevmlinuxEXPORT_SYMBOL0xc068440e__kfifo_allocvmlinuxEXPORT_SYMBOL0x0821c189kmap_atomicvmlinuxEXPORT_SYMBOL0x5fe4b2faceph_pagelist_truncatenet/ceph/libcephEXPORT_SYMBOL0xd0e05c10usbip_dump_urbdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xa4b5a85biscsi_tcp_r2tpool_freedrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x9ba33501videobuf_queue_canceldrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x23b88171nf_log_registervmlinuxEXPORT_SYMBOL0x23b90695nf_hooks_neededvmlinuxEXPORT_SYMBOL0x5b2131a2ps2_end_commandvmlinuxEXPORT_SYMBOL0xe1be6ecescsi_executevmlinuxEXPORT_SYMBOL0xfccbc0caFb_InitvmlinuxEXPORT_SYMBOL0x1b17e06ckstrtollvmlinuxEXPORT_SYMBOL0xd91d4c71proc_net_removevmlinuxEXPORT_SYMBOL_GPL0x306ade51l2tp_session_find_by_ifnamenet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x6b770f49decode_bchlib/bchEXPORT_SYMBOL_GPL0xc4296b9csch56xx_watchdog_registerdrivers/hwmon/sch56xx-commonEXPORT_SYMBOL0x99c4bdcbraw_seq_openvmlinuxEXPORT_SYMBOL_GPL0x877e8286snd_soc_of_parse_audio_routingvmlinuxEXPORT_SYMBOL_GPL0xec481ea2device_delvmlinuxEXPORT_SYMBOL_GPL0x866dfff9device_addvmlinuxEXPORT_SYMBOL_GPL0x29fa419fdecode_rs8vmlinuxEXPORT_SYMBOL_GPL0x39273d01crypto_hash_walk_donevmlinuxEXPORT_SYMBOL_GPL0x8bd94317_raw_spin_lock_bhvmlinuxEXPORT_SYMBOL0x4c6ff041add_preempt_countvmlinuxEXPORT_SYMBOL0x89ff43f6init_uts_nsvmlinuxEXPORT_SYMBOL_GPL0xdc0f8746core_tpg_clear_object_lunsdrivers/target/target_core_modEXPORT_SYMBOL0x3132ee65__nand_calculate_eccdrivers/mtd/nand/nand_eccEXPORT_SYMBOL0xb934f4fc__inet6_hashvmlinuxEXPORT_SYMBOL0x096ad3b8dst_releasevmlinuxEXPORT_SYMBOL0x6692bea7sock_no_mmapvmlinuxEXPORT_SYMBOL0x4fcfb182led_trigger_storevmlinuxEXPORT_SYMBOL_GPL0xcd2b2f8edisk_map_sector_rcuvmlinuxEXPORT_SYMBOL_GPL0x9da75e09sysfs_update_groupvmlinuxEXPORT_SYMBOL_GPL0xa38602cddrain_workqueuevmlinuxEXPORT_SYMBOL_GPL0xfba669c6usb_serial_generic_write_bulk_callbackdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x49dac2cftcp_initialize_rcv_mssvmlinuxEXPORT_SYMBOL0x54e6fcddnet_enable_timestampvmlinuxEXPORT_SYMBOL0xc334ba09sockfd_lookupvmlinuxEXPORT_SYMBOL0x9db3fd24snd_soc_dapm_get_pin_switchvmlinuxEXPORT_SYMBOL_GPL0xbeeadb0dsnd_soc_dapm_put_pin_switchvmlinuxEXPORT_SYMBOL_GPL0x4d6f5d12v4l2_ctrl_grabvmlinuxEXPORT_SYMBOL0x0e0db2b6fb_validate_modevmlinuxEXPORT_SYMBOL0xea9855aeblk_limits_max_hw_sectorsvmlinuxEXPORT_SYMBOL0xbdbf67acdirectly_mappable_cdev_bdivmlinuxEXPORT_SYMBOL0x6bc3fbc0__unregister_chrdevvmlinuxEXPORT_SYMBOL0x4374cf7dsrcu_notifier_chain_registervmlinuxEXPORT_SYMBOL_GPL0x01e7403aem28xx_write_regdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xec120d59tpm_gen_interruptdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xb5dea7efg_token_sizevmlinuxEXPORT_SYMBOL_GPL0x275390eadev_graft_qdiscvmlinuxEXPORT_SYMBOL0xc7c0348bscsi_get_commandvmlinuxEXPORT_SYMBOL0x85798d55bio_integrity_alloc_biosetvmlinuxEXPORT_SYMBOL0x7ff10ccfraw_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0xb33f19f4wm8903_mic_detectsound/soc/codecs/snd-soc-wm8903EXPORT_SYMBOL_GPL0x930c5c69sas_eh_device_reset_handlerdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x8696b88bhostap_handle_sta_tx_excdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xca3f100acma3000_suspenddrivers/input/misc/cma3000_d0xEXPORT_SYMBOL0xd2335101drm_fb_get_bpp_depthdrivers/gpu/drm/drmEXPORT_SYMBOL0x332d312bscsi_target_quiescevmlinuxEXPORT_SYMBOL0xa8e06ef2transport_class_registervmlinuxEXPORT_SYMBOL_GPL0x30cada8fradix_tree_next_holevmlinuxEXPORT_SYMBOL0x66d0ee54vfsmount_lock_global_unlockvmlinuxEXPORT_SYMBOL0xaaf6170diio_st_channel_releasedrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0x64774fc7iscsi_conn_setupdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xcf44cf5cfcoe_ctlr_destroydrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x21382d5ddib8000_ctrl_timfdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xdf70963ddm_put_devicevmlinuxEXPORT_SYMBOL0x888a96d3dm_get_devicevmlinuxEXPORT_SYMBOL0xb43793d0input_handler_for_each_handlevmlinuxEXPORT_SYMBOL0x5ce7fe5bUSBC_Host_SendSetupPktvmlinuxEXPORT_SYMBOL0xecea146etransport_class_unregistervmlinuxEXPORT_SYMBOL_GPL0x65f3ad9afb_videomode_to_varvmlinuxEXPORT_SYMBOL0x08059545jbd2_journal_try_to_free_buffersvmlinuxEXPORT_SYMBOL0xffd5a395default_wake_functionvmlinuxEXPORT_SYMBOL0x8c817654nf_nat_sdp_port_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x4bc0be5afc_remote_port_adddrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x7d053fc5dm_rh_start_recoverydrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xcd02f2fcdrm_mm_cleandrivers/gpu/drm/drmEXPORT_SYMBOL0x3d702728dev_attr_link_power_management_policyvmlinuxEXPORT_SYMBOL_GPL0xd7df4418mount_subtreevmlinuxEXPORT_SYMBOL0xd3fb90d0iget_lockedvmlinuxEXPORT_SYMBOL0x8b44d8a7osduld_device_infodrivers/scsi/osd/osdEXPORT_SYMBOL0x01430901hostap_info_processdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xbd14c592sock_get_timestampnsvmlinuxEXPORT_SYMBOL0xe156ba05snd_soc_dapm_put_enum_virtvmlinuxEXPORT_SYMBOL_GPL0x61172cf2snd_soc_dapm_get_enum_virtvmlinuxEXPORT_SYMBOL_GPL0xea102ec7class_interface_registervmlinuxEXPORT_SYMBOL_GPL0x5dbd2849key_type_keyringvmlinuxEXPORT_SYMBOL0x49ebacbd_clear_bitvmlinuxEXPORT_SYMBOL0xf64d8219sas_release_transportdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xcb72cc90rt2800_rfkill_polldrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x300774b8ir_raw_event_handledrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x49a1a3a5rc_keyupdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x3540d9afdib8096p_get_i2c_tunerdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xc6254835spi_get_device_idvmlinuxEXPORT_SYMBOL_GPL0x7cf77ca7class_interface_unregistervmlinuxEXPORT_SYMBOL_GPL0x73a903c4vfsmount_lock_local_lockvmlinuxEXPORT_SYMBOL0xa9c530b8unregister_oom_notifiervmlinuxEXPORT_SYMBOL_GPL0xf01621c7transport_set_vpd_proto_iddrivers/target/target_core_modEXPORT_SYMBOL0x54372d49wl1251_free_hwdrivers/net/wireless/wl1251/wl1251EXPORT_SYMBOL_GPL0xc633d390mwifiex_add_virtual_intfdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x79f94f1atpm_writedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x2eec63c9xdr_encode_netobjvmlinuxEXPORT_SYMBOL_GPL0xf825a74bxdr_decode_wordvmlinuxEXPORT_SYMBOL_GPL0xccfd5c53tcp_v4_md5_lookupvmlinuxEXPORT_SYMBOL0xce84d729snd_power_waitvmlinuxEXPORT_SYMBOL0xa4d970f8w1_unregister_familyvmlinuxEXPORT_SYMBOL0xdf870496tty_register_devicevmlinuxEXPORT_SYMBOL0x44366cfcsimple_write_to_buffervmlinuxEXPORT_SYMBOL0x1751c4ff__srcu_read_unlockvmlinuxEXPORT_SYMBOL_GPL0xc2e587d1reset_devicesvmlinuxEXPORT_SYMBOL0x883b0e17ircomm_disconnect_requestnet/irda/ircomm/ircommEXPORT_SYMBOL0x825515bci2400m_error_recoverydrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x944f7a3bmmc_app_cmdvmlinuxEXPORT_SYMBOL_GPL0xf1e5905ausb_bus_list_lockvmlinuxEXPORT_SYMBOL_GPL0x5bf4a1ebsg_lastvmlinuxEXPORT_SYMBOL0xc61a4ae8__blk_run_queuevmlinuxEXPORT_SYMBOL0xc10f2b8ecgroup_unlockvmlinuxEXPORT_SYMBOL_GPL0x3eaf291dparam_get_stringvmlinuxEXPORT_SYMBOL0x99bb8806memmovevmlinuxEXPORT_SYMBOL0xab9ed7dbosd_execute_request_asyncdrivers/scsi/osd/libosdEXPORT_SYMBOL0x2de7e398stv0288_attachdrivers/media/dvb/frontends/stv0288EXPORT_SYMBOL0xd6b2c380dibusb_i2c_algodrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x53cdbbactpm_pm_resumedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x18c2e2abrpc_d_lookup_sbvmlinuxEXPORT_SYMBOL_GPL0x18c07a15dmam_declare_coherent_memoryvmlinuxEXPORT_SYMBOL0x3865df21jbd2_journal_start_commitvmlinuxEXPORT_SYMBOL0x6cb280e3__block_page_mkwritevmlinuxEXPORT_SYMBOL0x76d3cd60laptop_modevmlinuxEXPORT_SYMBOL0xbfc5476egeneric_file_direct_writevmlinuxEXPORT_SYMBOL0x699d10ecend_page_writebackvmlinuxEXPORT_SYMBOL0x50f5e532call_rcu_schedvmlinuxEXPORT_SYMBOL_GPL0xbbcb9513usbnet_cdc_unbinddrivers/net/usb/cdc_etherEXPORT_SYMBOL_GPL0xddc911deskb_recv_datagramvmlinuxEXPORT_SYMBOL0xb01e02c4snd_soc_jack_add_pinsvmlinuxEXPORT_SYMBOL_GPL0xd43cdac2d_alloc_pseudovmlinuxEXPORT_SYMBOL0x871c0a7efiemap_check_flagsvmlinuxEXPORT_SYMBOL0x6bb7a480generic_file_readonly_mmapvmlinuxEXPORT_SYMBOL0x5d730e7braw_notifier_chain_unregistervmlinuxEXPORT_SYMBOL_GPL0x34f97f22return_addressvmlinuxEXPORT_SYMBOL_GPL0x0ad69602hostap_set_multicast_list_queuedrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xb47559e0rc_map_dibusb_tabledrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x0d542439__ipv6_addr_typevmlinuxEXPORT_SYMBOL0x89a82e71phy_device_registervmlinuxEXPORT_SYMBOL0xd9b7cedecrypto_shash_finupvmlinuxEXPORT_SYMBOL_GPL0x6e68c267crypto_shash_finalvmlinuxEXPORT_SYMBOL_GPL0x4ab85ba7crypto_ahash_finupvmlinuxEXPORT_SYMBOL_GPL0x1c449c96crypto_ahash_finalvmlinuxEXPORT_SYMBOL_GPL0xeda63db3scatterwalk_copychunksvmlinuxEXPORT_SYMBOL_GPL0xd7b489e7can_rx_unregisternet/can/canEXPORT_SYMBOL0xb617ff7dhci_find_ltk_by_addrnet/bluetooth/bluetoothEXPORT_SYMBOL0x5949c114fc_vport_terminatedrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xf9d1164crpc_freevmlinuxEXPORT_SYMBOL_GPL0xd0344393sock_diag_put_meminfovmlinuxEXPORT_SYMBOL_GPL0x0c850562vm_insert_pagevmlinuxEXPORT_SYMBOL0xf0daa58eregister_consolevmlinuxEXPORT_SYMBOL0x9d68439enf_conntrack_l4proto_tcp4net/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x63001407transport_generic_handle_cdb_mapdrivers/target/target_core_modEXPORT_SYMBOL0x11a001eatransport_complete_taskdrivers/target/target_core_modEXPORT_SYMBOL0x72cfc8aasock_no_socketpairvmlinuxEXPORT_SYMBOL0x94632f90v4l_fill_dv_preset_infovmlinuxEXPORT_SYMBOL_GPL0xc27a89c2input_ff_eventvmlinuxEXPORT_SYMBOL_GPL0xa4a5272fdevm_gpio_requestvmlinuxEXPORT_SYMBOL0x663ca143arpt_do_tablenet/ipv4/netfilter/arp_tablesEXPORT_SYMBOL0x22236208iscsi_is_session_onlinedrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x6ebe1388async_tx_submitcrypto/async_tx/async_txEXPORT_SYMBOL_GPL0x4c27b5acdev_addr_delvmlinuxEXPORT_SYMBOL0x50e82f41gnet_stats_start_copyvmlinuxEXPORT_SYMBOL0x33f0768ccpufreq_quick_get_maxvmlinuxEXPORT_SYMBOL0x87a8ad19nfs_retry_commitvmlinuxEXPORT_SYMBOL_GPL0xa1bca802tcp_tso_segmentvmlinuxEXPORT_SYMBOL0x11aa2744i2c_lock_adaptervmlinuxEXPORT_SYMBOL_GPL0x9e1c012eplatform_device_delvmlinuxEXPORT_SYMBOL_GPL0x23025c3bplatform_device_putvmlinuxEXPORT_SYMBOL_GPL0x7b481262__fat_fs_errorvmlinuxEXPORT_SYMBOL_GPL0x3d69d1d0bio_copy_kernvmlinuxEXPORT_SYMBOL0xe0878bfe__kreallocvmlinuxEXPORT_SYMBOL0x0d64b6f9devm_free_irqvmlinuxEXPORT_SYMBOL0x3c147a8btask_nicevmlinuxEXPORT_SYMBOL0xee108f30__kfifo_dma_in_prepare_rvmlinuxEXPORT_SYMBOL0x6d2d06a1ceph_pagelist_reservenet/ceph/libcephEXPORT_SYMBOL0x2b45641bhostap_check_sta_fw_versiondrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x1f2c0c36rpc_exitvmlinuxEXPORT_SYMBOL_GPL0x1dd81db5kernel_acceptvmlinuxEXPORT_SYMBOL0x21738f27kset_create_and_addvmlinuxEXPORT_SYMBOL_GPL0x14f7d9b6mm_kobjvmlinuxEXPORT_SYMBOL_GPL0xc6ebda0eset_bdi_congestedvmlinuxEXPORT_SYMBOL0xef5b5016xt_proto_fininet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xd61f521fsynth_removedrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x0d2702a7usb_gadget_map_requestvmlinuxEXPORT_SYMBOL_GPL0x38640257sata_scr_write_flushvmlinuxEXPORT_SYMBOL_GPL0x0cadb389wakeup_source_dropvmlinuxEXPORT_SYMBOL_GPL0xf59f54d8driver_findvmlinuxEXPORT_SYMBOL_GPL0x2df147ecsg_miter_startvmlinuxEXPORT_SYMBOL0x1864d755blk_queue_unprep_rqvmlinuxEXPORT_SYMBOL0x7463e464lock_may_readvmlinuxEXPORT_SYMBOL0x56d697cecpu_upvmlinuxEXPORT_SYMBOL_GPL0xc006d4e5fc_block_scsi_ehdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xcd8ef810ath9k_hw_disable_interruptsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x295e71dcsnd_card_freevmlinuxEXPORT_SYMBOL0x463eee11dma_buf_map_attachmentvmlinuxEXPORT_SYMBOL_GPL0xfaa73251tty_mode_ioctlvmlinuxEXPORT_SYMBOL_GPL0xf6734ce6fb_classvmlinuxEXPORT_SYMBOL0x51620e94load_nlsvmlinuxEXPORT_SYMBOL0xadf19f3ffbtft_write_reg8_bus9drivers/video/fbtft/fbtftEXPORT_SYMBOL0x2857be73target_fabric_configfs_freedrivers/target/target_core_modEXPORT_SYMBOL0xf923a5b1oslec_freedrivers/staging/echo/echoEXPORT_SYMBOL_GPL0xc86180bcrt2x00lib_txdone_noinfodrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x0ee3e202ath6kl_core_createdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x5796e038dm_exception_store_destroydrivers/md/dm-snapshotEXPORT_SYMBOL0x407c5fe2drm_mode_connector_detach_encoderdrivers/gpu/drm/drmEXPORT_SYMBOL0x97999817rfkill_set_hw_statevmlinuxEXPORT_SYMBOL0x21ca7f25axp_readvmlinuxEXPORT_SYMBOL_GPL0x4859b8bbrtc_year_daysvmlinuxEXPORT_SYMBOL0xb220bc75input_unregister_polled_devicevmlinuxEXPORT_SYMBOL0xe8099dbdUSBC_Host_StartSessionvmlinuxEXPORT_SYMBOL0xfe1a9b12ehci_cf_port_reset_rwsemvmlinuxEXPORT_SYMBOL_GPL0x5ec1bedcata_link_offlinevmlinuxEXPORT_SYMBOL_GPL0x1a03ca7data_host_suspendvmlinuxEXPORT_SYMBOL_GPL0x0c65e73cscsi_normalize_sensevmlinuxEXPORT_SYMBOL0xc45e19fa__pm_runtime_use_autosuspendvmlinuxEXPORT_SYMBOL_GPL0x05dcbcc2crypto_lookup_aeadvmlinuxEXPORT_SYMBOL_GPL0x121ed3f3add_timer_onvmlinuxEXPORT_SYMBOL_GPL0x0e819dacceph_osdc_alloc_requestnet/ceph/libcephEXPORT_SYMBOL0x7f41e2dausb_wwan_opendrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x98bb5a22eeprom_93cx6_readdrivers/misc/eeprom/eeprom_93cx6EXPORT_SYMBOL_GPL0x1b743461klist_iter_exitvmlinuxEXPORT_SYMBOL_GPL0x9edb9840ip6_local_outvmlinuxEXPORT_SYMBOL_GPL0x895b909cregister_pppox_protovmlinuxEXPORT_SYMBOL0x2ab291e2pm_runtime_set_autosuspend_delayvmlinuxEXPORT_SYMBOL_GPL0xfb6eedf9power_group_namevmlinuxEXPORT_SYMBOL_GPL0x215ebd78bitrev16vmlinuxEXPORT_SYMBOL0x390def22kstrtou16_from_uservmlinuxEXPORT_SYMBOL0x9a74417ekstrtoull_from_uservmlinuxEXPORT_SYMBOL0x2b888b0ascsi_is_sas_rphydrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xe4185c9ccx231xx_dev_uninitdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x0c47a450cx24123_attachdrivers/media/dvb/frontends/cx24123EXPORT_SYMBOL0x6dbd8d7dmd_raid5_congesteddrivers/md/raid456EXPORT_SYMBOL_GPL0xb890be2cmd_raid1_congesteddrivers/md/raid1EXPORT_SYMBOL_GPL0xf81f98cfxdr_init_decodevmlinuxEXPORT_SYMBOL_GPL0xc5a8edaasnd_pcm_new_internalvmlinuxEXPORT_SYMBOL0x5b227decmd_check_no_bitmapvmlinuxEXPORT_SYMBOL0x923ebcdav4l2_i2c_new_subdevvmlinuxEXPORT_SYMBOL_GPL0x98e784b6USBC_EnableWakeIrqvmlinuxEXPORT_SYMBOL0xfed11ed1usb_mon_deregistervmlinuxEXPORT_SYMBOL_GPL0x1fbcb4e5device_unregistervmlinuxEXPORT_SYMBOL_GPL0x2745f478crypto_aead_typevmlinuxEXPORT_SYMBOL_GPL0x489b6c9fnfs_remove_bad_delegationvmlinuxEXPORT_SYMBOL_GPL0x5c77078ajbd2_journal_loadvmlinuxEXPORT_SYMBOL0xfcedb3b2ezusb_set_resetdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x946262c3videobuf_mmap_freedrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x3da2a1f9iw_handler_set_thrspyvmlinuxEXPORT_SYMBOL0xca6d13faxfrm_state_addvmlinuxEXPORT_SYMBOL0x268878beping_rcvvmlinuxEXPORT_SYMBOL_GPL0x3ff97948mmc_cleanup_queuevmlinuxEXPORT_SYMBOL0x89bb9a94sw_usb_host0_enablevmlinuxEXPORT_SYMBOL0xe8df7de8USBC_SelectFIFOvmlinuxEXPORT_SYMBOL0xff5a8cfecn_del_callbackvmlinuxEXPORT_SYMBOL_GPL0xda3a7ca9regulator_is_enabledvmlinuxEXPORT_SYMBOL_GPL0xf969bfe6nf_ct_l4proto_putnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x27af4ac8nf_ct_l3proto_putnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x68a3f3d9usb_serial_deregister_driversdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x6a8ab9e5dvb_register_devicedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xbe92a26edrm_fill_in_devdrivers/gpu/drm/drmEXPORT_SYMBOL0xa09dd3a3dapm_mark_dirtyvmlinuxEXPORT_SYMBOL_GPL0xd160d221scsicam_bios_paramvmlinuxEXPORT_SYMBOL0xf587beedsingle_release_netvmlinuxEXPORT_SYMBOL_GPL0xd73254e5I_BDEVvmlinuxEXPORT_SYMBOL0xa5f6b57assb_commit_settingsdrivers/ssb/ssbEXPORT_SYMBOL0x219b9d22rt2x00usb_vendor_requestdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xede4a173tty_port_tty_getvmlinuxEXPORT_SYMBOL0x6c93fe94tty_port_tty_setvmlinuxEXPORT_SYMBOL0x6c190cf3devm_regulator_getvmlinuxEXPORT_SYMBOL_GPL0x3441c3d6gpio_set_value_cansleepvmlinuxEXPORT_SYMBOL_GPL0xfb0d4f2dseq_release_netvmlinuxEXPORT_SYMBOL_GPL0x6316e8e4inet_csk_route_child_sockvmlinuxEXPORT_SYMBOL_GPL0x79cf624dphy_stop_interruptsvmlinuxEXPORT_SYMBOL0x0e226cf3vfs_path_lookupvmlinuxEXPORT_SYMBOL0x4c453019find_or_create_pagevmlinuxEXPORT_SYMBOL0x65bbbc78schedule_hrtimeout_rangevmlinuxEXPORT_SYMBOL_GPL0x19ecaba5sw_dma_dump_chanvmlinuxEXPORT_SYMBOL0x89ee69b0synth_adddrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xa43340e7sas_phy_adddrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x2b1aa012rt2x00lib_dmastartdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x65045495usb_sg_initvmlinuxEXPORT_SYMBOL_GPL0x8c537d79usb_sg_waitvmlinuxEXPORT_SYMBOL_GPL0x557c88b2scsi_reset_providervmlinuxEXPORT_SYMBOL0x09e17422crypto_register_pcompvmlinuxEXPORT_SYMBOL_GPL0x6d820fd7jbd2_journal_flushvmlinuxEXPORT_SYMBOL0x128914cdqtree_release_dquotvmlinuxEXPORT_SYMBOL0x1fecf024invalidate_bdevvmlinuxEXPORT_SYMBOL0x81fff2d1ip_set_netmask_mapnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xfda3ec7aip_set_put_byindexnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x38902cb3ceph_put_page_vectornet/ceph/libcephEXPORT_SYMBOL0xa5d08955rt2x00usb_disable_radiodrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xdfc8aa12pmbus_check_byte_registerdrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x33092494tcp_twsk_uniquevmlinuxEXPORT_SYMBOL_GPL0x9714d520netdev_infovmlinuxEXPORT_SYMBOL0xe25990cemmc_try_claim_hostvmlinuxEXPORT_SYMBOL0x11267875scsi_extd_sense_formatvmlinuxEXPORT_SYMBOL0x6130d8eepm_wakeup_eventvmlinuxEXPORT_SYMBOL_GPL0x6c61ce70num_registered_fbvmlinuxEXPORT_SYMBOL0x6640d84bkobject_ueventvmlinuxEXPORT_SYMBOL_GPL0x7b40ee48xdr_buf_from_iovvmlinuxEXPORT_SYMBOL_GPL0x1673993bwakeup_source_addvmlinuxEXPORT_SYMBOL_GPL0xb1c6773bparport_wait_peripheraldrivers/parport/parportEXPORT_SYMBOL0xbbe7b8d9ar9003_mci_cleanupdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa02215b1snd_pcm_lib_default_mmapvmlinuxEXPORT_SYMBOL_GPL0x45af21cd__dev_printkvmlinuxEXPORT_SYMBOL0xb9f626fftty_hung_up_pvmlinuxEXPORT_SYMBOL0x46c9c3ebblk_cleanup_queuevmlinuxEXPORT_SYMBOL0xf5135c8ageneric_setleasevmlinuxEXPORT_SYMBOL0x18ac88e7wiphy_to_ieee80211_hwnet/mac80211/mac80211EXPORT_SYMBOL0x9e0b5d0ausb_ftdi_elan_edset_setupdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x1e0cd5ecath9k_hw_setmcastfilterdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x06bd5837ipv6_getsockoptvmlinuxEXPORT_SYMBOL0x9d87e3e0roccat_connectvmlinuxEXPORT_SYMBOL_GPL0x9994c0caps2_is_keyboard_idvmlinuxEXPORT_SYMBOL0xdc047fc4scsi_dev_info_list_add_keyedvmlinuxEXPORT_SYMBOL0xdc97af2esyscore_suspendvmlinuxEXPORT_SYMBOL_GPL0x044dae08timerqueue_delvmlinuxEXPORT_SYMBOL_GPL0x9d33beaav4l2_i2c_new_subdev_boardvmlinuxEXPORT_SYMBOL_GPL0x26c660b9usb_driver_release_interfacevmlinuxEXPORT_SYMBOL_GPL0xf6e874f5ata_timing_mergevmlinuxEXPORT_SYMBOL_GPL0xcfca6052mpage_writepagesvmlinuxEXPORT_SYMBOL0x866155f4write_one_pagevmlinuxEXPORT_SYMBOL0x32b31a8cktime_get_boottimevmlinuxEXPORT_SYMBOL_GPL0x15892417async_synchronize_cookievmlinuxEXPORT_SYMBOL_GPL0xb5bb3cb8lis3lv02d_joystick_disabledrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0x0e79afb3dib7000p_ctrl_timfdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x561ec57fcfg80211_notify_new_peer_candidatevmlinuxEXPORT_SYMBOL0x1bf4dee0inet_add_protocolvmlinuxEXPORT_SYMBOL0x8eb1511bUSBC_Host_FlushFifovmlinuxEXPORT_SYMBOL0x6f74d25eUSBC_Host_ConfigTransferModevmlinuxEXPORT_SYMBOL0xfdb5f108ata_host_activatevmlinuxEXPORT_SYMBOL_GPL0x828a57e0n_tty_ioctl_helpervmlinuxEXPORT_SYMBOL0x066eaac2nlmsvc_opsvmlinuxEXPORT_SYMBOL_GPL0x228ee437sync_blockdevvmlinuxEXPORT_SYMBOL0x6bb795dcnobh_write_endvmlinuxEXPORT_SYMBOL0xedd9106d__ashrdi3vmlinuxEXPORT_SYMBOL0xff67b37f__lshrdi3vmlinuxEXPORT_SYMBOL0x4374eee8can_put_echo_skbdrivers/net/can/can-devEXPORT_SYMBOL_GPL0xcaa7791edibusb_rc_querydrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x85b5e625rfkill_set_statesvmlinuxEXPORT_SYMBOL0x6e720ff2rtnl_unlockvmlinuxEXPORT_SYMBOL0xa4aff8b0sock_rfreevmlinuxEXPORT_SYMBOL0x394709bdkernel_recvmsgvmlinuxEXPORT_SYMBOL0x5eacba1fahci_interruptvmlinuxEXPORT_SYMBOL_GPL0x36edb5d4__root_device_registervmlinuxEXPORT_SYMBOL_GPL0xab2ea2bedisk_part_iter_initvmlinuxEXPORT_SYMBOL_GPL0xeb0dc987freeze_bdevvmlinuxEXPORT_SYMBOL0x4cf9b576srcu_batches_completedvmlinuxEXPORT_SYMBOL_GPL0x55b87602cx2341x_handler_setupdrivers/media/video/cx2341xEXPORT_SYMBOL0xe03942f5ip_xfrm_me_hardervmlinuxEXPORT_SYMBOL0xc12cacdd__netdev_printkvmlinuxEXPORT_SYMBOL0x418393b8skb_kill_datagramvmlinuxEXPORT_SYMBOL0x4d56aa8fkfree_skbvmlinuxEXPORT_SYMBOL0xbe5e1fb3sw_usb_disable_ohcivmlinuxEXPORT_SYMBOL0x49e92945kernel_kobjvmlinuxEXPORT_SYMBOL_GPL0xe5a2ba33atomic_notifier_chain_registervmlinuxEXPORT_SYMBOL_GPL0xab1d6cc1param_get_longvmlinuxEXPORT_SYMBOL0x4c1371d0ve_startvmlinuxEXPORT_SYMBOL0x0a23cf7dsnd_usbmidi_createsound/usb/snd-usbmidi-libEXPORT_SYMBOL0xc0512e0fssb_admatch_basedrivers/ssb/ssbEXPORT_SYMBOL0xd481192bssb_admatch_sizedrivers/ssb/ssbEXPORT_SYMBOL0x051b0134drm_mm_takedowndrivers/gpu/drm/drmEXPORT_SYMBOL0xac47e9e4inet_twsk_schedulevmlinuxEXPORT_SYMBOL_GPL0x698be398regulator_get_voltagevmlinuxEXPORT_SYMBOL_GPL0x226c7e78amba_driver_unregistervmlinuxEXPORT_SYMBOL0x300d7e57free_rsvmlinuxEXPORT_SYMBOL_GPL0x3d93ee61posix_acl_allocvmlinuxEXPORT_SYMBOL0x1db7dc40pgprot_kernelvmlinuxEXPORT_SYMBOL0x25e25984nfnetlink_parse_nat_setup_hooknet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xcc7a90ddget_mtd_device_nmdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x66535a18adxl34x_suspenddrivers/input/misc/adxl34xEXPORT_SYMBOL_GPL0xe4e05c47svc_set_num_threadsvmlinuxEXPORT_SYMBOL_GPL0xf9cadfb7skb_copy_datagram_iovecvmlinuxEXPORT_SYMBOL0x25ee4ab6__kfree_skbvmlinuxEXPORT_SYMBOL0x2cab7d2afuse_do_openvmlinuxEXPORT_SYMBOL_GPL0xfd305341walk_stackframevmlinuxEXPORT_SYMBOL0xac34b9b5dib7000p_update_plldrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xd9520f10snd_soc_dapm_force_enable_pinvmlinuxEXPORT_SYMBOL_GPL0x31b31f5ccsum_partial_copy_nocheckvmlinuxEXPORT_SYMBOL0xf801bd00ip_defragvmlinuxEXPORT_SYMBOL0xd9d55457snd_soc_test_bitsvmlinuxEXPORT_SYMBOL_GPL0x51e47a6dmmc_interrupt_hpivmlinuxEXPORT_SYMBOL0x8a6c0f6ammc_can_discardvmlinuxEXPORT_SYMBOL0x532b5109scsi_flush_workvmlinuxEXPORT_SYMBOL_GPL0x04c0f49efbcon_rotate_ccwvmlinuxEXPORT_SYMBOL0x8f0ed7adidr_destroyvmlinuxEXPORT_SYMBOL0x2feefa5fida_destroyvmlinuxEXPORT_SYMBOL0x2d49e36fgeneric_file_aio_readvmlinuxEXPORT_SYMBOL0x10eeefaearpt_alloc_initial_tablenet/ipv4/netfilter/arp_tablesEXPORT_SYMBOL_GPL0x715441b0osduld_register_testdrivers/scsi/osd/osdEXPORT_SYMBOL0x3a7125a9onenand_scan_bbtdrivers/mtd/onenand/onenandEXPORT_SYMBOL0x8a4454ecxprt_wait_for_buffer_spacevmlinuxEXPORT_SYMBOL_GPL0xe10b3434free_netdevvmlinuxEXPORT_SYMBOL0x991c851av4l2_subdev_queryctrlvmlinuxEXPORT_SYMBOL0xc9ec4e21free_percpuvmlinuxEXPORT_SYMBOL_GPL0x06fbc9ecgss_mech_get_by_pseudoflavorvmlinuxEXPORT_SYMBOL_GPL0x3a65c4e9sk_setup_capsvmlinuxEXPORT_SYMBOL_GPL0xdad50ddespi_sync_lockedvmlinuxEXPORT_SYMBOL_GPL0x6609c7d6scsi_host_getvmlinuxEXPORT_SYMBOL0x555d5712regulator_bulk_getvmlinuxEXPORT_SYMBOL_GPL0x668da8d5zlib_inflateIncompvmlinuxEXPORT_SYMBOL0x66f4145eidr_pre_getvmlinuxEXPORT_SYMBOL0xc6b13811ida_pre_getvmlinuxEXPORT_SYMBOL0x28d664ff__raw_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x4d3c153fsigprocmaskvmlinuxEXPORT_SYMBOL0x676541afparport_ieee1284_ecp_write_addrdrivers/parport/parportEXPORT_SYMBOL0x3ab2b192parport_ieee1284_epp_write_addrdrivers/parport/parportEXPORT_SYMBOL0xe37b9390mtd_concat_destroydrivers/mtd/mtdEXPORT_SYMBOL0x839ce97edrm_vblank_initdrivers/gpu/drm/drmEXPORT_SYMBOL0xbedf6539sk_stream_wait_connectvmlinuxEXPORT_SYMBOL0x9e13f6f6gf128mul_llevmlinuxEXPORT_SYMBOL0x836bdb72nand_flash_idsdrivers/mtd/nand/nand_idsEXPORT_SYMBOL0x86379259dib0070_wbd_offsetdrivers/media/dvb/frontends/dib0070EXPORT_SYMBOL0x8cd8e572flexcop_pass_dmx_packetsdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x06a5c53fadxl34x_probedrivers/input/misc/adxl34xEXPORT_SYMBOL_GPL0xcb3aafdedrm_global_mutexdrivers/gpu/drm/drmEXPORT_SYMBOL0x8d551befsysctl_tcp_rmemvmlinuxEXPORT_SYMBOL0x8c992d2esock_no_sendmsgvmlinuxEXPORT_SYMBOL0x25b7a9f9snd_soc_bytes_getvmlinuxEXPORT_SYMBOL_GPL0x69cb4dedi2c_master_recvvmlinuxEXPORT_SYMBOL0xff2f43a7jbd2_journal_update_sb_errnovmlinuxEXPORT_SYMBOL0x516f18c9vfs_unlinkvmlinuxEXPORT_SYMBOL0xbfa56df2ieee80211_stop_tx_ba_cb_irqsafenet/mac80211/mac80211EXPORT_SYMBOL0xfe8dc24btransport_init_se_cmddrivers/target/target_core_modEXPORT_SYMBOL0x69006182scsi_tgt_it_nexus_createdrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x13abb00dfcoe_check_wait_queuedrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xacb25c4blro_flush_allvmlinuxEXPORT_SYMBOL0x1b3bddddkey_revokevmlinuxEXPORT_SYMBOL0xc6064b0fpipe_unlockvmlinuxEXPORT_SYMBOL0x29945037transport_complete_sync_cachedrivers/target/target_core_modEXPORT_SYMBOL0x2bd874edrt2x00lib_remove_devdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x3e109b08pmbus_read_byte_datadrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0xdedf0d5bxprt_reserve_xprt_congvmlinuxEXPORT_SYMBOL_GPL0xec7ab353genlmsg_multicast_allnsvmlinuxEXPORT_SYMBOL0xe2e23da0__sock_recv_wifi_statusvmlinuxEXPORT_SYMBOL_GPL0x2fff7812axpvmlinuxEXPORT_SYMBOL_GPL0x2ce44ee6pm_generic_restorevmlinuxEXPORT_SYMBOL_GPL0x8f0e9f79bus_rescan_devicesvmlinuxEXPORT_SYMBOL_GPL0xe39df2c8put_tty_drivervmlinuxEXPORT_SYMBOL0x8afc79e9backlight_force_updatevmlinuxEXPORT_SYMBOL0x1655bb05queue_work_onvmlinuxEXPORT_SYMBOL_GPL0x59d8223aioport_resourcevmlinuxEXPORT_SYMBOL0x5e789161ieee80211_sched_scan_stoppednet/mac80211/mac80211EXPORT_SYMBOL0x3453d3aap54_free_commondrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x0b3d9371ath9k_hw_addrxbuf_edmadrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x66cad25atuner_MT2063_SoftwareShutdowndrivers/media/common/tuners/mt2063EXPORT_SYMBOL_GPL0xc7a4fbedrtnl_lockvmlinuxEXPORT_SYMBOL0x94a68723ata_scsi_slave_destroyvmlinuxEXPORT_SYMBOL_GPL0xdc19b88adebugfs_create_boolvmlinuxEXPORT_SYMBOL_GPL0x9a2a540a__fscache_maybe_release_pagevmlinuxEXPORT_SYMBOL0xc26c2c61generic_file_splice_readvmlinuxEXPORT_SYMBOL0x4a4f050aprepare_kernel_credvmlinuxEXPORT_SYMBOL0x897473dfmktimevmlinuxEXPORT_SYMBOL0x290bc123aw_clksrc_readvmlinuxEXPORT_SYMBOL0x2288378fsystem_statevmlinuxEXPORT_SYMBOL0x342cc1cdllc_add_packnet/llc/llcEXPORT_SYMBOL0x685e9593xfrm6_tunnel_alloc_spinet/ipv6/xfrm6_tunnelEXPORT_SYMBOL0x813d9aafath9k_hw_deinitdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x156add53udp_push_pending_framesvmlinuxEXPORT_SYMBOL0x13128889hidinput_connectvmlinuxEXPORT_SYMBOL_GPL0x8ab12909v4l2_int_ioctl_0vmlinuxEXPORT_SYMBOL_GPL0x828fbd1bsplice_from_pipe_nextvmlinuxEXPORT_SYMBOL0x6d044c26param_ops_uintvmlinuxEXPORT_SYMBOL0xd5f2172fdel_timer_syncvmlinuxEXPORT_SYMBOL0xec789800wm_hubs_vmid_enasound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0x7c640527bt_infonet/bluetooth/bluetoothEXPORT_SYMBOL0x93ae023fmwifiex_add_carddrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x85d52182soc_mbus_get_fmtdescdrivers/media/video/soc_mediabusEXPORT_SYMBOL0xfc8985cfstv6110_attachdrivers/media/dvb/frontends/stv6110EXPORT_SYMBOL0x5848ac1clnbp22_attachdrivers/media/dvb/frontends/lnbp22EXPORT_SYMBOL0x13e247e0rc_map_af9005_tabledrivers/media/dvb/dvb-usb/dvb-usb-af9005-remoteEXPORT_SYMBOL0x00e8097bcsum_partial_copy_fromiovecendvmlinuxEXPORT_SYMBOL0x3406870fcon_set_default_unimapvmlinuxEXPORT_SYMBOL0x35969deefb_deferred_io_openvmlinuxEXPORT_SYMBOL_GPL0x48895b3bl2tp_tunnel_deletenet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0xee6f438binet_diag_bc_sknet/ipv4/inet_diagEXPORT_SYMBOL_GPL0xe6f7f456srp_remove_hostdrivers/scsi/scsi_transport_srpEXPORT_SYMBOL_GPL0x21e059c6rt2800_read_eeprom_efusedrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x08cf68b0ath9k_hw_abortpcurecvdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x58bb50f6mtd_do_chip_probedrivers/mtd/chips/gen_probeEXPORT_SYMBOL0xc7c9cd21s921_attachdrivers/media/dvb/frontends/s921EXPORT_SYMBOL0x16a36411ipmi_get_smi_infodrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xa3e8243ddev_get_by_indexvmlinuxEXPORT_SYMBOL0x024a8b32dma_buf_unmap_attachmentvmlinuxEXPORT_SYMBOL_GPL0x462a2e75match_strlcpyvmlinuxEXPORT_SYMBOL0x6559e569ioctl_by_bdevvmlinuxEXPORT_SYMBOL0x53c56857osd_finalize_requestdrivers/scsi/osd/libosdEXPORT_SYMBOL0x0185ef11init_netvmlinuxEXPORT_SYMBOL0x2f622ea1roccat_disconnectvmlinuxEXPORT_SYMBOL_GPL0x6b26d77bmmc_power_restore_hostvmlinuxEXPORT_SYMBOL0x013452b5sw_hcd_h_startvmlinuxEXPORT_SYMBOL0x6114d8a4regulator_force_disablevmlinuxEXPORT_SYMBOL_GPL0x70ddbb89textsearch_find_continuousvmlinuxEXPORT_SYMBOL0x0343a1a8__list_addvmlinuxEXPORT_SYMBOL0xf0c9ee0d__next_cpuvmlinuxEXPORT_SYMBOL0xde2ae20ecrypto_larval_lookupvmlinuxEXPORT_SYMBOL_GPL0x6cac14b4__crypto_alloc_tfmvmlinuxEXPORT_SYMBOL_GPL0xa58006aekey_unlinkvmlinuxEXPORT_SYMBOL0x6c61d426keyring_searchvmlinuxEXPORT_SYMBOL0x8a368fd2configfs_unregister_subsystemvmlinuxEXPORT_SYMBOL0xd820c283eventfd_ctx_remove_wait_queuevmlinuxEXPORT_SYMBOL_GPL0x0cc7beefgeneric_delete_inodevmlinuxEXPORT_SYMBOL0xb5f17edfperf_register_guest_info_callbacksvmlinuxEXPORT_SYMBOL_GPL0x0bc20c1bsunxi_gpio_request_arrayvmlinuxEXPORT_SYMBOL_GPL0xb3c22652osd_req_create_objectdrivers/scsi/osd/libosdEXPORT_SYMBOL0x27b87f3ffc_vport_setlinkdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x7e606130snd_soc_calc_bclkvmlinuxEXPORT_SYMBOL_GPL0x279d4d59nf_nat_pptp_hook_expectfnnet/netfilter/nf_conntrack_pptpEXPORT_SYMBOL_GPL0xbb60cf4cceph_release_page_vectornet/ceph/libcephEXPORT_SYMBOL0xb911700dmmc_wait_for_reqvmlinuxEXPORT_SYMBOL0xea78d3f7w1_add_master_devicevmlinuxEXPORT_SYMBOL0xbe52e1c0regmap_init_spivmlinuxEXPORT_SYMBOL_GPL0x30bde2ceregmap_init_i2cvmlinuxEXPORT_SYMBOL_GPL0x98cc564aregulator_set_voltagevmlinuxEXPORT_SYMBOL_GPL0xd6f24b29blk_run_queuevmlinuxEXPORT_SYMBOL0xcd63c845__aeabi_lasrvmlinuxEXPORT_SYMBOL0x8a4fa83b__aeabi_llsrvmlinuxEXPORT_SYMBOL0x91815586irda_param_packnet/irda/irdaEXPORT_SYMBOL0x08232c85hci_register_devnet/bluetooth/bluetoothEXPORT_SYMBOL0xe6053bc9iscsi_parse_pr_out_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0x0be60942fc_frame_crc_checkdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x05011666__secpath_destroyvmlinuxEXPORT_SYMBOL0x42c8e001v4l2_ctrl_nextvmlinuxEXPORT_SYMBOL0xd13425f4i2c_smbus_write_i2c_block_datavmlinuxEXPORT_SYMBOL0xaf64ad0dzlib_deflatevmlinuxEXPORT_SYMBOL0x24fdac79wake_bit_functionvmlinuxEXPORT_SYMBOL0xfcedcb63inet_csk_route_reqvmlinuxEXPORT_SYMBOL_GPL0xb32a5550snd_rawmidi_drain_outputvmlinuxEXPORT_SYMBOL0x22d6f218hid_set_fieldvmlinuxEXPORT_SYMBOL_GPL0xc4b07e0bbus_remove_filevmlinuxEXPORT_SYMBOL_GPL0xfbe68f75fuse_request_send_backgroundvmlinuxEXPORT_SYMBOL_GPL0x2fb546f6locks_release_privatevmlinuxEXPORT_SYMBOL_GPL0x0cb5947cmempool_resizevmlinuxEXPORT_SYMBOL0xbb014e34v253_opssound/soc/codecs/snd-soc-cx20442EXPORT_SYMBOL_GPL0xdb55ba04snd_ac97_pcm_opensound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x3b02ac55lis3_devdrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0x92bca9afxfrm_unregister_kmvmlinuxEXPORT_SYMBOL0xeb361e72in_dev_finish_destroyvmlinuxEXPORT_SYMBOL0x930e5c4dhid_destroy_devicevmlinuxEXPORT_SYMBOL_GPL0x0521445blist_delvmlinuxEXPORT_SYMBOL0xd5152710sg_nextvmlinuxEXPORT_SYMBOL0x13e0337bbio_map_uservmlinuxEXPORT_SYMBOL0x0b07abe2unshare_fs_structvmlinuxEXPORT_SYMBOL_GPL0x3a746f01smp_call_function_anyvmlinuxEXPORT_SYMBOL_GPL0x3534e2a3system_nrt_wqvmlinuxEXPORT_SYMBOL_GPL0xd0fb7cd4__tasklet_hi_schedule_firstvmlinuxEXPORT_SYMBOL0x425456c9cpu_cachevmlinuxEXPORT_SYMBOL0x32c6ceb6__nf_conntrack_confirmnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xb07ddb6dcore_tpg_check_initiator_node_acldrivers/target/target_core_modEXPORT_SYMBOL0x87b96d0ausbnet_suspenddrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xc377ff58lirc_dev_fop_polldrivers/media/rc/lirc_devEXPORT_SYMBOL0x28e0cb61cfg80211_wext_siwrtsvmlinuxEXPORT_SYMBOL_GPL0x233a5b5bcfg80211_wext_giwrtsvmlinuxEXPORT_SYMBOL_GPL0x47339605unix_inq_lenvmlinuxEXPORT_SYMBOL_GPL0x307fb025mdiobus_scanvmlinuxEXPORT_SYMBOL0x128a9458dmam_alloc_coherentvmlinuxEXPORT_SYMBOL0x0f52e952tty_port_carrier_raisedvmlinuxEXPORT_SYMBOL0x1e314b21regulator_use_dummy_regulatorvmlinuxEXPORT_SYMBOL_GPL0x7ad8b521__brelsevmlinuxEXPORT_SYMBOL0xf033520bpipe_lockvmlinuxEXPORT_SYMBOL0x883d6572ip_set_name_byindexnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xc4352140scsi_host_get_commanddrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0xa82b2066dm_bufio_write_dirty_buffersdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x7de53067rpc_init_rttvmlinuxEXPORT_SYMBOL_GPL0x5e105439axp_readsvmlinuxEXPORT_SYMBOL_GPL0x3072d0a2scsi_device_set_statevmlinuxEXPORT_SYMBOL0x347fd4b3eventfd_ctx_getvmlinuxEXPORT_SYMBOL_GPL0x941f2aaaeventfd_ctx_putvmlinuxEXPORT_SYMBOL_GPL0x01ea2c30mark_buffer_async_writevmlinuxEXPORT_SYMBOL0x1cc4f099wait_for_completion_interruptible_timeoutvmlinuxEXPORT_SYMBOL0x9d97c46bmwifiex_deauthenticatedrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x951e02dalbtf_send_tx_feedbackdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xaa083810sparse_keymap_entry_from_scancodedrivers/input/sparse-keymapEXPORT_SYMBOL0x28e23139xfrm_probe_algsvmlinuxEXPORT_SYMBOL_GPL0xb0c6ab83ip_route_me_hardervmlinuxEXPORT_SYMBOL0xf952bc9einet_sock_destructvmlinuxEXPORT_SYMBOL0x917a3f2anf_reinjectvmlinuxEXPORT_SYMBOL0x2378fa49mmc_add_hostvmlinuxEXPORT_SYMBOL0x5c2c391bdev_pm_qos_update_requestvmlinuxEXPORT_SYMBOL_GPL0x267b2778tty_chars_in_buffervmlinuxEXPORT_SYMBOL0x3a9b6fb9blk_unregister_regionvmlinuxEXPORT_SYMBOL0x67d89cbcunregister_nlsvmlinuxEXPORT_SYMBOL0x82f11a24clk_enablevmlinuxEXPORT_SYMBOL0xb9a8532fceph_auth_verify_authorizer_replynet/ceph/libcephEXPORT_SYMBOL0x4bcd2d57md_integrity_registervmlinuxEXPORT_SYMBOL0xa3a967dd__serio_register_portvmlinuxEXPORT_SYMBOL0xc17515d7usb_hcds_loadedvmlinuxEXPORT_SYMBOL_GPL0x44da5d0f__csum_ipv6_magicvmlinuxEXPORT_SYMBOL0x427e7049ssb_bus_resumedrivers/ssb/ssbEXPORT_SYMBOL0x6d014864parport_claimdrivers/parport/parportEXPORT_SYMBOL0x6a9271acskb_pull_rcsumvmlinuxEXPORT_SYMBOL_GPL0xfee15e8asnd_ctl_unregister_ioctlvmlinuxEXPORT_SYMBOL0xc5a24d78__scsi_device_lookup_by_targetvmlinuxEXPORT_SYMBOL0xaba75d43osd_req_read_sgdrivers/scsi/osd/libosdEXPORT_SYMBOL0x9076f5e6usbnet_get_msgleveldrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x2e9a2420usbnet_set_msgleveldrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x01902adfnetpoll_trapvmlinuxEXPORT_SYMBOL0x9ad09669USBC_Dev_SetAddressvmlinuxEXPORT_SYMBOL0x50ba1b1cpm_generic_suspendvmlinuxEXPORT_SYMBOL_GPL0xebdbe48cradix_tree_gang_lookupvmlinuxEXPORT_SYMBOL0x7169a0f8register_nlsvmlinuxEXPORT_SYMBOL0x00e200b0locks_alloc_lockvmlinuxEXPORT_SYMBOL_GPL0x6585e310alloc_pages_exact_nidvmlinuxEXPORT_SYMBOL0xb121390aprobe_irq_onvmlinuxEXPORT_SYMBOL0x8164b1ccump_dd_handle_create_from_secure_iddrivers/gpu/mali/ump/umpEXPORT_SYMBOL0xa9e5f3dacache_create_netvmlinuxEXPORT_SYMBOL_GPL0xeed2ad30svc_prepare_threadvmlinuxEXPORT_SYMBOL_GPL0xbd616f48xfrm_state_lookupvmlinuxEXPORT_SYMBOL0xbac5d3f1tcp_parse_optionsvmlinuxEXPORT_SYMBOL0xb82d79d7rps_may_expire_flowvmlinuxEXPORT_SYMBOL0x33958a27i2c_smbus_write_block_datavmlinuxEXPORT_SYMBOL0x0dc80f48usb_stor_suspendvmlinuxEXPORT_SYMBOL_GPL0x5a7be0f2fscache_mark_pages_cachedvmlinuxEXPORT_SYMBOL0xefd6cf06__aeabi_unwind_cpp_pr0vmlinuxEXPORT_SYMBOL0xb7ba76c7__aeabi_unwind_cpp_pr2vmlinuxEXPORT_SYMBOL0xbe40ace9irlmp_discovery_requestnet/irda/irdaEXPORT_SYMBOL0x9def98cfssb_device_is_enableddrivers/ssb/ssbEXPORT_SYMBOL0xd5463232svc_gss_principalvmlinuxEXPORT_SYMBOL_GPL0xee3d5085rpc_unlinkvmlinuxEXPORT_SYMBOL_GPL0xcade82a3snd_soc_codec_set_pllvmlinuxEXPORT_SYMBOL_GPL0x6f959b35locks_in_gracevmlinuxEXPORT_SYMBOL_GPL0x92841aa8module_refcountvmlinuxEXPORT_SYMBOL0x2a35da24usb_wwan_suspenddrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x83245601drm_mode_create_from_cmdline_modedrivers/gpu/drm/drmEXPORT_SYMBOL0x3d00eeeasunrpc_destroy_cache_detailvmlinuxEXPORT_SYMBOL_GPL0x79a7e8d5inet_ctl_sock_createvmlinuxEXPORT_SYMBOL_GPL0x84c1af32dev_addr_add_multiplevmlinuxEXPORT_SYMBOL0x33490266firmware_kobjvmlinuxEXPORT_SYMBOL_GPL0xde1212d2handle_edge_irqvmlinuxEXPORT_SYMBOL0x3d4dea84ip_vs_conn_in_getnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x03fa6dccusb_lock_device_for_resetvmlinuxEXPORT_SYMBOL_GPL0x20b04f81usb_ftdi_elan_edset_emptydrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x617dafb5i2400m_tx_msg_sentdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xc8b28da5soc_mbus_config_compatibledrivers/media/video/soc_mediabusEXPORT_SYMBOL0xed1d2a08sch56xx_write_virtual_regdrivers/hwmon/sch56xx-commonEXPORT_SYMBOL0x9bee89eagenl_register_mc_groupvmlinuxEXPORT_SYMBOL0x6f7bf662___pskb_trimvmlinuxEXPORT_SYMBOL0x4f572d04snd_timer_global_newvmlinuxEXPORT_SYMBOL0x41331b2cata_std_preresetvmlinuxEXPORT_SYMBOL_GPL0x5ee046dctty_driver_flush_buffervmlinuxEXPORT_SYMBOL0xd648e564fb_match_modevmlinuxEXPORT_SYMBOL0x85df9b6cstrsepvmlinuxEXPORT_SYMBOL0xe2d5255astrcmpvmlinuxEXPORT_SYMBOL0x788fe103iomem_resourcevmlinuxEXPORT_SYMBOL0xbc10dd97__put_user_4vmlinuxEXPORT_SYMBOL0x353e3fa5__get_user_4vmlinuxEXPORT_SYMBOL0xed0ae933ieee80211_queue_delayed_worknet/mac80211/mac80211EXPORT_SYMBOL0x36a56369osd_end_requestdrivers/scsi/osd/libosdEXPORT_SYMBOL0xf6f3db9btm6000_set_audio_bitratedrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0xe16e3e55dvb_ca_en50221_releasedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x2c548c23drm_fb_helper_pan_displaydrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x8663cec6snd_ctl_addvmlinuxEXPORT_SYMBOL0x2f47d8c7cpufreq_frequency_get_tablevmlinuxEXPORT_SYMBOL_GPL0x5d61ff00sata_scr_readvmlinuxEXPORT_SYMBOL_GPL0x40179203devm_kfreevmlinuxEXPORT_SYMBOL_GPL0x6a5744efLCD_GPIO_requestvmlinuxEXPORT_SYMBOL0x5342d0cdmnt_unpinvmlinuxEXPORT_SYMBOL0xb85a1e8aend_writebackvmlinuxEXPORT_SYMBOL0x423049cdvfs_createvmlinuxEXPORT_SYMBOL0x6ed41be2ceph_pagelist_appendnet/ceph/libcephEXPORT_SYMBOL0x474a8d44ath9k_hw_check_alivedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x5e607c10mtd_erase_callbackdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xaf5f7994remove_conflicting_framebuffersvmlinuxEXPORT_SYMBOL0xfb91ae45__ablkcipher_walk_completevmlinuxEXPORT_SYMBOL_GPL0xd3847c6fsb_min_blocksizevmlinuxEXPORT_SYMBOL0x6f9aba5dsas_phy_allocdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x154c6338dm_kcopyd_client_destroyvmlinuxEXPORT_SYMBOL0x61dcd268v4l2_device_set_namevmlinuxEXPORT_SYMBOL_GPL0x703189d7regulator_get_modevmlinuxEXPORT_SYMBOL_GPL0x59d696b6register_module_notifiervmlinuxEXPORT_SYMBOL0xc03ab504setup_deferrable_timer_on_stack_keyvmlinuxEXPORT_SYMBOL_GPL0x53dff67dwl12xx_debug_leveldrivers/net/wireless/wl12xx/wl12xxEXPORT_SYMBOL_GPL0x8a5a6f5cath9k_hw_setopmodedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x120c7ebcirda_unregister_dongledrivers/net/irda/sir-devEXPORT_SYMBOL0x8f4d3593cpuidle_disable_devicevmlinuxEXPORT_SYMBOL_GPL0x6b92281abitmap_start_syncvmlinuxEXPORT_SYMBOL0xc7208c3aserial8250_resume_portvmlinuxEXPORT_SYMBOL0x15e606a1lirc_get_pdatadrivers/media/rc/lirc_devEXPORT_SYMBOL0xded860d0inet_csk_clone_lockvmlinuxEXPORT_SYMBOL_GPL0x75432960hid_input_reportvmlinuxEXPORT_SYMBOL_GPL0xa607f0beunregister_sysctl_tablevmlinuxEXPORT_SYMBOL0xaf91d89f__kernel_param_lockvmlinuxEXPORT_SYMBOL0x356bc6b3del_gendiskvmlinuxEXPORT_SYMBOL0x65398e75block_write_full_pagevmlinuxEXPORT_SYMBOL0xbbe28927nf_ct_invert_tuplenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x0bf1b1f8rt2800_config_shared_keydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x0b61974cusbnet_stopdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x4f1c33c8dib8000_update_plldrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x08a936cadm_btree_insert_notifydrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x2a44f520cyttsp_pm_opsdrivers/input/touchscreen/cyttsp_coreEXPORT_SYMBOL_GPL0xc8a84b35xfrm_register_typevmlinuxEXPORT_SYMBOL0xa61aa028snd_pcm_format_unsignedvmlinuxEXPORT_SYMBOL0x9305f8e6cpufreq_getvmlinuxEXPORT_SYMBOL0x820cf541lockd_upvmlinuxEXPORT_SYMBOL_GPL0x4fffb879fat_sync_inodevmlinuxEXPORT_SYMBOL_GPL0x794edfa1clear_bdi_congestedvmlinuxEXPORT_SYMBOL0x0df23d9art2800_link_tunerdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xb9838b68sock_no_setsockoptvmlinuxEXPORT_SYMBOL0x9460b507sock_no_getsockoptvmlinuxEXPORT_SYMBOL0xb5349903snd_soc_default_writable_registervmlinuxEXPORT_SYMBOL_GPL0x697b5a39__blockdev_direct_IOvmlinuxEXPORT_SYMBOL0x93166733splice_from_pipe_endvmlinuxEXPORT_SYMBOL0x474dd6dbmigrate_pagevmlinuxEXPORT_SYMBOL0x2e45e488rcu_note_context_switchvmlinuxEXPORT_SYMBOL_GPL0x0fc13058usb_ftdi_elan_write_pcimemdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0xefb0a07esas_rphy_deletedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xa018f66crc_map_getdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x1be340a6ip6_route_me_hardervmlinuxEXPORT_SYMBOL0xba8c8d91thermal_zone_device_updatevmlinuxEXPORT_SYMBOL0x464d3488nfs_commit_release_pagesvmlinuxEXPORT_SYMBOL_GPL0xb22e5e9eiscsi_get_port_state_namedrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x98d465aciscsi_get_port_speed_namedrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x7954b1eafc_get_event_numberdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xfd242348fcoe_start_iodrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xc13bd643dib7090_tuner_sleepdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xff60f811km_new_mappingvmlinuxEXPORT_SYMBOL0x3e57862elro_receive_skbvmlinuxEXPORT_SYMBOL0xc58942cenapi_completevmlinuxEXPORT_SYMBOL0x7c7e667asnd_device_newvmlinuxEXPORT_SYMBOL0x5f3c8f5cmmc_assume_removablevmlinuxEXPORT_SYMBOL0x5dc9a164pm_generic_thaw_earlyvmlinuxEXPORT_SYMBOL_GPL0x47229b5cgpio_requestvmlinuxEXPORT_SYMBOL_GPL0x49ba87b4generic_block_bmapvmlinuxEXPORT_SYMBOL0x868784cb__symbol_getvmlinuxEXPORT_SYMBOL_GPL0x061bb265iscsi_boot_create_ethernetdrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0xade07742smscore_getbufferdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x73433750smscore_putbufferdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xe48debb7__ip_dev_findvmlinuxEXPORT_SYMBOL0x32037c51snd_pcm_hw_constraint_listvmlinuxEXPORT_SYMBOL0xbe0e5118nla_memcmpvmlinuxEXPORT_SYMBOL0xf1db1704nla_memcpyvmlinuxEXPORT_SYMBOL0x36c23bdenfs_put_clientvmlinuxEXPORT_SYMBOL_GPL0x6b7ec438d_materialise_uniquevmlinuxEXPORT_SYMBOL_GPL0xd4bbc841kmem_cache_freevmlinuxEXPORT_SYMBOL0x85ee6394file_remove_suidvmlinuxEXPORT_SYMBOL0x78fd36e7ipmi_request_supply_msgsdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xbe28cb65ieee80211_data_from_8023vmlinuxEXPORT_SYMBOL0x933cca0fget_cpu_devicevmlinuxEXPORT_SYMBOL_GPL0xe1ce149aamba_device_registervmlinuxEXPORT_SYMBOL0x5edd0762bin2bcdvmlinuxEXPORT_SYMBOL0x32f80ea9prepare_to_waitvmlinuxEXPORT_SYMBOL0xadf42bd5__request_regionvmlinuxEXPORT_SYMBOL0x6a01b7e8transport_generic_process_writedrivers/target/target_core_modEXPORT_SYMBOL0x3373536ecore_tpg_deregisterdrivers/target/target_core_modEXPORT_SYMBOL0xe219f609dvb_frontend_reinitialisedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x206a9022fixed_phy_set_link_updatevmlinuxEXPORT_SYMBOL_GPL0xdcd4d4ddata_host_detachvmlinuxEXPORT_SYMBOL_GPL0x8d4c1d04bdev_read_onlyvmlinuxEXPORT_SYMBOL0xf0009feeput_pages_listvmlinuxEXPORT_SYMBOL0x993ad14birda_param_extract_allnet/irda/irdaEXPORT_SYMBOL0x4677ae5es5h1411_attachdrivers/media/dvb/frontends/s5h1411EXPORT_SYMBOL0xa35509c9sock_wfreevmlinuxEXPORT_SYMBOL0x9969eb53snd_soc_info_volswvmlinuxEXPORT_SYMBOL_GPL0x3b2f5283test_set_page_writebackvmlinuxEXPORT_SYMBOL0xaac275b1abort_exclusive_waitvmlinuxEXPORT_SYMBOL0x091eb9b4round_jiffiesvmlinuxEXPORT_SYMBOL_GPL0xdba95fd5reserve_pmuvmlinuxEXPORT_SYMBOL_GPL0x3e3a771dsnd_ac97_pcm_assignsound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0xe1ecec20fbtft_write_vmem8_bus8drivers/video/fbtft/fbtftEXPORT_SYMBOL0x37973c8adm_exception_store_createdrivers/md/dm-snapshotEXPORT_SYMBOL0x4f5d5239gss_mech_get_by_OIDvmlinuxEXPORT_SYMBOL_GPL0xfd0d0b69qdisc_destroyvmlinuxEXPORT_SYMBOL0x5594be03bitmap_remapvmlinuxEXPORT_SYMBOL0x4159aa8ddquot_commitvmlinuxEXPORT_SYMBOL0x5e91cd5dtruncate_inode_pagesvmlinuxEXPORT_SYMBOL0xff0eaf32iscsi_conn_login_eventdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xda674f93dvb_frontend_detachdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x0422fe4ainet_csk_timer_bug_msgvmlinuxEXPORT_SYMBOL0x771cf0dainput_flush_devicevmlinuxEXPORT_SYMBOL0x16bbb372regmap_bulk_writevmlinuxEXPORT_SYMBOL_GPL0x5a83be8dsysfs_notifyvmlinuxEXPORT_SYMBOL_GPL0x0948cde9num_physpagesvmlinuxEXPORT_SYMBOL0xe5ef8170ath9k_hw_stop_dma_queuedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa1e5e841inet_hashvmlinuxEXPORT_SYMBOL_GPL0x73f41b3dmedia_entity_pipeline_stopvmlinuxEXPORT_SYMBOL_GPL0x9a1dfd65strpbrkvmlinuxEXPORT_SYMBOL0x863ded9fsysfs_create_filevmlinuxEXPORT_SYMBOL_GPL0x14ddf40fseq_lseekvmlinuxEXPORT_SYMBOL0x23121b40ip_vs_conn_out_get_protonet/netfilter/ipvs/ip_vsEXPORT_SYMBOL_GPL0xff7c69cfenclosure_add_devicedrivers/misc/enclosureEXPORT_SYMBOL_GPL0xb1a56979drm_crtc_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x2699a7a6ip6_frag_matchvmlinuxEXPORT_SYMBOL0x9e6d79f8snd_info_get_strvmlinuxEXPORT_SYMBOL0x10f06160cdrom_get_last_writtenvmlinuxEXPORT_SYMBOL0x1551dc51bitmap_find_free_regionvmlinuxEXPORT_SYMBOL0xd345e5f8ubi_leb_erasedrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xf37a3cfedm_rh_get_region_keydrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xa0af4fb8vlan_vid_addvmlinuxEXPORT_SYMBOL0x71fa908acache_flushvmlinuxEXPORT_SYMBOL_GPL0x627cc608sock_update_classidvmlinuxEXPORT_SYMBOL0xec31e48cleds_list_lockvmlinuxEXPORT_SYMBOL_GPL0x19fc7f60regulator_set_modevmlinuxEXPORT_SYMBOL_GPL0x56b63670lzo1x_1_compressvmlinuxEXPORT_SYMBOL_GPL0xbce881fcset_disk_rovmlinuxEXPORT_SYMBOL0x0d790ee1journal_invalidatepagevmlinuxEXPORT_SYMBOL0xb23bf2e7dquot_enablevmlinuxEXPORT_SYMBOL0x6e21bf09rt2x00queue_unmap_skbdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x2012d6a3nand_unlockdrivers/mtd/nand/nandEXPORT_SYMBOL0x85e870c3dib3000mc_pid_parsedrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0xff0a2ab8drm_gem_handle_createdrivers/gpu/drm/drmEXPORT_SYMBOL0x2e9b4253svc_alien_sockvmlinuxEXPORT_SYMBOL_GPL0xa187221dsnd_soc_limit_volumevmlinuxEXPORT_SYMBOL_GPL0xe04f7caadm_read_arg_groupvmlinuxEXPORT_SYMBOL0x0ea45be3bus_find_devicevmlinuxEXPORT_SYMBOL_GPL0x8ea7d718blk_rq_unprep_clonevmlinuxEXPORT_SYMBOL_GPL0x5ac84730relay_switch_subbufvmlinuxEXPORT_SYMBOL_GPL0xcfc52151rxrpc_get_server_data_keynet/rxrpc/af-rxrpcEXPORT_SYMBOL0x0a73c8b5register_ip_vs_app_incnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x6fed770fcfg80211_sched_scan_resultsvmlinuxEXPORT_SYMBOL0x89f829abrpc_createvmlinuxEXPORT_SYMBOL_GPL0x32d5e7fcxfrm_aalg_get_byidvmlinuxEXPORT_SYMBOL_GPL0x0df1f20ftcp_create_openreq_childvmlinuxEXPORT_SYMBOL0xfd14834esk_common_releasevmlinuxEXPORT_SYMBOL0x0e85b74cled_trigger_registervmlinuxEXPORT_SYMBOL_GPL0x6001e134video_device_releasevmlinuxEXPORT_SYMBOL0xf6a5f72finode_sub_rsv_spacevmlinuxEXPORT_SYMBOL0x24189c9cusbip_recv_xbuffdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xa184604frt2x00mac_sw_scan_startdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xdd326ed9ath9k_hw_btcoex_init_2wiredrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x8ec89d3ddrm_helper_mode_fill_fb_structdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x73a76860skb_queue_headvmlinuxEXPORT_SYMBOL0x4680ee7bskb_prepare_seq_readvmlinuxEXPORT_SYMBOL0x2f160866sk_reset_timervmlinuxEXPORT_SYMBOL0xf9bed234snd_soc_resumevmlinuxEXPORT_SYMBOL_GPL0x2ebd16d4snd_pcm_hw_rule_noresamplevmlinuxEXPORT_SYMBOL0x9e3da6c6v4l2_subdev_querymenuvmlinuxEXPORT_SYMBOL0x72b212ffregulator_bulk_enablevmlinuxEXPORT_SYMBOL_GPL0x85a71f77fuse_conn_putvmlinuxEXPORT_SYMBOL_GPL0xd9339b7eirq_get_irq_datavmlinuxEXPORT_SYMBOL_GPL0x604ef74cem28xx_set_modedrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xb9ac0503mali_set_user_settingdrivers/gpu/mali/mali/maliEXPORT_SYMBOL0x86a37fa5drm_pci_freedrivers/gpu/drm/drmEXPORT_SYMBOL0xf5b4a948crc_itu_tvmlinuxEXPORT_SYMBOL0x5f58f676flex_array_get_ptrvmlinuxEXPORT_SYMBOL0x8cecb684bio_alloc_biosetvmlinuxEXPORT_SYMBOL0xbe4f69b6rt2x00mac_bss_info_changeddrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x9f997d24videobuf_querybufdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x0ae2f7faieee80211_get_hdrlen_from_skbvmlinuxEXPORT_SYMBOL0x65cf3b8eusb_driver_set_configurationvmlinuxEXPORT_SYMBOL_GPL0x473518f3mii_ethtool_ssetvmlinuxEXPORT_SYMBOL0xd1944990mii_ethtool_gsetvmlinuxEXPORT_SYMBOL0x4141eec6class_compat_create_linkvmlinuxEXPORT_SYMBOL_GPL0xb36573d9vfs_cancel_lockvmlinuxEXPORT_SYMBOL_GPL0x4121fd7cpm_qos_remove_requestvmlinuxEXPORT_SYMBOL_GPL0xb602c57enf_ct_l3proto_module_putnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xae059f0etransport_kunmap_data_sgdrivers/target/target_core_modEXPORT_SYMBOL0x7993e7cdgameport_stop_pollingdrivers/input/gameport/gameportEXPORT_SYMBOL0x7adb43f7drm_i2c_encoder_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x39e17c38release_sockvmlinuxEXPORT_SYMBOL0x50e7193a__i2c_first_dynamic_bus_numvmlinuxEXPORT_SYMBOL_GPL0x1e37cf80class_remove_filevmlinuxEXPORT_SYMBOL_GPL0x14703676textsearch_destroyvmlinuxEXPORT_SYMBOL0xebdba48bsnd_pcm_hw_constraint_msbitsvmlinuxEXPORT_SYMBOL0x1cae9856v4l2_device_register_subdev_nodesvmlinuxEXPORT_SYMBOL_GPL0x54b32443unmap_underlying_metadatavmlinuxEXPORT_SYMBOL0x916ac047sync_inodevmlinuxEXPORT_SYMBOL0xb859f38bkreallocvmlinuxEXPORT_SYMBOL0x35e33c1enfs4_acl_write_whofs/nfsd/nfsdEXPORT_SYMBOL0xe5022f95sch56xx_read_virtual_reg12drivers/hwmon/sch56xx-commonEXPORT_SYMBOL0xad95c2bddrm_fb_helper_finidrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xa9df6024snd_card_createvmlinuxEXPORT_SYMBOL0xf96fc096input_register_devicevmlinuxEXPORT_SYMBOL0x31266931con_debug_leavevmlinuxEXPORT_SYMBOL_GPL0x9df69363__invalidate_devicevmlinuxEXPORT_SYMBOL0xd23fa92dseq_put_decimal_ullvmlinuxEXPORT_SYMBOL0x2ba707a8sysctl_tcp_low_latencyvmlinuxEXPORT_SYMBOL0xa45b28e7led_classdev_unregistervmlinuxEXPORT_SYMBOL_GPL0x1163f0a7blk_max_low_pfnvmlinuxEXPORT_SYMBOL0x6ea8dd96blk_queue_free_tagsvmlinuxEXPORT_SYMBOL0x6082dd38elv_unregister_queuevmlinuxEXPORT_SYMBOL0x22def91b__fscache_write_pagevmlinuxEXPORT_SYMBOL0xba56fa22register_sysctl_tablevmlinuxEXPORT_SYMBOL0x67b78eb3seq_hlist_next_rcuvmlinuxEXPORT_SYMBOL0xdca2873dirias_add_string_attribnet/irda/irdaEXPORT_SYMBOL0x8c925c31dev_attr_usbip_debugdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x34be607edrm_idlelock_releasedrivers/gpu/drm/drmEXPORT_SYMBOL0x8817597ftty_flip_buffer_pushvmlinuxEXPORT_SYMBOL0x5397f2d3posix_acl_initvmlinuxEXPORT_SYMBOL0x4aed24adceph_osdc_wait_requestnet/ceph/libcephEXPORT_SYMBOL0x011882f2uart_get_divisorvmlinuxEXPORT_SYMBOL0x6fe3d8cfktime_add_safevmlinuxEXPORT_SYMBOL_GPL0xf9a482f9msleepvmlinuxEXPORT_SYMBOL0x6d408e7aceph_zero_page_vector_rangenet/ceph/libcephEXPORT_SYMBOL0x09290ab3ceph_debugfs_initnet/ceph/libcephEXPORT_SYMBOL0xff2202e3ceph_monc_create_snapidnet/ceph/libcephEXPORT_SYMBOL0x5ae434b5unregister_netdevvmlinuxEXPORT_SYMBOL0xf4d195bcsata_async_notificationvmlinuxEXPORT_SYMBOL_GPL0x2bf02295proc_net_mkdirvmlinuxEXPORT_SYMBOL_GPL0x86c23792__bforgetvmlinuxEXPORT_SYMBOL0x86dbad55xt_register_tablenet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x49dd37f5set_h225_addr_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x86f80466usb_serial_generic_unthrottledrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xb1330913sas_alloc_taskdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xc6de6797nand_lockdrivers/mtd/nand/nandEXPORT_SYMBOL0x007fe2dcrc_map_unregisterdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x2820085exdr_reserve_spacevmlinuxEXPORT_SYMBOL_GPL0x07daf32dinet6_add_protocolvmlinuxEXPORT_SYMBOL0x98f7c41braw_unhash_skvmlinuxEXPORT_SYMBOL_GPL0x7adc87c5sock_no_listenvmlinuxEXPORT_SYMBOL0x1b21b98dsnd_soc_poweroffvmlinuxEXPORT_SYMBOL_GPL0xc9568e48md_unregister_threadvmlinuxEXPORT_SYMBOL0xb0c02667input_mt_destroy_slotsvmlinuxEXPORT_SYMBOL0x1d47d965sw_hcd_urb_enqueuevmlinuxEXPORT_SYMBOL0x77814a1esw_hcd_bus_suspendvmlinuxEXPORT_SYMBOL0x5d9c2546usb_unpoison_anchored_urbsvmlinuxEXPORT_SYMBOL_GPL0xe0ff7a18unregister_pppox_protovmlinuxEXPORT_SYMBOL0xeca8e493scsi_device_lookup_by_targetvmlinuxEXPORT_SYMBOL0x79aa04a2get_random_bytesvmlinuxEXPORT_SYMBOL0xab600421probe_irq_offvmlinuxEXPORT_SYMBOL0xc9948c4cusb_serial_generic_submit_read_urbsdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x89c3cf4cfc_eh_host_resetdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xb8fcd6e4rt2x00mac_sw_scan_completedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x1e844df1ipmi_smi_add_proc_entrydrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xadf4ecccrpcauth_unregistervmlinuxEXPORT_SYMBOL_GPL0x6c6ff0d4snd_ctl_activate_idvmlinuxEXPORT_SYMBOL_GPL0x12216135regcache_sync_regionvmlinuxEXPORT_SYMBOL_GPL0xc2407a76pm_runtime_allowvmlinuxEXPORT_SYMBOL_GPL0x778ee59fdo_unbind_con_drivervmlinuxEXPORT_SYMBOL_GPL0xdaf4dfb3fb_mode_optionvmlinuxEXPORT_SYMBOL_GPL0xd38480a0rb_augment_erase_endvmlinuxEXPORT_SYMBOL0xacf7ea4dblk_peek_requestvmlinuxEXPORT_SYMBOL0xbecf5d14nfnl_acct_putnet/netfilter/nfnetlink_acctEXPORT_SYMBOL_GPL0xc9f82b38ceph_msgr_initnet/ceph/libcephEXPORT_SYMBOL0x14e88b15ceph_create_clientnet/ceph/libcephEXPORT_SYMBOL0xb68f9e7fusb_serial_generic_closedrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x898d0dfedm_exception_store_type_unregisterdrivers/md/dm-snapshotEXPORT_SYMBOL0xf73d6044drm_mode_connector_attach_encoderdrivers/gpu/drm/drmEXPORT_SYMBOL0x57e37403sock_no_pollvmlinuxEXPORT_SYMBOL0xee2a6c8bsdio_unregister_drivervmlinuxEXPORT_SYMBOL_GPL0xc5e952cbinput_free_polled_devicevmlinuxEXPORT_SYMBOL0x7b801666regulator_getvmlinuxEXPORT_SYMBOL_GPL0xf42a2f5bblk_rq_prep_clonevmlinuxEXPORT_SYMBOL_GPL0x9c9d61c2crypto_alloc_shashvmlinuxEXPORT_SYMBOL_GPL0x24b8710ecrypto_alloc_ahashvmlinuxEXPORT_SYMBOL_GPL0x2eba526bunregister_ip_vs_schedulernet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0xbe589cacdrm_mode_detachmode_crtcdrivers/gpu/drm/drmEXPORT_SYMBOL0x21508ec1vlan_ioctl_setvmlinuxEXPORT_SYMBOL0x4d9b6d35snd_pcm_format_sizevmlinuxEXPORT_SYMBOL0x31cf6989v4l2_ctrl_activatevmlinuxEXPORT_SYMBOL0x241e5c45sw_usb_enable_hcdvmlinuxEXPORT_SYMBOL0xf61bfb20USBC_EnableVbusChangevmlinuxEXPORT_SYMBOL0xc11d8093iov_shortenvmlinuxEXPORT_SYMBOL0x6a037cf1mempool_kfreevmlinuxEXPORT_SYMBOL0x78dd2a6ftask_free_registervmlinuxEXPORT_SYMBOL0xd0a252e3gpio_get_one_pin_statusvmlinuxEXPORT_SYMBOL0xf4b48a10thread_notify_headvmlinuxEXPORT_SYMBOL_GPL0xfbe4e5ccirttp_data_requestnet/irda/irdaEXPORT_SYMBOL0x0b28a155irlmp_data_requestnet/irda/irdaEXPORT_SYMBOL0xd38b8429rt2800_config_erpdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xb23f5641scsi_scan_targetvmlinuxEXPORT_SYMBOL0x17ef033csubsys_dev_iter_initvmlinuxEXPORT_SYMBOL_GPL0x41c8eaf7subsys_dev_iter_exitvmlinuxEXPORT_SYMBOL_GPL0xf0ef15b4list_sortvmlinuxEXPORT_SYMBOL0x5fba0be6register_quota_formatvmlinuxEXPORT_SYMBOL0x1c59f51bremove_arg_zerovmlinuxEXPORT_SYMBOL0x7b5c8440vm_munmapvmlinuxEXPORT_SYMBOL0xa6e93c3cremap_pfn_rangevmlinuxEXPORT_SYMBOL0x46608fa0getnstimeofdayvmlinuxEXPORT_SYMBOL0xe7e810f8spk_serial_indrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xd3d02b32ath9k_hw_rxprocdescdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x3f76fbe6vb2_wait_for_all_buffersdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x75b7549ddib8000_set_gpiodrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xc02fe573flexcop_pid_feed_controldrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0xdb5df412tuner_MT2063_ClearPowerMaskBitsdrivers/media/common/tuners/mt2063EXPORT_SYMBOL_GPL0x089c8b71phy_register_fixupvmlinuxEXPORT_SYMBOL0x19e57681device_bind_drivervmlinuxEXPORT_SYMBOL_GPL0x7e66badbdevice_store_ulongvmlinuxEXPORT_SYMBOL_GPL0x0714d8e9skcipher_geniv_exitvmlinuxEXPORT_SYMBOL_GPL0x6f346fc1file_update_timevmlinuxEXPORT_SYMBOL0x7ef84244bdi_unregistervmlinuxEXPORT_SYMBOL0x9cf2fe81nand_correct_datadrivers/mtd/nand/nand_eccEXPORT_SYMBOL0x1c320dc9xc5000_attachdrivers/media/common/tuners/xc5000EXPORT_SYMBOL0x4495ad8fxc4000_attachdrivers/media/common/tuners/xc4000EXPORT_SYMBOL0xff289aa1inet6_csk_search_reqvmlinuxEXPORT_SYMBOL_GPL0xbe736cd4dev_mc_initvmlinuxEXPORT_SYMBOL0x40999b3cdev_uc_initvmlinuxEXPORT_SYMBOL0x865029ac__hw_addr_syncvmlinuxEXPORT_SYMBOL0x2eee0b04snd_soc_bytes_infovmlinuxEXPORT_SYMBOL_GPL0x0e496a88scsi_setup_blk_pc_cmndvmlinuxEXPORT_SYMBOL0x11a13e31_kstrtolvmlinuxEXPORT_SYMBOL0xfaedfab8kobject_uevent_envvmlinuxEXPORT_SYMBOL_GPL0xc5f55e19mb_cache_entry_allocvmlinuxEXPORT_SYMBOL0xc02d666erelay_file_operationsvmlinuxEXPORT_SYMBOL_GPL0x7d02520f_raw_read_unlockvmlinuxEXPORT_SYMBOL0x0fb0e29finit_timer_keyvmlinuxEXPORT_SYMBOL0x2b5db373fc_lport_notifier_headdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x457bd0f3rpc_wake_up_statusvmlinuxEXPORT_SYMBOL_GPL0xf39bf4d9put_cmsgvmlinuxEXPORT_SYMBOL0x6c4b7800skb_free_datagramvmlinuxEXPORT_SYMBOL0xec31898dsound_classvmlinuxEXPORT_SYMBOL0x2516e0bdfilp_closevmlinuxEXPORT_SYMBOL0x69aca6e8truncate_setsizevmlinuxEXPORT_SYMBOL0x4ae9cef5wait_for_completion_interruptiblevmlinuxEXPORT_SYMBOL0x44bcfa6dsystem_nrt_freezable_wqvmlinuxEXPORT_SYMBOL_GPL0x89ab3b10svcauth_gss_flavorvmlinuxEXPORT_SYMBOL_GPL0x8d1a827esvcauth_gss_register_pseudoflavorvmlinuxEXPORT_SYMBOL_GPL0x67b27ec1tty_std_termiosvmlinuxEXPORT_SYMBOL0x0c3fd62dgeneric_readlinkvmlinuxEXPORT_SYMBOL0x2dbb0a05usbnet_nway_resetdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x1fd61deeether_setupvmlinuxEXPORT_SYMBOL0x048cc548usb_deregister_device_drivervmlinuxEXPORT_SYMBOL_GPL0x7c9e7c6fdevice_create_filevmlinuxEXPORT_SYMBOL_GPL0x2e1e50f3__break_leasevmlinuxEXPORT_SYMBOL0x224a0d39get_task_commvmlinuxEXPORT_SYMBOL_GPL0xf3438d87__get_vm_areavmlinuxEXPORT_SYMBOL_GPL0x6b7589f4param_set_boolvmlinuxEXPORT_SYMBOL0xbfc407b4param_ops_bintvmlinuxEXPORT_SYMBOL0xadb5559dparam_ops_bytevmlinuxEXPORT_SYMBOL0x5b8dde34task_free_unregistervmlinuxEXPORT_SYMBOL0x3d5f571dtransport_generic_map_mem_to_cmddrivers/target/target_core_modEXPORT_SYMBOL0x0fccafb1drm_global_item_unrefdrivers/gpu/drm/drmEXPORT_SYMBOL0x6e6c7d18async_tx_quiescecrypto/async_tx/async_txEXPORT_SYMBOL_GPL0x31e7ca1cxprt_freevmlinuxEXPORT_SYMBOL_GPL0x0843de3esnd_soc_dapm_put_volswvmlinuxEXPORT_SYMBOL_GPL0xb8ce95d4snd_soc_dapm_get_volswvmlinuxEXPORT_SYMBOL_GPL0xbae34c27scsi_nl_remove_transportvmlinuxEXPORT_SYMBOL_GPL0xc5f46566rb_augment_insertvmlinuxEXPORT_SYMBOL0xda44073dwould_dumpvmlinuxEXPORT_SYMBOL0x3085f4d7truncate_inode_pages_rangevmlinuxEXPORT_SYMBOL0xd7f95d04force_sigvmlinuxEXPORT_SYMBOL0x16756dc0snd_usbmidi_input_startsound/usb/snd-usbmidi-libEXPORT_SYMBOL0x1e0cec89fbtft_probe_commondrivers/video/fbtft/fbtftEXPORT_SYMBOL0xa04b5e92parport_ieee1284_read_nibbledrivers/parport/parportEXPORT_SYMBOL0x495426eev4l2_ctrl_get_namevmlinuxEXPORT_SYMBOL0x05240ee7percpu_counter_batchvmlinuxEXPORT_SYMBOL0x7754ea07d_pathvmlinuxEXPORT_SYMBOL0x915e6dafscsi_is_fc_vportdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x65ab589ert2x00lib_dmadonedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x8c14d941vfs_fstatatvmlinuxEXPORT_SYMBOL0x1cb31813hci_free_devnet/bluetooth/bluetoothEXPORT_SYMBOL0x416a809ebrcmf_sdio_probedrivers/net/wireless/brcm80211/brcmfmac/brcmfmacEXPORT_SYMBOL0x7366ce9cusbnet_resumedrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x01d94ac9sdev_evt_sendvmlinuxEXPORT_SYMBOL_GPL0xe3396174bio_integrity_tag_sizevmlinuxEXPORT_SYMBOL0x87bc39afigrabvmlinuxEXPORT_SYMBOL0x10940306ceph_pagelist_set_cursornet/ceph/libcephEXPORT_SYMBOL0x1f0a7fb9ssb_device_disabledrivers/ssb/ssbEXPORT_SYMBOL0x2217b5a9mwifiex_handle_rx_packetdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x859da2e0rtnl_notifyvmlinuxEXPORT_SYMBOL0x3e5ad746__rtnl_link_registervmlinuxEXPORT_SYMBOL_GPL0x53fbe721sock_recvmsgvmlinuxEXPORT_SYMBOL0x754c78fasnd_soc_set_runtime_hwparamsvmlinuxEXPORT_SYMBOL_GPL0x3befeb98snd_pcm_open_substreamvmlinuxEXPORT_SYMBOL0xcb0288ealedtrig_cpuvmlinuxEXPORT_SYMBOL0x6dd31a74mmc_can_secure_erase_trimvmlinuxEXPORT_SYMBOL0x2d7d86b6usb_hcd_unmap_urb_for_dmavmlinuxEXPORT_SYMBOL_GPL0x211fe266blk_end_request_errvmlinuxEXPORT_SYMBOL_GPL0x3e9feedablk_end_request_allvmlinuxEXPORT_SYMBOL0x4c69318ablk_queue_biovmlinuxEXPORT_SYMBOL_GPL0xd16712f3crypto_check_attr_typevmlinuxEXPORT_SYMBOL_GPL0x16305289warn_slowpath_nullvmlinuxEXPORT_SYMBOL0xe529d0eesnd_ac97_updatesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x258ecfa7nf_ct_l3protosnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xba82f4e7nand_calculate_eccdrivers/mtd/nand/nand_eccEXPORT_SYMBOL0x010c2147linkwatch_fire_eventvmlinuxEXPORT_SYMBOL0x246bcdf6snd_device_freevmlinuxEXPORT_SYMBOL0xd37e13b4regulator_set_optimum_modevmlinuxEXPORT_SYMBOL_GPL0x8d522714__rcu_read_lockvmlinuxEXPORT_SYMBOL_GPL0x9d298554ndisc_build_skbvmlinuxEXPORT_SYMBOL0x1598dc9dunregister_netevent_notifiervmlinuxEXPORT_SYMBOL_GPL0xa55efb36snd_soc_debugfs_rootvmlinuxEXPORT_SYMBOL_GPL0xf4832461input_mt_report_slot_statevmlinuxEXPORT_SYMBOL0xf4217f2bsw_hcd_root_disconnectvmlinuxEXPORT_SYMBOL0x05d1c567scsi_init_iovmlinuxEXPORT_SYMBOL0x0b8cf426rpc_queue_upcallvmlinuxEXPORT_SYMBOL_GPL0x098769achiddev_hid_eventvmlinuxEXPORT_SYMBOL_GPL0x1baaf9f2mddev_congestedvmlinuxEXPORT_SYMBOL0x91629553v4l2_i2c_subdev_addrvmlinuxEXPORT_SYMBOL_GPL0xa49bcc43v4l2_i2c_subdev_initvmlinuxEXPORT_SYMBOL_GPL0xd609e40dUSBC_Host_DisablePingvmlinuxEXPORT_SYMBOL0x9c6e8918_raw_write_unlockvmlinuxEXPORT_SYMBOL0xa40bd703ceph_pagelist_free_reservenet/ceph/libcephEXPORT_SYMBOL0xe2d643fefcoe_ctlr_link_updrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0xf9c91419i2400m_dev_bootstrapdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xd9d6139edrm_av_sync_delaydrivers/gpu/drm/drmEXPORT_SYMBOL0x53c92b77fib_default_rule_prefvmlinuxEXPORT_SYMBOL0x544d91acsnd_pcm_period_elapsedvmlinuxEXPORT_SYMBOL0x8d7c445ddebugfs_create_x8vmlinuxEXPORT_SYMBOL_GPL0x3154ad65kmap_to_pagevmlinuxEXPORT_SYMBOL0xd4d8fac2irq_domain_xlate_twocellvmlinuxEXPORT_SYMBOL_GPL0x8f531502irq_domain_xlate_onecellvmlinuxEXPORT_SYMBOL_GPL0x1b51a4c4uart_write_wakeupvmlinuxEXPORT_SYMBOL0xa7c97e56skb_appendvmlinuxEXPORT_SYMBOL0x88f58f4asnd_soc_readvmlinuxEXPORT_SYMBOL_GPL0x1139b1a8read_cache_page_gfpvmlinuxEXPORT_SYMBOL0x225e909eschedule_delayed_work_onvmlinuxEXPORT_SYMBOL0xf322193discsi_tcp_segment_unmapdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x9727eb04drm_fb_helper_debug_leavedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x706f784csk_stream_errorvmlinuxEXPORT_SYMBOL0x7faf98e0usb_stor_CB_resetvmlinuxEXPORT_SYMBOL_GPL0xd05376aedevm_request_and_ioremapvmlinuxEXPORT_SYMBOL0x6332cc1aaudit_log_startvmlinuxEXPORT_SYMBOL0x6d68910bsparse_keymap_freedrivers/input/sparse-keymapEXPORT_SYMBOL0x49a4fcbdadxl34x_removedrivers/input/misc/adxl34xEXPORT_SYMBOL_GPL0x05fda372netdev_critvmlinuxEXPORT_SYMBOL0x97cce241v4l2_ctrl_clustervmlinuxEXPORT_SYMBOL0xb94e1dbdsysfs_create_filesvmlinuxEXPORT_SYMBOL_GPL0x689c41bbsgetvmlinuxEXPORT_SYMBOL0x5f754e5amemsetvmlinuxEXPORT_SYMBOL0x95e58db4hci_send_sconet/bluetooth/bluetoothEXPORT_SYMBOL0x03f9d3afiscsi_tcp_dgst_headerdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x2a105fcfmtd_kmalloc_up_todrivers/mtd/mtdEXPORT_SYMBOL_GPL0x9c2151adtcp_vegas_pkts_ackedvmlinuxEXPORT_SYMBOL_GPL0x2541a979snd_soc_calc_frame_sizevmlinuxEXPORT_SYMBOL_GPL0xcfe75810v4l2_event_pendingvmlinuxEXPORT_SYMBOL_GPL0xac9f565ccdrom_media_changedvmlinuxEXPORT_SYMBOL0xcf5c4af9ahci_start_enginevmlinuxEXPORT_SYMBOL_GPL0xdc3fcbc9__sw_hweight8vmlinuxEXPORT_SYMBOL0x02ee26c1free_pages_exactvmlinuxEXPORT_SYMBOL0x280513actasklet_hrtimer_initvmlinuxEXPORT_SYMBOL_GPL0xe70ce9d9dib0090_update_rframp_7090drivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x1b0e890a__fscache_uncache_all_inode_pagesvmlinuxEXPORT_SYMBOL0x064db9a5mark_mounts_for_expiryvmlinuxEXPORT_SYMBOL_GPL0xacfd81f6work_cpuvmlinuxEXPORT_SYMBOL_GPL0x4550ba8aregister_cpu_notifiervmlinuxEXPORT_SYMBOL0x2f369452usb_wwan_write_roomdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x361baedbcxd2820r_attachdrivers/media/dvb/frontends/cxd2820rEXPORT_SYMBOL0x268bc6aesnd_soc_dapm_freevmlinuxEXPORT_SYMBOL_GPL0x63e36f5dUSBC_ConfigFifovmlinuxEXPORT_SYMBOL0x6d340f64tty_termios_input_baud_ratevmlinuxEXPORT_SYMBOL0x3e5aec0cd_set_d_opvmlinuxEXPORT_SYMBOL0x0d3f57a2_find_next_bit_levmlinuxEXPORT_SYMBOL0xe00b1f4cirias_add_integer_attribnet/irda/irdaEXPORT_SYMBOL0xce1e1e89tpm_show_temp_deactivateddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x2e47f677xfrm_aalg_get_byidxvmlinuxEXPORT_SYMBOL_GPL0xd6ed6dfbsock_update_netprioidxvmlinuxEXPORT_SYMBOL_GPL0xe664d4f8ps2_drainvmlinuxEXPORT_SYMBOL0xe21e2a3eunregister_cdromvmlinuxEXPORT_SYMBOL0x34124d0bspi_attach_transportvmlinuxEXPORT_SYMBOL0xc57aa5d2rt2x00usb_register_read_asyncdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xf66ab4b9udp_tablevmlinuxEXPORT_SYMBOL0x863f520cmmc_erase_group_alignedvmlinuxEXPORT_SYMBOL0x910b4639idr_get_new_abovevmlinuxEXPORT_SYMBOL0x32a97bc1ida_get_new_abovevmlinuxEXPORT_SYMBOL0x0a7419f2ieee80211_disable_dyn_psnet/mac80211/mac80211EXPORT_SYMBOL0xab02a43dusbip_recv_isodrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xe65c3b6d__lbtf_cmddrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xeff6f38fath9k_hw_reset_tsfdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x7316a12dpower_supply_am_i_suppliedvmlinuxEXPORT_SYMBOL_GPL0xa5228b24v4l2_int_device_try_attach_allvmlinuxEXPORT_SYMBOL_GPL0xaf3dd7dcscsi_logging_levelvmlinuxEXPORT_SYMBOL0x2bd78bd8regcache_mark_dirtyvmlinuxEXPORT_SYMBOL_GPL0x42acb820transport_configure_devicevmlinuxEXPORT_SYMBOL_GPL0x609fb3e5nla_putvmlinuxEXPORT_SYMBOL0x31a34c5crevalidate_diskvmlinuxEXPORT_SYMBOL0x72e50086vm_statvmlinuxEXPORT_SYMBOL0xd5b1376dregister_shrinkervmlinuxEXPORT_SYMBOL0xf23fcb99__kfifo_invmlinuxEXPORT_SYMBOL0x824825ffiio_device_registerdrivers/staging/iio/industrialioEXPORT_SYMBOL0xe3623fdafcoe_get_wwndrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xfc606d71ipmi_register_smidrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x8a9c7874register_sound_dspvmlinuxEXPORT_SYMBOL0x624a6406hwrng_registervmlinuxEXPORT_SYMBOL_GPL0x00c69073misc_registervmlinuxEXPORT_SYMBOL0x8113f25ablock_invalidatepagevmlinuxEXPORT_SYMBOL0x24838651may_umount_treevmlinuxEXPORT_SYMBOL0x7a944007rcu_idle_entervmlinuxEXPORT_SYMBOL_GPL0x58589892__css_getvmlinuxEXPORT_SYMBOL_GPL0x6dd818aarxrpc_kernel_free_skbnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x636b12c8nf_nat_need_grenet/ipv4/netfilter/nf_nat_proto_greEXPORT_SYMBOL_GPL0x0ef49812ath9k_hw_getrxfilterdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x79119ae7ath9k_hw_setrxfilterdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xf6c16c2ddvb_usb_device_initdrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0x01208424udp_lib_get_portvmlinuxEXPORT_SYMBOL0x7bc9748askb_defer_rx_timestampvmlinuxEXPORT_SYMBOL_GPL0x2649361fdev_attr_unload_headsvmlinuxEXPORT_SYMBOL_GPL0x3e05b59ctty_ldisc_refvmlinuxEXPORT_SYMBOL_GPL0xedb3dc7adevm_ioport_mapvmlinuxEXPORT_SYMBOL0x17ce645dlocks_end_gracevmlinuxEXPORT_SYMBOL_GPL0x42b78b11lc_resetlib/lru_cacheEXPORT_SYMBOL0x748e3d4dfbtft_unregister_framebufferdrivers/video/fbtft/fbtftEXPORT_SYMBOL0xc4fb1fd4i2400m_rxdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf112c669i2400m_txdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf843c0d8rpc_put_sb_netvmlinuxEXPORT_SYMBOL_GPL0x0562c742tcp_md5_do_addvmlinuxEXPORT_SYMBOL0xdd680b00rtnl_af_unregistervmlinuxEXPORT_SYMBOL_GPL0xbfee3ad5loop_unregister_transfervmlinuxEXPORT_SYMBOL0x84b30652class_dev_iter_exitvmlinuxEXPORT_SYMBOL_GPL0x6e1863beblk_integrity_unregistervmlinuxEXPORT_SYMBOL0xb179dff8iget_failedvmlinuxEXPORT_SYMBOL0xc3880471xdr_decode_netobjvmlinuxEXPORT_SYMBOL_GPL0x25c677c4mac_ptonvmlinuxEXPORT_SYMBOL0xec4ccb0cmmc_cache_ctrlvmlinuxEXPORT_SYMBOL0xb1d063e5input_register_polled_devicevmlinuxEXPORT_SYMBOL0xe4679d78USBC_Host_PeripheralTypevmlinuxEXPORT_SYMBOL0x1836528csata_set_spdvmlinuxEXPORT_SYMBOL_GPL0x6ee13afb__fscache_acquire_cookievmlinuxEXPORT_SYMBOL0x80cd48aafilemap_fdatawait_rangevmlinuxEXPORT_SYMBOL0x5dccc897ssb_pmu_set_ldo_parefdrivers/ssb/ssbEXPORT_SYMBOL0x4b25fdb6flexcop_device_initializedrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0xc666748bskb_complete_tx_timestampvmlinuxEXPORT_SYMBOL_GPL0x1c8d58bddw_spi_resume_hostvmlinuxEXPORT_SYMBOL_GPL0x7b1d9b83inode_sub_bytesvmlinuxEXPORT_SYMBOL0x6dae79b8inode_set_bytesvmlinuxEXPORT_SYMBOL0xbe468d20ceph_alloc_page_vectornet/ceph/libcephEXPORT_SYMBOL0xdd3e2f41usb_serial_generic_writedrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x62f02f03scsi_tgt_it_nexus_destroydrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x5b280949pps_register_sourcedrivers/pps/pps_coreEXPORT_SYMBOL0xc66d9519ar9003_paprd_is_donedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa07acfe7ar9003_get_pll_sqsum_dvcdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x0ece67d1svc_unreg_xprt_classvmlinuxEXPORT_SYMBOL_GPL0xa39377d4arp_xmitvmlinuxEXPORT_SYMBOL0x5857f475__dev_getfirstbyhwtypevmlinuxEXPORT_SYMBOL0x438bbe37__dev_get_by_indexvmlinuxEXPORT_SYMBOL0xf67300b5v4l2_ctrl_new_stdvmlinuxEXPORT_SYMBOL0x511a23e7mdiobus_registervmlinuxEXPORT_SYMBOL0x66a67dabflex_array_shrinkvmlinuxEXPORT_SYMBOL0xa882d544_raw_read_unlock_irqrestorevmlinuxEXPORT_SYMBOL0xafb8a407ceph_msgr_flushnet/ceph/libcephEXPORT_SYMBOL0x26aad57bfc_eh_device_resetdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xedcf6be4qword_addvmlinuxEXPORT_SYMBOL_GPL0x42138cbf__inet6_lookup_establishedvmlinuxEXPORT_SYMBOL0xc2c149beskb_recyclevmlinuxEXPORT_SYMBOL0x3fdf69cesnd_timer_interruptvmlinuxEXPORT_SYMBOL0x5d3ca1bdclk_getvmlinuxEXPORT_SYMBOL0xc954e52fsdio_claim_hostvmlinuxEXPORT_SYMBOL_GPL0xa401e87eppp_register_net_channelvmlinuxEXPORT_SYMBOL0xd1178024__nla_put_nohdrvmlinuxEXPORT_SYMBOL0x12c40b9bcrypto_unregister_instancevmlinuxEXPORT_SYMBOL_GPL0xc6528954bdi_initvmlinuxEXPORT_SYMBOL0x475e158asynth_request_regiondrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x1390828dusbnet_probedrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x40973662sysctl_udp_memvmlinuxEXPORT_SYMBOL0x17df17bcsysctl_tcp_ecnvmlinuxEXPORT_SYMBOL0x6984b094md_register_threadvmlinuxEXPORT_SYMBOL0xce9b7dedrxrpc_unregister_securitynet/rxrpc/af-rxrpcEXPORT_SYMBOL_GPL0xe09462b9ieee80211_stop_tx_ba_sessionnet/mac80211/mac80211EXPORT_SYMBOL0x7be25166drm_select_elddrivers/gpu/drm/drmEXPORT_SYMBOL0x72f4d528inet_csk_acceptvmlinuxEXPORT_SYMBOL0xf0e94ef4inet_hash_connectvmlinuxEXPORT_SYMBOL_GPL0x0614dd5av4l2_video_std_frame_periodvmlinuxEXPORT_SYMBOL0xfe7caf4dUSBC_Host_StopInTokenvmlinuxEXPORT_SYMBOL0xf3b1c13dgeneric_mii_ioctlvmlinuxEXPORT_SYMBOL0x0334da4escsi_command_size_tblvmlinuxEXPORT_SYMBOL0xb58dcfa2synchronize_sched_expeditedvmlinuxEXPORT_SYMBOL_GPL0x6f7356dabt_accept_dequeuenet/bluetooth/bluetoothEXPORT_SYMBOL0x2372adeefc_rport_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x2d471f28fc_lport_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xcd036fc3generic_rndis_binddrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x17e510afxprt_wake_pending_tasksvmlinuxEXPORT_SYMBOL_GPL0x0a3f080ausbhid_wait_iovmlinuxEXPORT_SYMBOL_GPL0x0bad5358bitmap_endwritevmlinuxEXPORT_SYMBOL0x923c8c6eusb_bulk_msgvmlinuxEXPORT_SYMBOL_GPL0x882d5f27oslec_adaption_modedrivers/staging/echo/echoEXPORT_SYMBOL_GPL0x8d39ef02videobuf_mmap_mapperdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x8250f447zl10039_attachdrivers/media/dvb/frontends/zl10039EXPORT_SYMBOL0x17fdc43cxfrm_state_delete_tunnelvmlinuxEXPORT_SYMBOL0xf619adc9platform_device_add_resourcesvmlinuxEXPORT_SYMBOL_GPL0x07e2acef__ieee80211_get_radio_led_namenet/mac80211/mac80211EXPORT_SYMBOL0xf1abb759usb_wwan_closedrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x2a6e06f7sas_expander_allocdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x4e82587aath9k_hw_getnfdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x3ab6c8eein6_dev_finish_destroyvmlinuxEXPORT_SYMBOL0xac577abdtcp_gro_receivevmlinuxEXPORT_SYMBOL0x41bc14e8eth_headervmlinuxEXPORT_SYMBOL0x4f9a3ed9sw_usb_enable_hcd0vmlinuxEXPORT_SYMBOL0x8dcf21b6scsi_rescan_devicevmlinuxEXPORT_SYMBOL0x5bfc03c3unregister_keyboard_notifiervmlinuxEXPORT_SYMBOL_GPL0x9455216eunregister_framebuffervmlinuxEXPORT_SYMBOL0x8f48679arb_prevvmlinuxEXPORT_SYMBOL0xbb52237euser_matchvmlinuxEXPORT_SYMBOL_GPL0x1cc05843request_key_async_with_auxdatavmlinuxEXPORT_SYMBOL0xb8d41f67jbd2_journal_init_devvmlinuxEXPORT_SYMBOL0x15b30543fscache_add_cachevmlinuxEXPORT_SYMBOL0x23c0b199bd_unlink_disk_holdervmlinuxEXPORT_SYMBOL_GPL0xb406a288down_killablevmlinuxEXPORT_SYMBOL0x0182ba58rt2x00mac_tx_frames_pendingdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xb6e0dd44soc_camera_unlockdrivers/media/video/soc_cameraEXPORT_SYMBOL0x77da7fe2em28xx_alloc_isocdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0x7d159fb9napi_gro_receivevmlinuxEXPORT_SYMBOL0xdfa042f8debugfs_print_regs32vmlinuxEXPORT_SYMBOL_GPL0xc09122d1rt2x00mac_get_statsdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x1486389fi2400m_setupdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf396cd21tcp_parse_md5sig_optionvmlinuxEXPORT_SYMBOL0x28005958nf_unregister_queue_handlervmlinuxEXPORT_SYMBOL0xb429c68bsnd_soc_dapm_ignore_suspendvmlinuxEXPORT_SYMBOL_GPL0x24eb7e32leds_listvmlinuxEXPORT_SYMBOL_GPL0xc77354ebcdrom_check_eventsvmlinuxEXPORT_SYMBOL0xeae3dfd6__const_udelayvmlinuxEXPORT_SYMBOL0x63ef6844snd_ac97_resumesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x4c971becipmi_smi_msg_receiveddrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xeae9945btcp_v4_tw_get_peervmlinuxEXPORT_SYMBOL0x3f580051dev_get_by_flags_rcuvmlinuxEXPORT_SYMBOL0x7647726chandle_sysrqvmlinuxEXPORT_SYMBOL0x996bdb64_kstrtoulvmlinuxEXPORT_SYMBOL0x5a2c8040__block_write_beginvmlinuxEXPORT_SYMBOL0x1cc6719aregister_reboot_notifiervmlinuxEXPORT_SYMBOL0x188a3dfbtimespec_truncvmlinuxEXPORT_SYMBOL0x515efe33ieee80211_queue_worknet/mac80211/mac80211EXPORT_SYMBOL0xf4310d8ascsi_tgt_queue_commanddrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x9745d638drm_errdrivers/gpu/drm/drmEXPORT_SYMBOL0x90fb4721tpm_show_activedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x0e1521c6serpent_setkeycrypto/serpent_genericEXPORT_SYMBOL_GPL0x7cdf8029tcp_sockets_allocatedvmlinuxEXPORT_SYMBOL0xf18c6b90snd_soc_dapm_weak_routesvmlinuxEXPORT_SYMBOL_GPL0x19e1f85av4l2_s_ctrlvmlinuxEXPORT_SYMBOL0xf5091407inode_owner_or_capablevmlinuxEXPORT_SYMBOL0x883a27f3generic_pipe_buf_confirmvmlinuxEXPORT_SYMBOL0x4238f595get_super_thawedvmlinuxEXPORT_SYMBOL0x7832c271l2tp_tunnel_findnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0xca894d1cp54_free_skbdrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x219b351dusbnet_tx_timeoutdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x5b88faf6cx2341x_ext_ctrlsdrivers/media/video/cx2341xEXPORT_SYMBOL0xac8d6c59USBC_Host_QueryPowerStatusvmlinuxEXPORT_SYMBOL0x05598684scsi_device_quiescevmlinuxEXPORT_SYMBOL0xffa4c4eccgroup_lockvmlinuxEXPORT_SYMBOL_GPL0x87929288snd_soc_jack_add_zonesvmlinuxEXPORT_SYMBOL_GPL0x84507a65snd_pcm_hw_param_firstvmlinuxEXPORT_SYMBOL0x2628c8f4USBC_Host_SetFunctionAddressvmlinuxEXPORT_SYMBOL0xf184d189kernel_power_offvmlinuxEXPORT_SYMBOL_GPL0x2a8a9842ip6t_unregister_tablenet/ipv6/netfilter/ip6_tablesEXPORT_SYMBOL0x85f05760sas_read_port_mode_pagedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xab011df0sas_unregister_hadrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xdeb831e0svc_create_pooledvmlinuxEXPORT_SYMBOL_GPL0x243abe7agenl_register_opsvmlinuxEXPORT_SYMBOL0x9e7bdc5bsnd_pcm_newvmlinuxEXPORT_SYMBOL0x5709fc7a__ata_ehi_push_descvmlinuxEXPORT_SYMBOL_GPL0xb9d91776con_copy_unimapvmlinuxEXPORT_SYMBOL0x843ccf74tty_ldisc_ref_waitvmlinuxEXPORT_SYMBOL_GPL0x3da52e7dblk_rq_count_integrity_sgvmlinuxEXPORT_SYMBOL0xf98d2220debugfs_create_u64vmlinuxEXPORT_SYMBOL_GPL0x396707c4qtree_write_dquotvmlinuxEXPORT_SYMBOL0x7cd2d4cedquot_quota_on_mountvmlinuxEXPORT_SYMBOL0xf6a9bb8eblock_commit_writevmlinuxEXPORT_SYMBOL0xbac5c6cdwm_hubs_set_bias_levelsound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0xa8a3c145ircomm_control_requestnet/irda/ircomm/ircommEXPORT_SYMBOL0xdab57f19if_usb_prog_firmwaredrivers/net/wireless/libertas_tf/libertas_tf_usbEXPORT_SYMBOL_GPL0xd51258f0ath9k_hw_computetxtimedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xbeb44051__netdev_alloc_skbvmlinuxEXPORT_SYMBOL0xc5ea35e5_snd_pcm_lib_alloc_vmalloc_buffervmlinuxEXPORT_SYMBOL0xfec3c2f2bcd2binvmlinuxEXPORT_SYMBOL0xf8b09229journal_get_undo_accessvmlinuxEXPORT_SYMBOL0xdd67de28perf_event_create_kernel_countervmlinuxEXPORT_SYMBOL_GPL0x0bfa3a19rcu_idle_exitvmlinuxEXPORT_SYMBOL_GPL0x90ff6c9fnf_ct_invert_tupleprnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x4a36ac24ath9k_hw_init_btcoex_hwdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x1c3e3436snd_soc_dapm_syncvmlinuxEXPORT_SYMBOL_GPL0x983e484dv4l2_s_ext_ctrlsvmlinuxEXPORT_SYMBOL0x8e08335ftty_kref_putvmlinuxEXPORT_SYMBOL0x56310925regulator_mode_to_statusvmlinuxEXPORT_SYMBOL_GPL0x511323d6fb_set_suspendvmlinuxEXPORT_SYMBOL0xba4123aclocks_delete_blockvmlinuxEXPORT_SYMBOL0x6eb19492dputvmlinuxEXPORT_SYMBOL0xb1b009ebtry_module_getvmlinuxEXPORT_SYMBOL0xc337527cis_container_initvmlinuxEXPORT_SYMBOL0x771864bbtransport_add_device_to_core_hbadrivers/target/target_core_modEXPORT_SYMBOL0x8347b1dfar9003_paprd_create_curvedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x8a490c90rfkill_set_sw_statevmlinuxEXPORT_SYMBOL0x85280097rpc_proc_unregistervmlinuxEXPORT_SYMBOL_GPL0xd227827frpc_delayvmlinuxEXPORT_SYMBOL_GPL0x98001cd1snd_soc_bulk_write_rawvmlinuxEXPORT_SYMBOL_GPL0x20c7921dfill_inquiry_responsevmlinuxEXPORT_SYMBOL_GPL0xf71110e1usb_match_one_idvmlinuxEXPORT_SYMBOL_GPL0xc428068dsata_deb_timing_longvmlinuxEXPORT_SYMBOL_GPL0xb0e40c34screen_glyphvmlinuxEXPORT_SYMBOL_GPL0x1fda6d3esrcu_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0xf7802486__aeabi_uidivmodvmlinuxEXPORT_SYMBOL0x96169ff7ath9k_hw_gpio_getdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x69bfeb4cdrm_vblank_pre_modesetdrivers/gpu/drm/drmEXPORT_SYMBOL0xd1668144vlan_vids_del_by_devvmlinuxEXPORT_SYMBOL0x7572f54esk_freevmlinuxEXPORT_SYMBOL0xef8cf7a7snd_soc_free_ac97_codecvmlinuxEXPORT_SYMBOL_GPL0x6ef4c735scsi_is_sdev_devicevmlinuxEXPORT_SYMBOL0x55e13e31ieee80211_stop_queuenet/mac80211/mac80211EXPORT_SYMBOL0x4f0d2c8eparport_set_timeoutdrivers/parport/parportEXPORT_SYMBOL0x7ef39823ieee80211_hdrlenvmlinuxEXPORT_SYMBOL0xf3251e7bv4l2_norm_to_namevmlinuxEXPORT_SYMBOL0x3905dacdkobject_initvmlinuxEXPORT_SYMBOL0xb2e764e8suspend_valid_only_memvmlinuxEXPORT_SYMBOL_GPL0xa5bb572esleep_onvmlinuxEXPORT_SYMBOL0x42160169flush_workqueuevmlinuxEXPORT_SYMBOL_GPL0x06a3ee58irias_new_integer_valuenet/irda/irdaEXPORT_SYMBOL0x10184382parport_readdrivers/parport/parportEXPORT_SYMBOL0x5616d799smscore_register_devicedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xecb56c86ping_closevmlinuxEXPORT_SYMBOL_GPL0x661d66d6snd_soc_info_enum_extvmlinuxEXPORT_SYMBOL_GPL0x70c29b3cata_link_onlinevmlinuxEXPORT_SYMBOL_GPL0xa0f85941key_type_uservmlinuxEXPORT_SYMBOL_GPL0x01c70393bio_flush_dcache_pagesvmlinuxEXPORT_SYMBOL0x4544063dsimple_lookupvmlinuxEXPORT_SYMBOL0xa951914ckey_type_rxrpcnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x9c76cfd4drm_idlelock_takedrivers/gpu/drm/drmEXPORT_SYMBOL0xf78d04abnetlink_register_notifiervmlinuxEXPORT_SYMBOL0xc8f7e249dm_iovmlinuxEXPORT_SYMBOL0xbf114e01USBC_GetPortFifoSizevmlinuxEXPORT_SYMBOL0x2fa30e7eusb_match_idvmlinuxEXPORT_SYMBOL_GPL0x213c28c0bio_integrity_endiovmlinuxEXPORT_SYMBOL0xeb7eb701rt2x00lib_get_bssidxdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x62239a1bad7879_pm_opsdrivers/input/touchscreen/ad7879EXPORT_SYMBOL0x08ce3d43xfrm_policy_insertvmlinuxEXPORT_SYMBOL0xb225523e__netpoll_cleanupvmlinuxEXPORT_SYMBOL_GPL0x9a2907d2skb_segmentvmlinuxEXPORT_SYMBOL_GPL0x184b82fbmmc_vddrange_to_ocrmaskvmlinuxEXPORT_SYMBOL0xdb825f99dm_suspendedvmlinuxEXPORT_SYMBOL_GPL0x1b8139e5usb_add_hcdvmlinuxEXPORT_SYMBOL_GPL0xfa97c573blk_queue_max_segmentsvmlinuxEXPORT_SYMBOL0xbef92d67unlock_renamevmlinuxEXPORT_SYMBOL0x9820b644warn_slowpath_fmt_taintvmlinuxEXPORT_SYMBOL0x4cf7e84eip_vs_conn_putnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x0291534aiscsi_session_chkreadydrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x9b6a391fdib7000p_attachdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x159e0785dib7000m_attachdrivers/media/dvb/frontends/dib7000mEXPORT_SYMBOL0xdc69e37adm_bufio_get_block_numberdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x0af2507btcp_init_congestion_opsvmlinuxEXPORT_SYMBOL_GPL0x9c6d3424dev_gro_receivevmlinuxEXPORT_SYMBOL0x9e86c81dskb_pushvmlinuxEXPORT_SYMBOL0x5f212ef5sdio_f0_writebvmlinuxEXPORT_SYMBOL_GPL0xadd517bddevice_createvmlinuxEXPORT_SYMBOL_GPL0x58674486blk_run_queue_asyncvmlinuxEXPORT_SYMBOL0x50296c72simple_rmdirvmlinuxEXPORT_SYMBOL0x70318a63alloc_filevmlinuxEXPORT_SYMBOL0x513c61b4free_taskvmlinuxEXPORT_SYMBOL0x6e104d2eath9k_hw_proc_mib_eventdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa3da7839rndis_statusdrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x2d96afb4mtd_writedrivers/mtd/mtdEXPORT_SYMBOL_GPL0xd65fc9fbvb2_readdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xadee682ftcp_vegas_get_infovmlinuxEXPORT_SYMBOL_GPL0x37e61cbdi2c_del_adaptervmlinuxEXPORT_SYMBOL0x5838f6c9rtc_valid_tmvmlinuxEXPORT_SYMBOL0x6e55ac6ausb_register_drivervmlinuxEXPORT_SYMBOL_GPL0xdf1e45a4scsi_block_requestsvmlinuxEXPORT_SYMBOL0xba231c54sysfs_getvmlinuxEXPORT_SYMBOL_GPL0x543ef284seq_hlist_startvmlinuxEXPORT_SYMBOL0x96573b80__kfifo_dma_in_finish_rvmlinuxEXPORT_SYMBOL0xe09eece0irttp_disconnect_requestnet/irda/irdaEXPORT_SYMBOL0x5fbfb658irlmp_disconnect_requestnet/irda/irdaEXPORT_SYMBOL0x602e5e1csas_end_device_allocdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x142b8b35drm_buffer_copy_from_userdrivers/gpu/drm/drmEXPORT_SYMBOL0x99c95fa5unregister_sound_specialvmlinuxEXPORT_SYMBOL0xb2049137mmc_release_hostvmlinuxEXPORT_SYMBOL0xa224a178ahci_save_initial_configvmlinuxEXPORT_SYMBOL_GPL0x1312d0b9fat_dir_emptyvmlinuxEXPORT_SYMBOL_GPL0x072e9aee__getblkvmlinuxEXPORT_SYMBOL0x798406bfcdev_allocvmlinuxEXPORT_SYMBOL0x721567fdsw_dma_releasevmlinuxEXPORT_SYMBOL0xf7a22e62lc_dellib/lru_cacheEXPORT_SYMBOL0xc5826d8fdvb_dmx_swfilter_packetsdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x337e698frpc_put_task_asyncvmlinuxEXPORT_SYMBOL_GPL0x14f89544usb_hcd_unlink_urb_from_epvmlinuxEXPORT_SYMBOL_GPL0xef8dfee0device_wakeup_enablevmlinuxEXPORT_SYMBOL_GPL0xb9ca3b45dev_warnvmlinuxEXPORT_SYMBOL0xab3d1f95nf_ct_untracked_status_ornet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x748e93easnd_jack_set_keyvmlinuxEXPORT_SYMBOL0x7c5018eeroccat_common_receivevmlinuxEXPORT_SYMBOL_GPL0x262fb2d5get_phy_devicevmlinuxEXPORT_SYMBOL0x6deb3bb4ata_cable_satavmlinuxEXPORT_SYMBOL_GPL0x674e2315wakeup_source_registervmlinuxEXPORT_SYMBOL_GPL0x74c134b9__sw_hweight32vmlinuxEXPORT_SYMBOL0x57674fd7__sw_hweight16vmlinuxEXPORT_SYMBOL0x9f46ced8__sw_hweight64vmlinuxEXPORT_SYMBOL0x1ec4eb34flex_array_preallocvmlinuxEXPORT_SYMBOL0x93215e1d__kfifo_skip_rvmlinuxEXPORT_SYMBOL0x643f68afcpu_uservmlinuxEXPORT_SYMBOL0xbc23b1ffubi_leb_mapdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xf2576cb9ipmi_smi_watchdog_pretimeoutdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x1f61e131svc_exit_threadvmlinuxEXPORT_SYMBOL_GPL0xe62818d6pagevec_lookup_tagvmlinuxEXPORT_SYMBOL0x34184afecurrent_kernel_timevmlinuxEXPORT_SYMBOL0x81317a15print_tuplenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x52235453iriap_getvaluebyclass_requestnet/irda/irdaEXPORT_SYMBOL0xda8a5a83dib0090_set_vgadrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x4c6deb05tcp_reno_cong_avoidvmlinuxEXPORT_SYMBOL_GPL0x5a744b86netlink_set_nonrootvmlinuxEXPORT_SYMBOL0xda429e92snd_soc_dai_set_clkdivvmlinuxEXPORT_SYMBOL_GPL0x2f381728led_trigger_blinkvmlinuxEXPORT_SYMBOL_GPL0x930d9b1fusb_reset_devicevmlinuxEXPORT_SYMBOL_GPL0xf8220827ata_sas_queuecmdvmlinuxEXPORT_SYMBOL_GPL0x7505bdefmemchr_invvmlinuxEXPORT_SYMBOL0x47aca065__dquot_free_spacevmlinuxEXPORT_SYMBOL0xc0005ddflocks_copy_lockvmlinuxEXPORT_SYMBOL0x7412de43nf_ct_timeout_put_hooknet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xbf529607fc_lport_resetdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x4bc9d26bem28xx_audio_analog_setdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0x0a677db9gnet_stats_start_copy_compatvmlinuxEXPORT_SYMBOL0x11ced8a4rtc_alarm_irq_enablevmlinuxEXPORT_SYMBOL_GPL0x0ee405fescsi_nl_add_transportvmlinuxEXPORT_SYMBOL_GPL0x7522f3bairq_modify_statusvmlinuxEXPORT_SYMBOL_GPL0xd5d98490drm_class_device_registerdrivers/gpu/drm/drmEXPORT_SYMBOL_GPL0xa3c11199inet6_del_protocolvmlinuxEXPORT_SYMBOL0x0378b101xfrm_input_resumevmlinuxEXPORT_SYMBOL0x0aebb778udplite_protvmlinuxEXPORT_SYMBOL0xa2520028sock_create_kernvmlinuxEXPORT_SYMBOL0xec9c3215scsi_eh_restore_cmndvmlinuxEXPORT_SYMBOL0x081eceactransport_remove_devicevmlinuxEXPORT_SYMBOL_GPL0x8260686fbitmap_find_next_zero_areavmlinuxEXPORT_SYMBOL0x3f4dd4c9bio_integrity_enabledvmlinuxEXPORT_SYMBOL0x970e5111drm_gtf_modedrivers/gpu/drm/drmEXPORT_SYMBOL0xd89bda78cache_destroy_netvmlinuxEXPORT_SYMBOL_GPL0xb0be8c8ask_clone_lockvmlinuxEXPORT_SYMBOL_GPL0x404e327dsw_hcd_h_get_frame_numbervmlinuxEXPORT_SYMBOL0x2a678a13__suspend_report_resultvmlinuxEXPORT_SYMBOL_GPL0x5a48534aregulator_count_voltagesvmlinuxEXPORT_SYMBOL_GPL0x034f2663TCON_closevmlinuxEXPORT_SYMBOL0x594ba9f5d_find_any_aliasvmlinuxEXPORT_SYMBOL0x4205ffd7ceph_destroy_optionsnet/ceph/libcephEXPORT_SYMBOL0x449919d8rt2800_wait_wpdma_readydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x4ed29277sk_attach_filtervmlinuxEXPORT_SYMBOL_GPL0xbbfc67f0sk_detach_filtervmlinuxEXPORT_SYMBOL_GPL0xcceedbfbsnd_rawmidi_transmit_emptyvmlinuxEXPORT_SYMBOL0x05ee891asnd_timer_openvmlinuxEXPORT_SYMBOL0xd72aff3efb_set_cmapvmlinuxEXPORT_SYMBOL0xf741c793zlib_deflateEndvmlinuxEXPORT_SYMBOL0x7469fcferadix_tree_taggedvmlinuxEXPORT_SYMBOL0x102c24e6unload_nlsvmlinuxEXPORT_SYMBOL0x4356d9b8seq_open_privatevmlinuxEXPORT_SYMBOL0xe1ea0586usbip_dump_headerdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xbfb040eedvb_dmx_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x40143caasunrpc_cache_updatevmlinuxEXPORT_SYMBOL_GPL0x8f7c5fbcskb_gso_segmentvmlinuxEXPORT_SYMBOL0x650d466dkernel_listenvmlinuxEXPORT_SYMBOL0x4c3a52bdsnd_jack_set_parentvmlinuxEXPORT_SYMBOL0x4d3ab8dfserio_unregister_drivervmlinuxEXPORT_SYMBOL0x76bf656d__bitmap_shift_leftvmlinuxEXPORT_SYMBOL0xacbdf828nat_rtp_rtcp_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x9bbe83e9ip_set_type_registernet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xa9247cd1ebt_unregister_tablenet/bridge/netfilter/ebtablesEXPORT_SYMBOL0x6c79473cfbtft_framebuffer_allocdrivers/video/fbtft/fbtftEXPORT_SYMBOL0x65e8c1a3fc_eh_abortdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xada744c8fc_set_rport_loss_tmodrivers/scsi/libfc/libfcEXPORT_SYMBOL0x2727dcf0rc_repeatdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xb213ef8bgss_mech_getvmlinuxEXPORT_SYMBOL_GPL0xa3cff945napi_skb_finishvmlinuxEXPORT_SYMBOL0x23cc7e7c__scsi_device_lookupvmlinuxEXPORT_SYMBOL0xe23ae481blk_iopoll_completevmlinuxEXPORT_SYMBOL0x6a577c71crypto_chainvmlinuxEXPORT_SYMBOL_GPL0x9d669763memcpyvmlinuxEXPORT_SYMBOL0xd13a48caip6t_do_tablenet/ipv6/netfilter/ip6_tablesEXPORT_SYMBOL0xd62324f2rpc_run_taskvmlinuxEXPORT_SYMBOL_GPL0xebe7ae8bata_std_postresetvmlinuxEXPORT_SYMBOL_GPL0xbab891a5spi_release_transportvmlinuxEXPORT_SYMBOL0xd29b009fcrc_itu_t_tablevmlinuxEXPORT_SYMBOL0x545ebb62bdevnamevmlinuxEXPORT_SYMBOL0x43a0458bblk_start_plugvmlinuxEXPORT_SYMBOL0x8d4ef6edcdev_initvmlinuxEXPORT_SYMBOL0xbe63ee40request_resourcevmlinuxEXPORT_SYMBOL0x46935b63nf_ct_expect_initnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x166ff6d8nand_scan_bbtdrivers/mtd/nand/nandEXPORT_SYMBOL0x2b23f31fgameport_start_pollingdrivers/input/gameport/gameportEXPORT_SYMBOL0xbeff2111inet_getnamevmlinuxEXPORT_SYMBOL0x61b39ffdtcp_md5_do_lookupvmlinuxEXPORT_SYMBOL0x1dea8d2dsnd_unregister_oss_devicevmlinuxEXPORT_SYMBOL0x2b4cdf5fregcache_syncvmlinuxEXPORT_SYMBOL_GPL0x85e7deb2iov_iter_fault_in_readablevmlinuxEXPORT_SYMBOL0xb06e4650module_mutexvmlinuxEXPORT_SYMBOL_GPL0xb95f98d6_memset_iovmlinuxEXPORT_SYMBOL0x25449732put_mtd_devicedrivers/mtd/mtdEXPORT_SYMBOL_GPL0xdc355e09soc_camera_xlate_by_fourccdrivers/media/video/soc_cameraEXPORT_SYMBOL0x0261e9c7drm_mode_config_initdrivers/gpu/drm/drmEXPORT_SYMBOL0xa37b6d26dm_get_mapinfovmlinuxEXPORT_SYMBOL0xc3d7086bmddev_suspendvmlinuxEXPORT_SYMBOL_GPL0x270ccf23modify_user_hw_breakpointvmlinuxEXPORT_SYMBOL_GPL0xbf9bcc8d__cap_empty_setvmlinuxEXPORT_SYMBOL0x9463ff71init_bchlib/bchEXPORT_SYMBOL_GPL0x53e9dd19spk_var_showdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xe633d6fcmtd_get_fact_prot_infodrivers/mtd/mtdEXPORT_SYMBOL_GPL0x9d179826dibx000_get_i2c_adapterdrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0x44a2b3a3xprt_register_transportvmlinuxEXPORT_SYMBOL_GPL0x876b545ci2c_smbus_process_callvmlinuxEXPORT_SYMBOL0x42a76ec4platform_get_resourcevmlinuxEXPORT_SYMBOL_GPL0xb986369bcrypto_shoot_algvmlinuxEXPORT_SYMBOL_GPL0x608b9264iputvmlinuxEXPORT_SYMBOL0xb5e4abacsleep_on_timeoutvmlinuxEXPORT_SYMBOL0x5a157ae4nfs4_acl_get_whotypefs/nfsd/nfsdEXPORT_SYMBOL0x7ae09aa8iscsi_alloc_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x1beacc5exprt_complete_rqstvmlinuxEXPORT_SYMBOL_GPL0x28a82da4snmp_mib_initvmlinuxEXPORT_SYMBOL_GPL0xd5566607input_ff_uploadvmlinuxEXPORT_SYMBOL_GPL0x92d59904create_proc_entryvmlinuxEXPORT_SYMBOL0x03fd2571vm_unmap_ramvmlinuxEXPORT_SYMBOL0x0201d634proc_doulongvec_ms_jiffies_minmaxvmlinuxEXPORT_SYMBOL0x45bda0d5system_serial_lowvmlinuxEXPORT_SYMBOL0x070f842eceph_client_idnet/ceph/libcephEXPORT_SYMBOL0x579d2806oslec_snapshotdrivers/staging/echo/echoEXPORT_SYMBOL_GPL0x75ae31ddmt352_attachdrivers/media/dvb/frontends/mt352EXPORT_SYMBOL0x159642c2mt312_attachdrivers/media/dvb/frontends/mt312EXPORT_SYMBOL0x3273f0e7xfrm_outputvmlinuxEXPORT_SYMBOL_GPL0x92d31cfbfixed_phy_addvmlinuxEXPORT_SYMBOL_GPL0xeea9dbafbitmap_bitremapvmlinuxEXPORT_SYMBOL0x71a50dbcregister_blkdevvmlinuxEXPORT_SYMBOL0xc5a7e474fuse_sync_releasevmlinuxEXPORT_SYMBOL_GPL0xaa637a4bsw_dma_getpositionvmlinuxEXPORT_SYMBOL0xb7047b8dnf_conntrack_alter_replynet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xfc332a82if_usb_reset_devicedrivers/net/wireless/libertas_tf/libertas_tf_usbEXPORT_SYMBOL_GPL0x433952absoc_mbus_find_fmtdescdrivers/media/video/soc_mediabusEXPORT_SYMBOL0xc02d8ed4cx231xx_send_gpio_cmddrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x5a137d19drm_prime_destroy_file_privatedrivers/gpu/drm/drmEXPORT_SYMBOL0x93d84410neigh_event_nsvmlinuxEXPORT_SYMBOL0x925bab2bsnd_soc_update_bitsvmlinuxEXPORT_SYMBOL_GPL0x501fbb48fb_firmware_edidvmlinuxEXPORT_SYMBOL0x491a3fefelevator_changevmlinuxEXPORT_SYMBOL0x26159b03jbd2_journal_blocks_per_pagevmlinuxEXPORT_SYMBOL0x3274afd9iterate_supers_typevmlinuxEXPORT_SYMBOL0x366d19efgenericbl_limit_intensitydrivers/video/backlight/generic_blEXPORT_SYMBOL0xf1db6dacssb_bus_sdiobus_registerdrivers/ssb/ssbEXPORT_SYMBOL0x9a29cc9discsi_queuecommanddrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xa88ac318drm_gem_handle_deletedrivers/gpu/drm/drmEXPORT_SYMBOL0x7b896de6usb_kill_anchored_urbsvmlinuxEXPORT_SYMBOL_GPL0x63205de1ata_scsi_unlock_native_capacityvmlinuxEXPORT_SYMBOL_GPL0xcb998b2frequest_firmware_nowaitvmlinuxEXPORT_SYMBOL0x6ef63060fscache_check_auxvmlinuxEXPORT_SYMBOL0x9ba6c046cfg80211_unlink_bssvmlinuxEXPORT_SYMBOL0x5251880bnetdev_change_featuresvmlinuxEXPORT_SYMBOL0x3896fa4dinit_dummy_netdevvmlinuxEXPORT_SYMBOL_GPL0x4226264cgpio_set_one_pin_driver_levelvmlinuxEXPORT_SYMBOL0xa772bc58sockfd_to_socketdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x12fea9efusbnet_get_drvinfodrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x3af3db6ddst_destroyvmlinuxEXPORT_SYMBOL0x920ddf41journal_errnovmlinuxEXPORT_SYMBOL0xfc6f36fdnf_ct_helper_expectfn_unregisternet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xdf2c2e6dhostap_set_roamingdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xeb2e70baath9k_hw_setpowerdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xcd36f4fcmtd_blktrans_cease_backgrounddrivers/mtd/mtd_blkdevsEXPORT_SYMBOL_GPL0xe36e2e42videobuf_read_streamdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xba1eb9ccsvc_wake_upvmlinuxEXPORT_SYMBOL_GPL0x32a4e679xprt_write_spacevmlinuxEXPORT_SYMBOL_GPL0x16110c84ndisc_send_skbvmlinuxEXPORT_SYMBOL0x420bbbc2nf_unregister_queue_handlersvmlinuxEXPORT_SYMBOL_GPL0xa38ba79esw_hcd_write_fifovmlinuxEXPORT_SYMBOL0x31d20240scsi_mode_sensevmlinuxEXPORT_SYMBOL0x2d89342ascsi_show_sense_hdrvmlinuxEXPORT_SYMBOL0xda7ca6cbfb_mode_is_equalvmlinuxEXPORT_SYMBOL0x74e0f50fjournal_check_available_featuresvmlinuxEXPORT_SYMBOL0x4467122a__init_waitqueue_headvmlinuxEXPORT_SYMBOL0x05e33bb6nf_ct_get_tuplenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x60645cacxfrm6_tunnel_registernet/ipv6/tunnel6EXPORT_SYMBOL0x94d32326ssb_clockspeeddrivers/ssb/ssbEXPORT_SYMBOL0x6c3108aewl1271_load_firmwaredrivers/net/wireless/wl12xx/wl12xxEXPORT_SYMBOL_GPL0xdbc47129xfrm4_tunnel_registervmlinuxEXPORT_SYMBOL0x8b163a1dblk_insert_cloned_requestvmlinuxEXPORT_SYMBOL_GPL0x16c42197init_timer_deferrable_keyvmlinuxEXPORT_SYMBOL0xecb0813eircomm_opennet/irda/ircomm/ircommEXPORT_SYMBOL0x960f4d67rt2x00queue_stop_queuedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xa93e8d03brcmu_pktq_pdeq_taildrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0xfb4276e0brcmu_pktq_penq_headdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x0147a9c1brcmu_pktq_peek_taildrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x4f27c158ir_raw_event_store_edgedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x8329882eskb_copy_datagram_from_iovecvmlinuxEXPORT_SYMBOL0xc8269f94snd_soc_params_to_frame_sizevmlinuxEXPORT_SYMBOL_GPL0x385689adsnd_pcm_lib_ioctlvmlinuxEXPORT_SYMBOL0x9c8636e1w1_read_8vmlinuxEXPORT_SYMBOL_GPL0x8a5c7a80regulator_enablevmlinuxEXPORT_SYMBOL_GPL0x9ac11b74suspend_set_opsvmlinuxEXPORT_SYMBOL_GPL0x36c853d5ircomm_closenet/irda/ircomm/ircommEXPORT_SYMBOL0xb6081d6dceph_msgr_exitnet/ceph/libcephEXPORT_SYMBOL0x542c99eelc_seq_printf_statslib/lru_cacheEXPORT_SYMBOL0x3a848684dst_allocvmlinuxEXPORT_SYMBOL0x3b3016d3cpufreq_unregister_notifiervmlinuxEXPORT_SYMBOL0xe93e49c3devres_freevmlinuxEXPORT_SYMBOL_GPL0x825f0828timerqueue_iterate_nextvmlinuxEXPORT_SYMBOL_GPL0x5500e45fblk_put_queuevmlinuxEXPORT_SYMBOL0x2ed4637csingle_releasevmlinuxEXPORT_SYMBOL0x3a0841cdget_user_pagesvmlinuxEXPORT_SYMBOL0xa108eb4dsysctl_optmem_maxvmlinuxEXPORT_SYMBOL0xb1ecee0ev4l2_device_registervmlinuxEXPORT_SYMBOL_GPL0x02196dc4jbd2_journal_destroyvmlinuxEXPORT_SYMBOL0xcf110fdfjbd2_journal_restartvmlinuxEXPORT_SYMBOL0x8ff6098cem28xx_capture_startdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xe57878a1in6_ptonvmlinuxEXPORT_SYMBOL0xaccabc6ain4_ptonvmlinuxEXPORT_SYMBOL0x44233169scsi_mode_selectvmlinuxEXPORT_SYMBOL_GPL0x9883dda0cfb_copyareavmlinuxEXPORT_SYMBOL0xd0181f4f__bitmap_xorvmlinuxEXPORT_SYMBOL0x9ecbba98mnt_want_writevmlinuxEXPORT_SYMBOL_GPL0xa5ae9652script_parser_fetch_exvmlinuxEXPORT_SYMBOL0x2455c156__clear_uservmlinuxEXPORT_SYMBOL0x68a4d32axprt_lock_and_alloc_slotvmlinuxEXPORT_SYMBOL_GPL0xe7f66886__dev_remove_packvmlinuxEXPORT_SYMBOL0x76d06e9fconfig_group_initvmlinuxEXPORT_SYMBOL0x82034bdcposix_acl_to_xattrvmlinuxEXPORT_SYMBOL0xb18429ebsuspend_device_irqsvmlinuxEXPORT_SYMBOL_GPL0xc933e21d_raw_write_unlock_irqvmlinuxEXPORT_SYMBOL0xbbd15a51speakup_start_ttysdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xc3e4c127ttpci_eeprom_decode_macdrivers/media/dvb/ttpci/ttpci-eepromEXPORT_SYMBOL0x56be9e55drm_mode_config_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x7c974627__starget_for_each_devicevmlinuxEXPORT_SYMBOL0xf13feb57radix_tree_next_chunkvmlinuxEXPORT_SYMBOL0x90a1004acrypto_has_algvmlinuxEXPORT_SYMBOL_GPL0x6552482fbioset_integrity_createvmlinuxEXPORT_SYMBOL0x10def091iget5_lockedvmlinuxEXPORT_SYMBOL0x82724776do_mmapvmlinuxEXPORT_SYMBOL0x3dcb88a0irq_set_handler_datavmlinuxEXPORT_SYMBOL0xea2954b9yield_tovmlinuxEXPORT_SYMBOL_GPL0x7513e94eieee80211_channel_to_frequencyvmlinuxEXPORT_SYMBOL0xc3e3d466mii_check_mediavmlinuxEXPORT_SYMBOL0xad36ecf3user_revokevmlinuxEXPORT_SYMBOL0x33d321ffdebugfs_create_dirvmlinuxEXPORT_SYMBOL_GPL0x0beef386dcache_dir_lseekvmlinuxEXPORT_SYMBOL0x0c2cdbf1synchronize_schedvmlinuxEXPORT_SYMBOL_GPL0x92a9c60ctime_to_tmvmlinuxEXPORT_SYMBOL0x651a4139test_taintvmlinuxEXPORT_SYMBOL0xfb7d9c45__udivsi3vmlinuxEXPORT_SYMBOL0x15fe0cd3raid6_gfexplib/raid6/raid6_pqEXPORT_SYMBOL0xc766ae09synth_printfdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xd6652021dvb_register_frontenddrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x236171a1netdev_printkvmlinuxEXPORT_SYMBOL0x7dbc653athermal_zone_device_registervmlinuxEXPORT_SYMBOL0xf5a691cdinvalidate_bh_lrusvmlinuxEXPORT_SYMBOL_GPL0xd2a88b89xt_check_matchnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xccbb0f16can_rx_registernet/can/canEXPORT_SYMBOL0xd8c730d7cfi_qry_mode_ondrivers/mtd/chips/cfi_utilEXPORT_SYMBOL_GPL0xf6f86ce7dib3000mc_attachdrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0x22e63f78dib3000mb_attachdrivers/media/dvb/frontends/dib3000mbEXPORT_SYMBOL0xee4f6247drm_mm_insert_nodedrivers/gpu/drm/drmEXPORT_SYMBOL0xae0752d8ipcomp_init_statevmlinuxEXPORT_SYMBOL_GPL0x32c3cb4eclass_compat_registervmlinuxEXPORT_SYMBOL_GPL0x24aac4d9crypto_aes_expand_keyvmlinuxEXPORT_SYMBOL_GPL0x9a8e7768d_splice_aliasvmlinuxEXPORT_SYMBOL0x6fcd2ae4do_sync_readvmlinuxEXPORT_SYMBOL0x1150f20fmem_mapvmlinuxEXPORT_SYMBOL0x0366307aconsole_suspend_enabledvmlinuxEXPORT_SYMBOL0x383e8a27gpio_request_exvmlinuxEXPORT_SYMBOL0x78f9b710nf_ct_l3proto_try_module_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x4449e1ddsynth_buffer_cleardrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x85bf0569pps_unregister_sourcedrivers/pps/pps_coreEXPORT_SYMBOL0xdd2f9d2fdrm_mm_replace_nodedrivers/gpu/drm/drmEXPORT_SYMBOL0x0851874asvc_reg_xprt_classvmlinuxEXPORT_SYMBOL_GPL0x42c7f7d8register_sound_midivmlinuxEXPORT_SYMBOL0x2bba4129sdio_release_irqvmlinuxEXPORT_SYMBOL_GPL0xf8571978mmc_wait_for_cmdvmlinuxEXPORT_SYMBOL0x72550bfckobject_renamevmlinuxEXPORT_SYMBOL_GPL0x35b6b772param_ops_charpvmlinuxEXPORT_SYMBOL0x70bf9c86mxl5005s_attachdrivers/media/common/tuners/mxl5005sEXPORT_SYMBOL0x670c042ddrm_get_encoder_namedrivers/gpu/drm/drmEXPORT_SYMBOL0x4f26468fUSBC_Host_SetHubAddress_DeafultvmlinuxEXPORT_SYMBOL0xa945458fcgroup_taskset_cur_cgroupvmlinuxEXPORT_SYMBOL_GPL0x70bb81e7cad_pidvmlinuxEXPORT_SYMBOL0xe4c80097cacheidvmlinuxEXPORT_SYMBOL0x4d2960b6dib8000_remove_slave_frontenddrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x960c29ceata_host_startvmlinuxEXPORT_SYMBOL_GPL0x5a5a94a6kstrtou8vmlinuxEXPORT_SYMBOL0x6617b0d4blk_rq_map_integrity_sgvmlinuxEXPORT_SYMBOL0x9a2bac51get_task_pidvmlinuxEXPORT_SYMBOL_GPL0x77143c55ceph_auth_invalidate_authorizernet/ceph/libcephEXPORT_SYMBOL0x9a888082synth_buffer_getcdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x85478a0binet6_hash_fragvmlinuxEXPORT_SYMBOL_GPL0x7d252ba1snd_component_addvmlinuxEXPORT_SYMBOL0x43d9dc48serial8250_rx_charsvmlinuxEXPORT_SYMBOL_GPL0x6605f97fflex_array_clearvmlinuxEXPORT_SYMBOL0x5a7bfe41crypto_probing_notifyvmlinuxEXPORT_SYMBOL_GPL0x44a3fd40ip6t_alloc_initial_tablenet/ipv6/netfilter/ip6_tablesEXPORT_SYMBOL_GPL0x8910ed26hostap_set_encryptiondrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x5e539bd0mtd_writevdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x04dd7b60lis3lv02d_init_devicedrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0xc2821775tuner_countdrivers/media/common/tuners/tuner-typesEXPORT_SYMBOL0x1bdbcc36netif_receive_skbvmlinuxEXPORT_SYMBOL0x9c6e7602spi_new_devicevmlinuxEXPORT_SYMBOL_GPL0x0531dcb8ata_dev_classifyvmlinuxEXPORT_SYMBOL_GPL0x82bcc261pm_runtime_enablevmlinuxEXPORT_SYMBOL_GPL0x716e765djournal_update_formatvmlinuxEXPORT_SYMBOL0xfb6af58drecalc_sigpendingvmlinuxEXPORT_SYMBOL0xebfdcbdfsystem_serial_highvmlinuxEXPORT_SYMBOL0x8233b1c4wimax_resetnet/wimax/wimaxEXPORT_SYMBOL0x397f6231ip_set_freenet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xf67aa7d0nf_nat_proto_unique_tuplenet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0x53b35e69nf_nat_mangle_udp_packetnet/ipv4/netfilter/nf_natEXPORT_SYMBOL0x2df82422vb2_get_contig_userptrdrivers/media/video/videobuf2-memopsEXPORT_SYMBOL_GPL0xbeaf7dcesmscore_unregister_hotplugdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x8f0d7e67si21xx_attachdrivers/media/dvb/frontends/si21xxEXPORT_SYMBOL0x77ad3a91snd_soc_dapm_get_pin_statusvmlinuxEXPORT_SYMBOL_GPL0x52ef06edhcd0_get_vbus_statusvmlinuxEXPORT_SYMBOL0x5c48a471USBC_Dev_ReadDataStatusvmlinuxEXPORT_SYMBOL0xd97d9e04ieee80211_restart_hwnet/mac80211/mac80211EXPORT_SYMBOL0xba74e625iscsi_tcp_recv_segment_is_hdrdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x1cd9a23fiscsi_itt_to_ctaskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xcbe2e4ebhostap_80211_rxdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x7c576277smsendian_handle_message_headerdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xb1425b32dm_table_add_target_callbacksvmlinuxEXPORT_SYMBOL_GPL0x6928a9e2anon_transport_class_registervmlinuxEXPORT_SYMBOL_GPL0x60fc6548disk_part_iter_exitvmlinuxEXPORT_SYMBOL_GPL0x10928bc2follow_down_onevmlinuxEXPORT_SYMBOL0x833a2595nxt6000_attachdrivers/media/dvb/frontends/nxt6000EXPORT_SYMBOL0x3284d319rpcauth_init_credcachevmlinuxEXPORT_SYMBOL_GPL0x487d5923raw_seq_nextvmlinuxEXPORT_SYMBOL_GPL0xa8e3c952ip_setsockoptvmlinuxEXPORT_SYMBOL0x03fd6bf5ip_getsockoptvmlinuxEXPORT_SYMBOL0x4b015768snd_iprintfvmlinuxEXPORT_SYMBOL0xe93d02adinput_ff_create_memlessvmlinuxEXPORT_SYMBOL_GPL0x5ecba919tty_encode_baud_ratevmlinuxEXPORT_SYMBOL_GPL0x9e1da08dblk_unprep_requestvmlinuxEXPORT_SYMBOL_GPL0x0bae62b1ktime_get_monotonic_offsetvmlinuxEXPORT_SYMBOL_GPL0x158ea6cdi2c_bit_add_numbered_busdrivers/i2c/algos/i2c-algo-bitEXPORT_SYMBOL0xad081dedpmbus_check_word_registerdrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x31c82b0bxdr_shift_bufvmlinuxEXPORT_SYMBOL_GPL0xffa333e8ip_options_rcv_srrvmlinuxEXPORT_SYMBOL0x1f83eb32device_registervmlinuxEXPORT_SYMBOL_GPL0xc304e0f3dentry_openvmlinuxEXPORT_SYMBOL0x318add29ieee80211_sched_scan_resultsnet/mac80211/mac80211EXPORT_SYMBOL0x7d13c9a2cec_receive_messagedrivers/video/hdmi-cec/hdmi-cecEXPORT_SYMBOL0x458db014skb_checksum_helpvmlinuxEXPORT_SYMBOL0x01672720unregister_netdevice_queuevmlinuxEXPORT_SYMBOL0x40a27c37scsi_dev_info_remove_listvmlinuxEXPORT_SYMBOL0x420cf41fregmap_writevmlinuxEXPORT_SYMBOL_GPL0x9545af6dtasklet_initvmlinuxEXPORT_SYMBOL0x02079a2dnf_nat_setup_infonet/ipv4/netfilter/nf_natEXPORT_SYMBOL0xe03c36afath9k_hw_setup_statusringdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x63c30875led_trigger_set_defaultvmlinuxEXPORT_SYMBOL_GPL0xf553318dcpuidle_pause_and_lockvmlinuxEXPORT_SYMBOL_GPL0x83a8552cUSBC_Host_IsReadDataReadyvmlinuxEXPORT_SYMBOL0x7314d9ddsata_link_debouncevmlinuxEXPORT_SYMBOL_GPL0x77f913d6jbd2_journal_get_undo_accessvmlinuxEXPORT_SYMBOL0xdf56dcb2stop_machinevmlinuxEXPORT_SYMBOL_GPL0x53986488register_die_notifiervmlinuxEXPORT_SYMBOL_GPL0x38742a2fwimax_dev_addnet/wimax/wimaxEXPORT_SYMBOL_GPL0x874b1daewimax_msgnet/wimax/wimaxEXPORT_SYMBOL_GPL0xeb277ec9nf_ct_unlink_expect_reportnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xe6024e59dm_bufio_releasedrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x013547a9sock_no_recvmsgvmlinuxEXPORT_SYMBOL0x8b0688d8ata_do_set_modevmlinuxEXPORT_SYMBOL_GPL0xe28d958chrtimer_cancelvmlinuxEXPORT_SYMBOL_GPL0xa8e173fcxt_unregister_matchesnet/netfilter/x_tablesEXPORT_SYMBOL0x40af0decata_xfer_mode2maskvmlinuxEXPORT_SYMBOL_GPL0xef58bd8bdquot_file_openvmlinuxEXPORT_SYMBOL0xfdfc0b3bfiemap_fill_next_extentvmlinuxEXPORT_SYMBOL0x6078ba69osd_auto_detect_verdrivers/scsi/osd/libosdEXPORT_SYMBOL0x80c89b3ddm_tm_unlockdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xb7bad799dm_bm_unlockdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x621eed83btmrvl_register_hdevdrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x3ebdafc4media_entity_initvmlinuxEXPORT_SYMBOL_GPL0x7c4dbfeacrypto_shash_digestvmlinuxEXPORT_SYMBOL_GPL0xc8501c83crypto_ahash_digestvmlinuxEXPORT_SYMBOL_GPL0x3de9cae1crypto_remove_finalvmlinuxEXPORT_SYMBOL_GPL0xb3e6cde7rxrpc_kernel_begin_callnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x07d3647cirlmp_register_servicenet/irda/irdaEXPORT_SYMBOL0xbaf86045usb_cdc_wdm_registerdrivers/usb/class/cdc-wdmEXPORT_SYMBOL0x22be8955iscsi_update_cmdsndrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xe1e2defam88rs2000_attachdrivers/media/dvb/frontends/m88rs2000EXPORT_SYMBOL0x6df6fde1svc_authenticatevmlinuxEXPORT_SYMBOL_GPL0xa8c6f495rtnl_set_sk_errvmlinuxEXPORT_SYMBOL0x15ff5c8fsnd_soc_jack_newvmlinuxEXPORT_SYMBOL_GPL0xca01666d_raw_read_lockvmlinuxEXPORT_SYMBOL0x4f7f2d1bcompletevmlinuxEXPORT_SYMBOL0x78c978aedowngrade_writevmlinuxEXPORT_SYMBOL0xbaac427cget_mem_typevmlinuxEXPORT_SYMBOL0x27f9b436iscsi_block_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x93d0c407fc_fcp_destroydrivers/scsi/libfc/libfcEXPORT_SYMBOL0x35de80dc__gameport_register_driverdrivers/input/gameport/gameportEXPORT_SYMBOL0x897b1134ip_check_defragvmlinuxEXPORT_SYMBOL0x0db67b6cata_port_freezevmlinuxEXPORT_SYMBOL_GPL0x8f841cd2dma_mmap_from_coherentvmlinuxEXPORT_SYMBOL0x47cadc98rdev_get_devvmlinuxEXPORT_SYMBOL_GPL0x72d3c064config_item_init_type_namevmlinuxEXPORT_SYMBOL0xdb864d65iov_iter_single_seg_countvmlinuxEXPORT_SYMBOL0x38676310snd_ac97_pcm_closesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x250e7138__ieee80211_get_tx_led_namenet/mac80211/mac80211EXPORT_SYMBOL0x43e02abdl2tp_xmit_skbnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x9a5f88c5brcmu_pkt_buf_get_skbdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x270e78b2snd_pcm_new_streamvmlinuxEXPORT_SYMBOL0xf73fd36csync_page_iovmlinuxEXPORT_SYMBOL_GPL0x7234eafbotg_state_stringvmlinuxEXPORT_SYMBOL0x05e865a3sata_link_resumevmlinuxEXPORT_SYMBOL_GPL0x3b37e436scsi_test_unit_readyvmlinuxEXPORT_SYMBOL0xefe73483dentry_update_name_casevmlinuxEXPORT_SYMBOL0x8a7d1c31high_memoryvmlinuxEXPORT_SYMBOL0xd7b213fasmp_call_function_manyvmlinuxEXPORT_SYMBOL0x119b50e7elf_check_archvmlinuxEXPORT_SYMBOL0x12d813efiscsi_itt_to_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x04835364st_registerdrivers/misc/ti-st/st_drvEXPORT_SYMBOL_GPL0x080e4a8bmc44s803_attachdrivers/media/common/tuners/mc44s803EXPORT_SYMBOL0xe75f1435snd_soc_jack_free_gpiosvmlinuxEXPORT_SYMBOL_GPL0x7a3cd015v4l2_ctrl_get_menuvmlinuxEXPORT_SYMBOL0xb0861d16simple_linkvmlinuxEXPORT_SYMBOL0xbdd2f42arcu_bh_force_quiescent_statevmlinuxEXPORT_SYMBOL_GPL0xd74f5f87usb_serial_suspenddrivers/usb/serial/usbserialEXPORT_SYMBOL0xf952483avideobuf_queue_vmalloc_initdrivers/media/video/videobuf-vmallocEXPORT_SYMBOL_GPL0x05968406hidinput_find_fieldvmlinuxEXPORT_SYMBOL_GPL0x7ae1ae8ecpufreq_frequency_table_put_attrvmlinuxEXPORT_SYMBOL_GPL0xa0a16320scsi_remove_targetvmlinuxEXPORT_SYMBOL0xb6c5a973scsi_show_resultvmlinuxEXPORT_SYMBOL0xb3482657journal_blocks_per_pagevmlinuxEXPORT_SYMBOL0xd1044b71page_cache_async_readaheadvmlinuxEXPORT_SYMBOL_GPL0x4277bf88mempool_createvmlinuxEXPORT_SYMBOL0x563f388bdrm_cvt_modedrivers/gpu/drm/drmEXPORT_SYMBOL0xc02cf69bclkdev_dropvmlinuxEXPORT_SYMBOL0x471e4cc2sw_mci_check_r1_readyvmlinuxEXPORT_SYMBOL_GPL0x58d41420kblockd_schedule_workvmlinuxEXPORT_SYMBOL0x3bbac917send_sig_infovmlinuxEXPORT_SYMBOL0xbef24175max9877_add_controlssound/soc/codecs/snd-soc-max9877EXPORT_SYMBOL_GPL0x6e706b68xprt_release_xprtvmlinuxEXPORT_SYMBOL_GPL0xcac8e8c8__neigh_event_sendvmlinuxEXPORT_SYMBOL0x935ea5bask_stream_wait_closevmlinuxEXPORT_SYMBOL0x1ff01be4show_class_attr_stringvmlinuxEXPORT_SYMBOL_GPL0xd3d2b950read_cache_page_asyncvmlinuxEXPORT_SYMBOL0xd0ee38b8schedule_timeout_uninterruptiblevmlinuxEXPORT_SYMBOL0xd79b5a02allow_signalvmlinuxEXPORT_SYMBOL0x685fff94sas_remove_hostdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xaadd3a1cfc_fabric_logoffdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xf3720694ath6kl_cfg80211_suspenddrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x80a31267gspca_frame_adddrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0x0325f1a3ir_raw_event_set_idledrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x8be30460snd_rawmidi_info_selectvmlinuxEXPORT_SYMBOL0xcde0e458snd_timer_global_registervmlinuxEXPORT_SYMBOL0x5ad3ee6bata_host_registervmlinuxEXPORT_SYMBOL_GPL0xdf7d8411platform_get_irqvmlinuxEXPORT_SYMBOL_GPL0x8bb8dadfkill_anon_supervmlinuxEXPORT_SYMBOL0xb987e840snd_ac97_update_bitssound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x06b0d290nf_ct_delete_from_listsnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd72b303al2tp_session_findnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0xc879e146irttp_connect_responsenet/irda/irdaEXPORT_SYMBOL0xfef35e50irlmp_connect_responsenet/irda/irdaEXPORT_SYMBOL0xed7f52bcRTMP_Usb_AutoPM_Put_Interfacedrivers/net/wireless/rtxx7x/rt5370staEXPORT_SYMBOL0x344dded9xfrm6_rcvvmlinuxEXPORT_SYMBOL0x2426fd21xfrm4_rcvvmlinuxEXPORT_SYMBOL0xc0c95863snd_soc_unregister_platformvmlinuxEXPORT_SYMBOL_GPL0x228046beppp_output_wakeupvmlinuxEXPORT_SYMBOL0xf4d0ee3aata_msleepvmlinuxEXPORT_SYMBOL_GPL0xb61a0c3bbt_errnet/bluetooth/bluetoothEXPORT_SYMBOL0x5d04657albs_host_sleep_cfgdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x352b7e61async_raid6_2data_recovcrypto/async_tx/async_raid6_recovEXPORT_SYMBOL_GPL0x16ac6538xdr_buf_subsegmentvmlinuxEXPORT_SYMBOL_GPL0x9f9a6c5bfscache_init_cachevmlinuxEXPORT_SYMBOL0x5cbead35bio_integrity_trimvmlinuxEXPORT_SYMBOL0xddf419c8bio_integrity_freevmlinuxEXPORT_SYMBOL0x684fbe84bio_integrity_prepvmlinuxEXPORT_SYMBOL0x74ee9098sms_board_load_modulesdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x82b3d907drm_fb_helper_single_fb_probedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xb6c21c83btmrvl_check_evtpktdrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x67b9e73fcfg80211_put_bssvmlinuxEXPORT_SYMBOL0xd36132d1inet_dgram_connectvmlinuxEXPORT_SYMBOL0xad464625usb_find_alt_settingvmlinuxEXPORT_SYMBOL_GPL0xbc2cd0a0phy_connectvmlinuxEXPORT_SYMBOL0xa7cbc9efdriver_unregistervmlinuxEXPORT_SYMBOL_GPL0x3919f337generic_pipe_buf_unmapvmlinuxEXPORT_SYMBOL0xe4d922f9generic_pipe_buf_stealvmlinuxEXPORT_SYMBOL0xe5d95985param_ops_ulongvmlinuxEXPORT_SYMBOL0x538c6bb3iscsi_unblock_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x2dc5629dfcoe_ctlr_recvdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x86f157d4ath9k_cmn_init_cryptodrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0xcca1ed0dstv6110x_attachdrivers/media/dvb/frontends/stv6110xEXPORT_SYMBOL0xcddf952cinet_frags_exit_netvmlinuxEXPORT_SYMBOL0x0a2974d4v4l2_ctrl_findvmlinuxEXPORT_SYMBOL0xe3719f5cv4l2_ctrl_fillvmlinuxEXPORT_SYMBOL0x5ebefe4bv4l_printk_ioctlvmlinuxEXPORT_SYMBOL0x830bceeekobject_getvmlinuxEXPORT_SYMBOL0xd47e6de1kobject_putvmlinuxEXPORT_SYMBOL0xf7421c5cnfs4_reset_writevmlinuxEXPORT_SYMBOL_GPL0x46214106files_lglock_local_unlock_cpuvmlinuxEXPORT_SYMBOL0x4b5b09aarelay_openvmlinuxEXPORT_SYMBOL_GPL0x37b777dfparam_set_copystringvmlinuxEXPORT_SYMBOL0x59e70f93__send_remote_softirqvmlinuxEXPORT_SYMBOL0x0ac8d96cspeakup_infodrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x169b2c58cfi_read_pridrivers/mtd/chips/cfi_utilEXPORT_SYMBOL0xb2028152vb2_put_vmadrivers/media/video/videobuf2-memopsEXPORT_SYMBOL_GPL0x7d21a22ftda18218_attachdrivers/media/common/tuners/tda18218EXPORT_SYMBOL0x55f5ee6btda18212_attachdrivers/media/common/tuners/tda18212EXPORT_SYMBOL0x3ad3e00busb_scuttle_anchored_urbsvmlinuxEXPORT_SYMBOL_GPL0xf1deabf2div64_u64vmlinuxEXPORT_SYMBOL0x92a04d48relay_closevmlinuxEXPORT_SYMBOL_GPL0xfc39e32fioport_unmapvmlinuxEXPORT_SYMBOL0xf939f9edircomm_data_requestnet/irda/ircomm/ircommEXPORT_SYMBOL0xcff72feafc_exch_mgr_freedrivers/scsi/libfc/libfcEXPORT_SYMBOL0x851b38c8detach_hdlc_protocoldrivers/net/wan/hdlcEXPORT_SYMBOL0x015ee601pwm_freedrivers/misc/pwm-sunxiEXPORT_SYMBOL0x62a23587dm_bufio_get_device_sizedrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xd6a40e89usb_reset_configurationvmlinuxEXPORT_SYMBOL_GPL0x09b9017bsysfs_merge_groupvmlinuxEXPORT_SYMBOL_GPL0x94e03cb8dq_data_lockvmlinuxEXPORT_SYMBOL0xc84a0a7eseq_hlist_start_rcuvmlinuxEXPORT_SYMBOL0xcb2b9babd_validatevmlinuxEXPORT_SYMBOL0xe65951d6__get_user_pages_fastvmlinuxEXPORT_SYMBOL_GPL0x849375dedown_trylockvmlinuxEXPORT_SYMBOL0x84c41780script_parser_fetchvmlinuxEXPORT_SYMBOL0xce83d0c4wimax_report_rfkill_swnet/wimax/wimaxEXPORT_SYMBOL_GPL0x412a737art2x00queue_stop_queuesdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x0e2a6864sch56xx_read_virtual_regdrivers/hwmon/sch56xx-commonEXPORT_SYMBOL0x4252d259genl_register_familyvmlinuxEXPORT_SYMBOL0xc256e762__bitmap_equalvmlinuxEXPORT_SYMBOL0xe5dcd60d__init_rwsemvmlinuxEXPORT_SYMBOL0x8a3d5f7cpage_zero_new_buffersvmlinuxEXPORT_SYMBOL0x99c2807fmntgetvmlinuxEXPORT_SYMBOL0x72de734bmntputvmlinuxEXPORT_SYMBOL0xeae85627fasync_helpervmlinuxEXPORT_SYMBOL0xe772d0bflbs_start_carddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x34a33a79mount_mtddrivers/mtd/mtdEXPORT_SYMBOL_GPL0xc9000b0fcx231xx_unregister_extensiondrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL0xbc88fefadibusb_dib3000mc_frontend_attachdrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x29198fc0dvb_ringbuffer_writedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x530f26cbtpm_show_owneddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xadf6aa4dtpm_pcr_readdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x7a0fb9a4sw_hcd_dma_completionvmlinuxEXPORT_SYMBOL0xf5018b8blocks_mandatory_areavmlinuxEXPORT_SYMBOL0x757206d5wm_hubs_spkmix_tlvsound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0xc1340209xt_table_unlocknet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x5b81bb45sas_port_adddrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x04b2a654iscsi_tcp_recv_skbdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xa6022a7dinet_twsk_deschedulevmlinuxEXPORT_SYMBOL0x1fb6bf90sock_alloc_send_pskbvmlinuxEXPORT_SYMBOL0x0acb1a3c__bitmap_shift_rightvmlinuxEXPORT_SYMBOL0x402b8281__request_modulevmlinuxEXPORT_SYMBOL0x2095976anfs4_acl_newfs/nfsd/nfsdEXPORT_SYMBOL0xdd3098efinet_register_protoswvmlinuxEXPORT_SYMBOL0x75578b8f__inet_inherit_portvmlinuxEXPORT_SYMBOL_GPL0xb0dc0dbfdev_deactivatevmlinuxEXPORT_SYMBOL0x8ad7f049snd_soc_add_platform_controlsvmlinuxEXPORT_SYMBOL_GPL0x12adadefUSBC_Host_ClearRusumePortFlagvmlinuxEXPORT_SYMBOL0xea869378phy_find_firstvmlinuxEXPORT_SYMBOL0xb89af9bfsrandom32vmlinuxEXPORT_SYMBOL0x23fd3028vmalloc_nodevmlinuxEXPORT_SYMBOL0xfed1e0d6mempool_destroyvmlinuxEXPORT_SYMBOL0x054e550bkernel_haltvmlinuxEXPORT_SYMBOL_GPL0x1697fe27xfrm6_tunnel_spi_lookupnet/ipv6/xfrm6_tunnelEXPORT_SYMBOL0xe1fedde8cx231xx_dev_initdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x89d9444ecma3000_exitdrivers/input/misc/cma3000_d0xEXPORT_SYMBOL0x3b25ad71cma3000_initdrivers/input/misc/cma3000_d0xEXPORT_SYMBOL0x8aa57d1anetpoll_cleanupvmlinuxEXPORT_SYMBOL0x08985072USBC_ConfigFIFO_BasevmlinuxEXPORT_SYMBOL0xbf150579scsi_ioctlvmlinuxEXPORT_SYMBOL0x7da030a4qtree_read_dquotvmlinuxEXPORT_SYMBOL0x8583e648set_binfmtvmlinuxEXPORT_SYMBOL0x5a113da8sparse_keymap_entry_from_keycodedrivers/input/sparse-keymapEXPORT_SYMBOL0x10a41e99km_policy_expiredvmlinuxEXPORT_SYMBOL0x9e4faeefdm_io_client_destroyvmlinuxEXPORT_SYMBOL0xfb3f4b38spi_unregister_mastervmlinuxEXPORT_SYMBOL_GPL0xae973946__first_cpuvmlinuxEXPORT_SYMBOL0xb2fcf6daelv_rb_findvmlinuxEXPORT_SYMBOL0xde4fc950fscache_object_work_funcvmlinuxEXPORT_SYMBOL0x2869ebafregulator_bulk_force_disablevmlinuxEXPORT_SYMBOL_GPL0xbee90f2f__kfifo_out_peek_rvmlinuxEXPORT_SYMBOL0x2d0f99e5print_ssidnet/wireless/lib80211EXPORT_SYMBOL0x39843267cx231xx_uninit_bulkdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xe5867808dlci_ioctl_setvmlinuxEXPORT_SYMBOL0x5958fec4v4l2_subdev_initvmlinuxEXPORT_SYMBOL0x2bb8a4d3crypto_alg_lookupvmlinuxEXPORT_SYMBOL_GPL0x096a4660macvlan_common_setupdrivers/net/macvlanEXPORT_SYMBOL_GPL0xa87e018edrm_mode_create_dirty_info_propertydrivers/gpu/drm/drmEXPORT_SYMBOL0x9af9b636__rpc_wait_for_completion_taskvmlinuxEXPORT_SYMBOL_GPL0xdc77e883scsi_report_device_resetvmlinuxEXPORT_SYMBOL0x117e01e3scsi_print_sensevmlinuxEXPORT_SYMBOL0x50248842locks_free_lockvmlinuxEXPORT_SYMBOL0xe141294aip_set_get_ip4_portnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xa56ba089ip_set_get_ip6_portnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x0b9d21f1core_alua_check_nonop_delaydrivers/target/target_core_modEXPORT_SYMBOL0xf534fc24ssb_bus_suspenddrivers/ssb/ssbEXPORT_SYMBOL0x2a4dd711osduld_put_devicedrivers/scsi/osd/osdEXPORT_SYMBOL0x2125f5dbdib0090_set_dc_servodrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xcee69495btmrvl_enable_psdrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x378a1bb9snd_soc_jack_notifier_registervmlinuxEXPORT_SYMBOL_GPL0x5613e46bregister_sound_mixervmlinuxEXPORT_SYMBOL0x3f568837mmc_regulator_set_ocrvmlinuxEXPORT_SYMBOL0xa8f675b0simple_attr_releasevmlinuxEXPORT_SYMBOL_GPL0x44940c3dasync_wrap_skbnet/irda/irdaEXPORT_SYMBOL0xa2cac209rt2x00usb_flush_queuedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xbef7d6aai2c_connect_clientdrivers/input/touchscreen/goodix_touchEXPORT_SYMBOL0x7692c567cfg80211_wext_giwretryvmlinuxEXPORT_SYMBOL_GPL0xaa20c27eusb_submit_urbvmlinuxEXPORT_SYMBOL_GPL0xd49bf407ata_link_abortvmlinuxEXPORT_SYMBOL_GPL0x44b430c0bio_integrity_advancevmlinuxEXPORT_SYMBOL0xec26befarename_lockvmlinuxEXPORT_SYMBOL0x4cc5f046page_symlink_inode_operationsvmlinuxEXPORT_SYMBOL0xb8ea6565_raw_write_unlock_bhvmlinuxEXPORT_SYMBOL0x060ea2d6kstrtoullvmlinuxEXPORT_SYMBOL0x5ac15baekstrtou16vmlinuxEXPORT_SYMBOL0x51a81222jbd2_inode_cachevmlinuxEXPORT_SYMBOL0x94961283vunmapvmlinuxEXPORT_SYMBOL0x081380cawrite_cache_pagesvmlinuxEXPORT_SYMBOL0x0ca54fee_test_and_set_bitvmlinuxEXPORT_SYMBOL0xaf5e211cnf_conntrack_l4proto_tcp6net/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x922a8d14xfrm_policy_allocvmlinuxEXPORT_SYMBOL0xc7321c75led_blink_setvmlinuxEXPORT_SYMBOL0x1ba03fe3dw_spi_suspend_hostvmlinuxEXPORT_SYMBOL_GPL0xe5c78a99do_blank_screenvmlinuxEXPORT_SYMBOL0x1d8ef21f__nf_ct_ext_addnet/netfilter/nf_conntrackEXPORT_SYMBOL0x2ed73a7ahci_conn_change_link_keynet/bluetooth/bluetoothEXPORT_SYMBOL0x5b32f2a0mtd_del_partitiondrivers/mtd/mtdEXPORT_SYMBOL_GPL0x001937fedvb_dmx_swfilterdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xd2c8f99acfg80211_remain_on_channel_expiredvmlinuxEXPORT_SYMBOL0x3b9ab6bdsk_prot_clear_portaddr_nullsvmlinuxEXPORT_SYMBOL0xdd8c05b9single_open_netvmlinuxEXPORT_SYMBOL_GPL0xcdc5f7feset_page_dirty_lockvmlinuxEXPORT_SYMBOL0xc19ac244l2tp_session_find_nthnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x6516c0b5fcoe_ctlr_link_downdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x5562f935get_mtd_devicedrivers/mtd/mtdEXPORT_SYMBOL_GPL0xbf9bd446cache_unregister_netvmlinuxEXPORT_SYMBOL_GPL0x6096aff4tcp_v4_conn_requestvmlinuxEXPORT_SYMBOL0x0f030d22snd_soc_codec_volatile_registervmlinuxEXPORT_SYMBOL_GPL0xb0b32efacpufreq_frequency_table_cpuinfovmlinuxEXPORT_SYMBOL_GPL0x1a534ac3usb_get_descriptorvmlinuxEXPORT_SYMBOL_GPL0x67c70114spi_async_lockedvmlinuxEXPORT_SYMBOL_GPL0x34a4b6f8ata_sas_port_allocvmlinuxEXPORT_SYMBOL_GPL0xcccb8202ata_port_abortvmlinuxEXPORT_SYMBOL_GPL0x854f8f52blk_rq_initvmlinuxEXPORT_SYMBOL0x26e76fb8sysctl_udp_wmem_minvmlinuxEXPORT_SYMBOL0xed17263dtcp_v4_syn_recv_sockvmlinuxEXPORT_SYMBOL0x78bde977usb_put_devvmlinuxEXPORT_SYMBOL_GPL0xdb2178c7__sg_free_tablevmlinuxEXPORT_SYMBOL0x37f34ae6kmem_cache_shrinkvmlinuxEXPORT_SYMBOL0x919029aa__readwrite_bugvmlinuxEXPORT_SYMBOL0x6e110793lib80211_register_crypto_opsnet/wireless/lib80211EXPORT_SYMBOL0xa7587646crc7lib/crc7EXPORT_SYMBOL0x6d563faascsi_tgt_alloc_queuedrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x83411d45ap6210_gpio_wifi_powerdrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0x10d9d048icmp_err_convertvmlinuxEXPORT_SYMBOL0x601f665fdm_io_client_createvmlinuxEXPORT_SYMBOL0x9264216dmii_check_linkvmlinuxEXPORT_SYMBOL0x738116b2dma_common_mmapvmlinuxEXPORT_SYMBOL0xf087137d__dynamic_pr_debugvmlinuxEXPORT_SYMBOL0x68aeb144blkio_policy_registervmlinuxEXPORT_SYMBOL_GPL0x96cbcf31pm_qos_add_notifiervmlinuxEXPORT_SYMBOL_GPL0x1072a394csum_partial_copy_from_uservmlinuxEXPORT_SYMBOL0x2ccf6b60inet_diag_dump_one_icsknet/ipv4/inet_diagEXPORT_SYMBOL_GPL0xe7f4292amtd_is_lockeddrivers/mtd/mtdEXPORT_SYMBOL_GPL0xa45fbf47tea5761_attachdrivers/media/common/tuners/tea5761EXPORT_SYMBOL_GPL0xf1259614tcp_hashinfovmlinuxEXPORT_SYMBOL0x2d140a58genl_unlockvmlinuxEXPORT_SYMBOL0x173c03e4hid_report_raw_eventvmlinuxEXPORT_SYMBOL_GPL0xdb2fc4e9scsi_unregistervmlinuxEXPORT_SYMBOL0xb6e2b9b4dma_buf_begin_cpu_accessvmlinuxEXPORT_SYMBOL_GPL0xcf628151crypto_aead_setauthsizevmlinuxEXPORT_SYMBOL_GPL0x8f7f3cd6nlmclnt_initvmlinuxEXPORT_SYMBOL_GPL0xa80cb192fd_installvmlinuxEXPORT_SYMBOL0xee3b5c62_raw_read_lock_bhvmlinuxEXPORT_SYMBOL0x6ea714abnf_nat_used_tuplenet/ipv4/netfilter/nf_natEXPORT_SYMBOL0x275ba2e0nf_nat_packetnet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0x5475cc48parport_releasedrivers/parport/parportEXPORT_SYMBOL0xebcc64a4dm_bufio_get_block_datadrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xac84e060sunximmc_rescan_cardvmlinuxEXPORT_SYMBOL_GPL0x237f90c1USBC_Host_ClearEpDmavmlinuxEXPORT_SYMBOL0xb46fdf28USBC_Host_ClearEpCSRvmlinuxEXPORT_SYMBOL0x9c0e7532scsi_internal_device_unblockvmlinuxEXPORT_SYMBOL_GPL0x8897abb4blk_init_tagsvmlinuxEXPORT_SYMBOL0x08445f27vfs_fsync_rangevmlinuxEXPORT_SYMBOL0x3ce4ca6fdisable_irqvmlinuxEXPORT_SYMBOL0x87754115raw_notifier_chain_registervmlinuxEXPORT_SYMBOL_GPL0x96821171usb_ftdi_elan_edset_inputdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x7dbada9dtransport_set_vpd_ident_typedrivers/target/target_core_modEXPORT_SYMBOL0xef57dd65iscsi_tcp_hdr_recv_prepdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x5165e4fev4l2_ctrl_g_ctrlvmlinuxEXPORT_SYMBOL0x652a8404cdrom_get_media_eventvmlinuxEXPORT_SYMBOL0xe73f01ebscsi_host_allocvmlinuxEXPORT_SYMBOL0x7f5745c3bus_get_device_klistvmlinuxEXPORT_SYMBOL_GPL0x8aac9691sysfs_remove_filevmlinuxEXPORT_SYMBOL_GPL0x704b5ee1path_putvmlinuxEXPORT_SYMBOL0xdbb515caapply_to_page_rangevmlinuxEXPORT_SYMBOL_GPL0xa0ceef51out_of_line_wait_on_bitvmlinuxEXPORT_SYMBOL0x464bbd67fc_remote_port_deletedrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x0763a92edrm_irq_uninstalldrivers/gpu/drm/drmEXPORT_SYMBOL0x72d89f81tcp_vegas_statevmlinuxEXPORT_SYMBOL_GPL0xc2f2458edst_discardvmlinuxEXPORT_SYMBOL0xeebd9de0snd_soc_dapm_put_value_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xe2e9aaeesnd_soc_dapm_get_value_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xaa2a72bf__iowrite64_copyvmlinuxEXPORT_SYMBOL_GPL0x8bc18ba9invalidate_partitionvmlinuxEXPORT_SYMBOL0x0f9e6d2dkick_processvmlinuxEXPORT_SYMBOL_GPL0x6ccf7bd7__pv_phys_offsetvmlinuxEXPORT_SYMBOL0xd9521dbcfbtft_unregister_backlightdrivers/video/fbtft/fbtftEXPORT_SYMBOL0x349a1dbfdib0090_get_current_gaindrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x18fc3399sk_release_kernelvmlinuxEXPORT_SYMBOL0x3686ea09spi_print_msgvmlinuxEXPORT_SYMBOL0x8a495cdesg_miter_stopvmlinuxEXPORT_SYMBOL0x4001c100bsg_request_fnvmlinuxEXPORT_SYMBOL_GPL0x0b2f5a39key_reject_and_linkvmlinuxEXPORT_SYMBOL0x6d28bc3bjbd2_journal_init_jbd_inodevmlinuxEXPORT_SYMBOL0xb368ec89_raw_spin_unlock_bhvmlinuxEXPORT_SYMBOL0x7b77e614xt_proto_initnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xdd1c65f6blk_finish_plugvmlinuxEXPORT_SYMBOL0x4fd684c4fscache_put_operationvmlinuxEXPORT_SYMBOL0x0b1beb31vmalloc_32_uservmlinuxEXPORT_SYMBOL0x63222b29smsclient_sendrequestdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x7401ad55drm_master_putdrivers/gpu/drm/drmEXPORT_SYMBOL0xe6ab72a6ipmi_set_my_LUNdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x83e3ce73ping_recvmsgvmlinuxEXPORT_SYMBOL_GPL0xfea5399esata_pmp_qc_defer_cmd_switchvmlinuxEXPORT_SYMBOL_GPL0xd32fe193ata_scsi_change_queue_depthvmlinuxEXPORT_SYMBOL_GPL0x039fe181target_submit_tmrdrivers/target/target_core_modEXPORT_SYMBOL0xb5457203c2port_device_unregisterdrivers/misc/c2port/coreEXPORT_SYMBOL0x878ab3cesysctl_tcp_adv_win_scalevmlinuxEXPORT_SYMBOL0xd861ee79ip_local_outvmlinuxEXPORT_SYMBOL_GPL0x88abd4bcUSBC_Dev_Ctrl_ClearSetupEndvmlinuxEXPORT_SYMBOL0x99d8f62bUSBC_EnableUsbLineStateBypassvmlinuxEXPORT_SYMBOL0x66207076usb_hcd_check_unlink_urbvmlinuxEXPORT_SYMBOL_GPL0xc2315869phy_device_freevmlinuxEXPORT_SYMBOL0xc5e9b912regcache_cache_bypassvmlinuxEXPORT_SYMBOL_GPL0xe6d398c4generic_permissionvmlinuxEXPORT_SYMBOL0xc6592668hostap_set_hostapddrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xd44deb1cath9k_hw_putrxbufdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x97b5a539ath9k_hw_puttxbufdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xdf2877d7usbnet_opendrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xd59668e6unlock_flocksvmlinuxEXPORT_SYMBOL_GPL0x345a7e62irlap_opennet/irda/irdaEXPORT_SYMBOL0x7127aa9eiriap_opennet/irda/irdaEXPORT_SYMBOL0x55390cc1fc_get_host_statsdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xccb8a413cx2341x_handler_set_busydrivers/media/video/cx2341xEXPORT_SYMBOL0x17705447snd_ctl_notifyvmlinuxEXPORT_SYMBOL0x500789f8uart_get_baud_ratevmlinuxEXPORT_SYMBOL0x9d3aa376blk_iopoll_initvmlinuxEXPORT_SYMBOL0x892b8accatomic_notifier_chain_unregistervmlinuxEXPORT_SYMBOL_GPL0x838d75a9irlap_closenet/irda/irdaEXPORT_SYMBOL0xa48dbb29iriap_closenet/irda/irdaEXPORT_SYMBOL0x0ff34320hostap_init_procdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xd2f7f390usbnet_disconnectdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x2e730a21dm_bm_checksumdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xec4aadf6drm_framebuffer_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x5d6fb269secpath_dupvmlinuxEXPORT_SYMBOL0x5a036ddfsnd_pcm_hw_constraint_stepvmlinuxEXPORT_SYMBOL0x0fac68d7media_device_unregister_entityvmlinuxEXPORT_SYMBOL_GPL0x9086025dUSBC_GetOtgMode_Form_IDvmlinuxEXPORT_SYMBOL0x51970621set_user_nicevmlinuxEXPORT_SYMBOL0x4caa59e5dibx000_i2c_set_speeddrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0x7fe1a403cfg80211_find_ievmlinuxEXPORT_SYMBOL0x156cc6aagss_pseudoflavor_to_servicevmlinuxEXPORT_SYMBOL_GPL0xe5d5b479w1_register_familyvmlinuxEXPORT_SYMBOL0xa8c0f48esplice_direct_to_actorvmlinuxEXPORT_SYMBOL0xb5cb8145hrtimer_get_resvmlinuxEXPORT_SYMBOL_GPL0xd0cd5eb3nf_nat_pptp_hook_inboundnet/netfilter/nf_conntrack_pptpEXPORT_SYMBOL_GPL0x97585f87nf_conntrack_l3proto_unregisternet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x6d1483d9nf_conntrack_l4proto_unregisternet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x2b9da7a4genl_lockvmlinuxEXPORT_SYMBOL0x2b1deb21sock_setsockoptvmlinuxEXPORT_SYMBOL0x865999bbtty_port_close_startvmlinuxEXPORT_SYMBOL0x0b6c1ea3fb_find_modevmlinuxEXPORT_SYMBOL0xd0cb852fida_simple_removevmlinuxEXPORT_SYMBOL0x80296bdcunlock_buffervmlinuxEXPORT_SYMBOL0xd5ef1c78simple_transaction_releasevmlinuxEXPORT_SYMBOL0xa5b336b7nfulnl_log_packetnet/netfilter/nfnetlink_logEXPORT_SYMBOL_GPL0x85aa880ctransport_set_vpd_assocdrivers/target/target_core_modEXPORT_SYMBOL0x4ce50085sas_get_fabric_proto_identdrivers/target/target_core_modEXPORT_SYMBOL0x501f8690sas_queuecommanddrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x01010c6dklist_add_beforevmlinuxEXPORT_SYMBOL_GPL0x842c5ef5subsys_find_device_by_idvmlinuxEXPORT_SYMBOL_GPL0x9cb317efcrypto_attr_alg2vmlinuxEXPORT_SYMBOL_GPL0x9576ff61nfs_commit_freevmlinuxEXPORT_SYMBOL_GPL0x1176e07f__per_cpu_offsetvmlinuxEXPORT_SYMBOL0xddf10b0fset_sig_addr_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x6ef3f010ieee80211_remain_on_channel_expirednet/mac80211/mac80211EXPORT_SYMBOL_GPL0xd8f27d57drm_crtc_helper_set_modedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x2f263cb8tpm_show_enableddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xc765aae5proto_registervmlinuxEXPORT_SYMBOL0x8254d104rtc_irq_unregistervmlinuxEXPORT_SYMBOL_GPL0xa06bef32USBC_OTG_SelectModevmlinuxEXPORT_SYMBOL0x13dc006ctty_wakeupvmlinuxEXPORT_SYMBOL_GPL0x4ccd7384blkcg_get_weightvmlinuxEXPORT_SYMBOL_GPL0x422ee26esmscore_start_devicedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xd6d5032bflexcop_wan_set_speeddrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0xd5aa0961drm_plane_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x45d216b9tcp_put_md5sig_poolvmlinuxEXPORT_SYMBOL0xa0a6c392USBC_DisableDpDmChangevmlinuxEXPORT_SYMBOL0xbd791affcheck_disk_size_changevmlinuxEXPORT_SYMBOL0x07ac290ad_clear_need_lookupvmlinuxEXPORT_SYMBOL0xdbacc67cdown_readvmlinuxEXPORT_SYMBOL0x7fd3266dscript_parser_mainkey_get_gpio_cfgvmlinuxEXPORT_SYMBOL0xdc209e6esas_phy_resetdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xa1cb8119rt2800_disable_radiodrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x1c0f8a09km_reportvmlinuxEXPORT_SYMBOL0x9e2c27c5__napi_completevmlinuxEXPORT_SYMBOL0xf9ffd5b1skb_copy_expandvmlinuxEXPORT_SYMBOL0xabd0c91crtc_time_to_tmvmlinuxEXPORT_SYMBOL0xde6cdea5USBC_DisableWakeIrqvmlinuxEXPORT_SYMBOL0xdde69784dmam_free_coherentvmlinuxEXPORT_SYMBOL0x9cdace4ftransport_setup_devicevmlinuxEXPORT_SYMBOL_GPL0x950ee7d1fb_find_logovmlinuxEXPORT_SYMBOL_GPL0x4b7883dcblk_queue_softirq_donevmlinuxEXPORT_SYMBOL0xb50a0721d_lookupvmlinuxEXPORT_SYMBOL0x8536de99iio_map_array_registerdrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xa5244cb4ubi_leb_changedrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xbf9ac4eegenl_unregister_mc_groupvmlinuxEXPORT_SYMBOL0xf811e69dscsi_eh_flush_done_qvmlinuxEXPORT_SYMBOL0xa582bf15path_is_undervmlinuxEXPORT_SYMBOL0x301f6f2bxt_hook_unlinknet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x179b51f8transport_wait_for_tasksdrivers/target/target_core_modEXPORT_SYMBOL0xfe79feedath9k_hw_setantennadrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x65028277drm_mode_equaldrivers/gpu/drm/drmEXPORT_SYMBOL0x8b7cf49bskb_morphvmlinuxEXPORT_SYMBOL_GPL0xcba2bb2fmmc_erasevmlinuxEXPORT_SYMBOL0x7c46233acpufreq_quick_getvmlinuxEXPORT_SYMBOL0x0d622271dm_underlying_device_busyvmlinuxEXPORT_SYMBOL_GPL0x2a4fcf97v4l2_ctrl_s_ctrlvmlinuxEXPORT_SYMBOL0xac938f79serio_unregister_portvmlinuxEXPORT_SYMBOL0x8294c29cpercpu_counter_setvmlinuxEXPORT_SYMBOL0x33c4686ctransport_generic_handle_tmrdrivers/target/target_core_modEXPORT_SYMBOL0x1670f8fafc_exch_mgr_resetdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x7188bc2advb_ringbuffer_readdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x6c6cfa68klist_add_headvmlinuxEXPORT_SYMBOL_GPL0x68a24153snd_pcm_format_physical_widthvmlinuxEXPORT_SYMBOL0x96b085desw_hcd_platform_try_idlevmlinuxEXPORT_SYMBOL0x3535d361scsi_remove_hostvmlinuxEXPORT_SYMBOL0xb6822a33radix_tree_gang_lookup_tagvmlinuxEXPORT_SYMBOL0xdc698efdflush_dcache_pagevmlinuxEXPORT_SYMBOL0x2d6507b5_find_next_zero_bit_levmlinuxEXPORT_SYMBOL0x7563b2f8iscsi_eh_target_resetdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x7ff0ce6advb_pll_attachdrivers/media/dvb/frontends/dvb-pllEXPORT_SYMBOL0x01d2f9acdm_rh_recovery_startdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x36c5f218snd_soc_suspendvmlinuxEXPORT_SYMBOL_GPL0x5ab8145dv4l2_querymenuvmlinuxEXPORT_SYMBOL0x0b58ccd9scsi_is_host_devicevmlinuxEXPORT_SYMBOL0x644429b7devm_ioremap_nocachevmlinuxEXPORT_SYMBOL0x3e9d0f45sync_dirty_buffervmlinuxEXPORT_SYMBOL0x53e7a021ebt_register_tablenet/bridge/netfilter/ebtablesEXPORT_SYMBOL0x91c9a325bt_to_errnonet/bluetooth/bluetoothEXPORT_SYMBOL0x3d003633cx2341x_handler_initdrivers/media/video/cx2341xEXPORT_SYMBOL0xf1421d13drm_mode_sortdrivers/gpu/drm/drmEXPORT_SYMBOL0x834fc493tcp_reno_ssthreshvmlinuxEXPORT_SYMBOL_GPL0x1de472b1netlink_has_listenersvmlinuxEXPORT_SYMBOL_GPL0xe244fbdcUSBC_Dev_IsReadDataReadyvmlinuxEXPORT_SYMBOL0xe075d6ebiter_div_u64_remvmlinuxEXPORT_SYMBOL0x235d7d58dma_supportedvmlinuxEXPORT_SYMBOL0xef7f2b8enf_nat_seq_adjust_hooknet/ipv4/netfilter/nf_conntrack_ipv4EXPORT_SYMBOL_GPL0x1b7f7e39usbip_event_adddrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x4b0e955brt2800_reset_tunerdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xa4ed6cd8ath9k_hw_releasetxqueuedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x532dfd58drm_mm_search_freedrivers/gpu/drm/drmEXPORT_SYMBOL0x3586c18busb_alloc_urbvmlinuxEXPORT_SYMBOL_GPL0x0b1ef679spi_setupvmlinuxEXPORT_SYMBOL_GPL0xbb6cf04finode_init_oncevmlinuxEXPORT_SYMBOL0x0529d0c3__srcu_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0xfab3b162hci_conn_put_devicenet/bluetooth/bluetoothEXPORT_SYMBOL0x4a48d81craid6_datap_recovlib/raid6/raid6_pqEXPORT_SYMBOL_GPL0x46cb900aiio_bus_typedrivers/staging/iio/industrialioEXPORT_SYMBOL0x147a3f0bap6210_gpio_wifi_get_mod_typedrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0xa74e0143ad714x_disabledrivers/input/misc/ad714xEXPORT_SYMBOL0xab84f08anf_ip6_checksumvmlinuxEXPORT_SYMBOL0xb03a4d57netpoll_send_skb_on_devvmlinuxEXPORT_SYMBOL0x980c873cdevice_movevmlinuxEXPORT_SYMBOL_GPL0x21581561scsi_cmd_ioctlvmlinuxEXPORT_SYMBOL0xa6bf355aasync_unwrap_charnet/irda/irdaEXPORT_SYMBOL0xe9b8d4edrt2x00usb_initializedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xdc920e61alloc_can_err_skbdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x256a2d16mtd_block_isbaddrivers/mtd/mtdEXPORT_SYMBOL_GPL0xd32479bcdm_sm_checker_createdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xd915fb2fdrm_core_ioremapfreedrivers/gpu/drm/drmEXPORT_SYMBOL0xd340b1c1tcp_md5_do_delvmlinuxEXPORT_SYMBOL0xd0d9264dneigh_seq_stopvmlinuxEXPORT_SYMBOL0x30792032snd_soc_dai_set_pllvmlinuxEXPORT_SYMBOL_GPL0x55c4ad2busb_stor_clear_haltvmlinuxEXPORT_SYMBOL_GPL0x0f4c91edns_to_timespecvmlinuxEXPORT_SYMBOL0xed93f29e__kunmap_atomicvmlinuxEXPORT_SYMBOL0xf60f1bdatarget_put_sess_cmddrivers/target/target_core_modEXPORT_SYMBOL0xb18aa884target_get_sess_cmddrivers/target/target_core_modEXPORT_SYMBOL0x9e5b9386nand_bch_initdrivers/mtd/nand/nand_bchEXPORT_SYMBOL0xe0f67d23mtd_read_user_prot_regdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xa2e4fc97mtd_get_user_prot_infodrivers/mtd/mtdEXPORT_SYMBOL_GPL0x346127a7drm_global_item_refdrivers/gpu/drm/drmEXPORT_SYMBOL0x4408de5cdrm_framebuffer_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0xbca707c4rpc_pipefs_notifier_unregistervmlinuxEXPORT_SYMBOL_GPL0xf761386edev_mc_del_globalvmlinuxEXPORT_SYMBOL0xe21d7db3dev_mc_add_globalvmlinuxEXPORT_SYMBOL0xc13c2986USBC_Host_QueryTransferModevmlinuxEXPORT_SYMBOL0x99525e3avfsmount_lock_local_unlockvmlinuxEXPORT_SYMBOL0x93d8b1efblocking_notifier_chain_unregistervmlinuxEXPORT_SYMBOL_GPL0xa1138c6clibfc_vport_createdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x839e4e78lbs_add_carddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x86eada33mfd_cell_enabledrivers/mfd/mfd-coreEXPORT_SYMBOL0x2b3ea9dadrm_vblank_count_and_timedrivers/gpu/drm/drmEXPORT_SYMBOL0x273fe7b2neigh_table_initvmlinuxEXPORT_SYMBOL0x46722934mmc_register_drivervmlinuxEXPORT_SYMBOL0x8d22ced5cpuidle_register_devicevmlinuxEXPORT_SYMBOL_GPL0x38a9c2c7input_ff_effect_from_uservmlinuxEXPORT_SYMBOL_GPL0xdbdaed77attribute_container_registervmlinuxEXPORT_SYMBOL_GPL0xf433d0efblk_queue_segment_boundaryvmlinuxEXPORT_SYMBOL0xf8987b12blk_stop_queuevmlinuxEXPORT_SYMBOL0xeccfe02eblkcipher_walk_virt_blockvmlinuxEXPORT_SYMBOL_GPL0x3cc6d480sysfs_create_linkvmlinuxEXPORT_SYMBOL_GPL0x3b59f641task_active_pid_nsvmlinuxEXPORT_SYMBOL_GPL0xffa7dc6dsunxi_chip_idvmlinuxEXPORT_SYMBOL0x59457776nf_nat_proto_nlattr_to_rangenet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0x1e6d5a13lc_seq_dump_detailslib/lru_cacheEXPORT_SYMBOL0xfcb77cfdipmi_free_recv_msgdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xd9f0bf0csvc_set_clientvmlinuxEXPORT_SYMBOL_GPL0x5f9e2086inetpeer_invalidate_treevmlinuxEXPORT_SYMBOL0xbb15a858power_supply_powersvmlinuxEXPORT_SYMBOL_GPL0x6d294e43clock_t_to_jiffiesvmlinuxEXPORT_SYMBOL0x0cebabb4ip_vs_nfct_expect_relatednet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x4158b260cx231xx_init_bulkdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xec06c7a8drm_prime_remove_imported_buf_handledrivers/gpu/drm/drmEXPORT_SYMBOL0xdbb5a9f5drm_ht_remove_itemdrivers/gpu/drm/drmEXPORT_SYMBOL0x6d29b7ccdrm_vblank_offdrivers/gpu/drm/drmEXPORT_SYMBOL0x08102ddedrm_vblank_getdrivers/gpu/drm/drmEXPORT_SYMBOL0xe97f4ce5qword_getvmlinuxEXPORT_SYMBOL_GPL0x7668b803snd_pcm_lib_preallocate_pages_for_allvmlinuxEXPORT_SYMBOL0x8ce2e32dcrypto_larval_allocvmlinuxEXPORT_SYMBOL_GPL0x748b1180journal_revokevmlinuxEXPORT_SYMBOL0xf2d57599seq_releasevmlinuxEXPORT_SYMBOL0x537d3be6insert_inode_lockedvmlinuxEXPORT_SYMBOL0xf05426bfmodule_layoutvmlinuxEXPORT_SYMBOL0xce45a6f1raid6_gfexilib/raid6/raid6_pqEXPORT_SYMBOL0xacb7478eosd_req_list_dev_partitionsdrivers/scsi/osd/libosdEXPORT_SYMBOL0xd72c183eparport_register_driverdrivers/parport/parportEXPORT_SYMBOL0x2c463973hidinput_disconnectvmlinuxEXPORT_SYMBOL_GPL0xea27fb13qtree_entry_unusedvmlinuxEXPORT_SYMBOL0xcc1fb551baswapnet/bluetooth/bluetoothEXPORT_SYMBOL0x0c1e6385tun_get_socketdrivers/net/tunEXPORT_SYMBOL_GPL0xd6c35b39onenand_releasedrivers/mtd/onenand/onenandEXPORT_SYMBOL_GPL0x0f376638dm_snap_origindrivers/md/dm-snapshotEXPORT_SYMBOL0x3d388324dpm_resume_endvmlinuxEXPORT_SYMBOL_GPL0x35e58c16__blk_put_requestvmlinuxEXPORT_SYMBOL_GPL0x95e3a9e5elv_rb_latter_requestvmlinuxEXPORT_SYMBOL0xcf451fc1sysfs_create_bin_filevmlinuxEXPORT_SYMBOL_GPL0x66b2a859nr_free_buffer_pagesvmlinuxEXPORT_SYMBOL_GPL0xfdb11589cgroup_taskset_nextvmlinuxEXPORT_SYMBOL_GPL0x829c60aert2800_ampdu_actiondrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xda0e10abklist_initvmlinuxEXPORT_SYMBOL_GPL0xf0766633xfrm_state_unregister_afinfovmlinuxEXPORT_SYMBOL0xa6f4e8d3snd_card_unrefvmlinuxEXPORT_SYMBOL0xf9175ab1dm_noflush_suspendingvmlinuxEXPORT_SYMBOL_GPL0xd2450939USBC_DisableVbusChangevmlinuxEXPORT_SYMBOL0x6cab4742serial8250_do_pmvmlinuxEXPORT_SYMBOL0x6cdc5c6bnla_strlcpyvmlinuxEXPORT_SYMBOL0xa46f2f1bkstrtouintvmlinuxEXPORT_SYMBOL0x6fd9212ablk_init_queue_nodevmlinuxEXPORT_SYMBOL0x79d03257up_writevmlinuxEXPORT_SYMBOL0x7665e61ccpu_all_bitsvmlinuxEXPORT_SYMBOL0x4bfca474drm_mm_put_blockdrivers/gpu/drm/drmEXPORT_SYMBOL0x53dbd8f1auth_domain_putvmlinuxEXPORT_SYMBOL_GPL0xdcf64c05snd_rawmidi_kernel_openvmlinuxEXPORT_SYMBOL0x40535bf9cpufreq_cpu_putvmlinuxEXPORT_SYMBOL_GPL0x7f1f0035cpufreq_cpu_getvmlinuxEXPORT_SYMBOL_GPL0xa63d85abslhc_remembervmlinuxEXPORT_SYMBOL0x2aab83f1scsi_target_blockvmlinuxEXPORT_SYMBOL_GPL0x2f3e16b2scsi_prep_state_checkvmlinuxEXPORT_SYMBOL0x5d1baa7efree_buffer_headvmlinuxEXPORT_SYMBOL0xba0425f1fgetvmlinuxEXPORT_SYMBOL0xbfa13d31can_sendnet/can/canEXPORT_SYMBOL0xebc73227iscsi_complete_pdudrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x8a7a19cffc_queuecommanddrivers/scsi/libfc/libfcEXPORT_SYMBOL0xd6226f14rt2800_wait_csr_readydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x8fb3f539snd_ctl_boolean_mono_infovmlinuxEXPORT_SYMBOL0xfa1eb910unregister_syscore_opsvmlinuxEXPORT_SYMBOL_GPL0x049661c6jbd2_log_start_commitvmlinuxEXPORT_SYMBOL0xecafeedflib80211_crypt_info_freenet/wireless/lib80211EXPORT_SYMBOL0x9d8f139asnd_soc_of_parse_card_namevmlinuxEXPORT_SYMBOL_GPL0x706b3a33cpufreq_frequency_table_get_attrvmlinuxEXPORT_SYMBOL_GPL0x9951b92dusb_put_transceivervmlinuxEXPORT_SYMBOL0x44e9a829match_tokenvmlinuxEXPORT_SYMBOL0x5504a9d7jbd2_journal_abortvmlinuxEXPORT_SYMBOL0xb8fa6c49vmtruncatevmlinuxEXPORT_SYMBOL0x74bd46a4down_writevmlinuxEXPORT_SYMBOL0x504d74ecdibusb_power_ctrldrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x5a980855drm_prime_pages_to_sgdrivers/gpu/drm/drmEXPORT_SYMBOL0x09c64fbdieee80211_frequency_to_channelvmlinuxEXPORT_SYMBOL0x12e99932ip_route_output_flowvmlinuxEXPORT_SYMBOL_GPL0x3c9e13c1snd_soc_add_card_controlsvmlinuxEXPORT_SYMBOL_GPL0x1b9e0ff1scsilun_to_intvmlinuxEXPORT_SYMBOL0xb9d3f5e9key_type_logonvmlinuxEXPORT_SYMBOL_GPL0xa8440bd0posix_test_lockvmlinuxEXPORT_SYMBOL0xfbd6d016kill_block_supervmlinuxEXPORT_SYMBOL0x7aba19dfflush_signalsvmlinuxEXPORT_SYMBOL0x6bc20f93nf_ct_remove_expectationsnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x0e3d0216ceph_calc_object_layoutnet/ceph/libcephEXPORT_SYMBOL0x4e2481d5ath_is_world_regddrivers/net/wireless/ath/athEXPORT_SYMBOL0x8c8bcc32neigh_lookup_nodevvmlinuxEXPORT_SYMBOL0x23595b6dkernel_setsockoptvmlinuxEXPORT_SYMBOL0x24fe7ebekernel_getsockoptvmlinuxEXPORT_SYMBOL0xf65991f9kernel_sock_ioctlvmlinuxEXPORT_SYMBOL0xc9281fc9sw_hcd_h_stopvmlinuxEXPORT_SYMBOL0x9dbb42b1USBC_EnterMode_Test_JvmlinuxEXPORT_SYMBOL0x39b06eaausb_stor_disconnectvmlinuxEXPORT_SYMBOL_GPL0x8ffdb3b8crc16vmlinuxEXPORT_SYMBOL0x3a131379dquot_operationsvmlinuxEXPORT_SYMBOL0xb43fb8bbmb_cache_entry_insertvmlinuxEXPORT_SYMBOL0x1d6bd55akallsyms_on_each_symbolvmlinuxEXPORT_SYMBOL_GPL0xd2a8caf0work_on_cpuvmlinuxEXPORT_SYMBOL_GPL0x5e4dae30sunxi_find_property_fmtvmlinuxEXPORT_SYMBOL_GPL0x2d67fe1bnfnetlink_unicastnet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x0af62d49nf_tproxy_assign_socknet/netfilter/nf_tproxy_coreEXPORT_SYMBOL_GPL0x11bcffb9rt2x00lib_pretbttdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x05bd5259drm_get_last_vbltimestampdrivers/gpu/drm/drmEXPORT_SYMBOL0x6f342d46dev_pm_qos_hide_latency_limitvmlinuxEXPORT_SYMBOL_GPL0xab694444bsearchvmlinuxEXPORT_SYMBOL0xd1a0c5bcblk_put_requestvmlinuxEXPORT_SYMBOL0x9f40a6d6async_synchronize_full_domainvmlinuxEXPORT_SYMBOL_GPL0xc514b0ffusb_serial_generic_throttledrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x54adac43usb_wwan_disconnectdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x8873a254iscsi_tcp_task_xmitdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xe1c847cear9003_paprd_enabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xd1705032dibusb2_0_streaming_ctrldrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0xcd75095fcdrom_mode_selectvmlinuxEXPORT_SYMBOL0x5eec9ebbcrypto_create_tfmvmlinuxEXPORT_SYMBOL_GPL0x664ba21fnf_conntrack_innet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x78b72f44usbip_debug_flagdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xe4031b1aiscsi_tcp_conn_setupdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x371a775drc_map_registerdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xc6d6d1a7drm_mode_removedrivers/gpu/drm/drmEXPORT_SYMBOL0x923e8ff9sock_queue_rcv_skbvmlinuxEXPORT_SYMBOL0x528f07c4snd_pcm_lib_preallocate_free_for_allvmlinuxEXPORT_SYMBOL0x35ca8cfadm_kcopyd_client_createvmlinuxEXPORT_SYMBOL0x38271205v4l2_fh_addvmlinuxEXPORT_SYMBOL_GPL0x571821fdsw_hcd_startvmlinuxEXPORT_SYMBOL0x1a3c2600ata_port_schedule_ehvmlinuxEXPORT_SYMBOL_GPL0xfcd35070blk_limits_io_minvmlinuxEXPORT_SYMBOL0xf8133354sysfs_remove_filesvmlinuxEXPORT_SYMBOL_GPL0x6162e6e7mapping_taggedvmlinuxEXPORT_SYMBOL0x67c2fa54__copy_to_uservmlinuxEXPORT_SYMBOL0x73a54e9a__transport_register_sessiondrivers/target/target_core_modEXPORT_SYMBOL0x63d7a5f7sas_get_pr_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0xfac52e90p54_rxdrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0xf0c21348ath9k_hw_set_gpiodrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x4573d59dusbnet_purge_paused_rxqdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x8119739drc_unregister_devicedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xe945cba9rpc_setbufsizevmlinuxEXPORT_SYMBOL_GPL0xb1f627f6unix_table_lockvmlinuxEXPORT_SYMBOL_GPL0x1572f077usbhid_set_ledsvmlinuxEXPORT_SYMBOL_GPL0x5810583aserio_interruptvmlinuxEXPORT_SYMBOL0xf6bb4729color_tablevmlinuxEXPORT_SYMBOL0xd22ad28aput_diskvmlinuxEXPORT_SYMBOL0x5533f96firq_find_hostvmlinuxEXPORT_SYMBOL_GPL0xbe2c0274add_timervmlinuxEXPORT_SYMBOL0x17347d6crxrpc_register_securitynet/rxrpc/af-rxrpcEXPORT_SYMBOL_GPL0x3683896fcan_proto_registernet/can/canEXPORT_SYMBOL0xd1e17568hid_allocate_devicevmlinuxEXPORT_SYMBOL_GPL0x8cfee18fmd_set_array_sectorsvmlinuxEXPORT_SYMBOL0xdb43a265spi_syncvmlinuxEXPORT_SYMBOL_GPL0x732b7833irq_cpu_rmap_addvmlinuxEXPORT_SYMBOL0x9ba7089dargv_splitvmlinuxEXPORT_SYMBOL0xc212a112_raw_spin_unlock_irqvmlinuxEXPORT_SYMBOL0x7df1ed16flexcop_dump_regdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x45c66f60drm_add_modes_noediddrivers/gpu/drm/drmEXPORT_SYMBOL0x3eae8431blk_queue_max_hw_sectorsvmlinuxEXPORT_SYMBOL0xb2a945e0hostap_dump_rx_headerdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xa12ad27fhostap_dump_tx_headerdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x44777adecfg80211_ref_bssvmlinuxEXPORT_SYMBOL0x31a89d59rpc_debugvmlinuxEXPORT_SYMBOL_GPL0x589e9aa3svc_xprt_enqueuevmlinuxEXPORT_SYMBOL_GPL0xe1fd91abbus_create_filevmlinuxEXPORT_SYMBOL_GPL0xbb8e51cbcrypto_aes_set_keyvmlinuxEXPORT_SYMBOL_GPL0x5086ac3aalg_testvmlinuxEXPORT_SYMBOL_GPL0x1350acacjbd2__journal_restartvmlinuxEXPORT_SYMBOL0xbef43296console_conditional_schedulevmlinuxEXPORT_SYMBOL0xa4851b3evb2_mmap_pfn_rangedrivers/media/video/videobuf2-memopsEXPORT_SYMBOL_GPL0xd1177164af_alg_acceptcrypto/af_algEXPORT_SYMBOL_GPL0xf7f9d76fsvc_destroyvmlinuxEXPORT_SYMBOL_GPL0x75585a27snd_unregister_devicevmlinuxEXPORT_SYMBOL0xc91759c4ata_scsi_cmd_error_handlervmlinuxEXPORT_SYMBOL0x4b0651ccblkdev_issue_discardvmlinuxEXPORT_SYMBOL0xd198806ccrypto_unregister_pcompvmlinuxEXPORT_SYMBOL_GPL0x282cd7c9debugfs_create_symlinkvmlinuxEXPORT_SYMBOL_GPL0x198c9619fat_detachvmlinuxEXPORT_SYMBOL_GPL0x5345d93a__fscache_update_cookievmlinuxEXPORT_SYMBOL0x357f1639xt_request_find_matchnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xa2529418iscsi_put_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x292cd7b6microtune_attachdrivers/media/common/tuners/mt20xxEXPORT_SYMBOL_GPL0x443fc8acdrm_ioctldrivers/gpu/drm/drmEXPORT_SYMBOL0x68858354blkiocg_add_blkio_groupvmlinuxEXPORT_SYMBOL_GPL0x2b1f3bf7writeback_inodes_sb_nr_if_idlevmlinuxEXPORT_SYMBOL0xc04f51a8xattr_getsecurityvmlinuxEXPORT_SYMBOL_GPL0x6228c21fsmp_call_function_singlevmlinuxEXPORT_SYMBOL0xae52b733cx231xx_demod_resetdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x368c5421dibusb2_0_power_ctrldrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x2803974edrm_mode_duplicatedrivers/gpu/drm/drmEXPORT_SYMBOL0x94b93976af_alg_wait_for_completioncrypto/af_algEXPORT_SYMBOL_GPL0x50211ee3tcp_free_md5sig_poolvmlinuxEXPORT_SYMBOL0x22435797axp_writevmlinuxEXPORT_SYMBOL_GPL0xc0580937rb_erasevmlinuxEXPORT_SYMBOL0x1dfac468can_proto_unregisternet/can/canEXPORT_SYMBOL0x7a32f5fbdrm_mm_get_block_range_genericdrivers/gpu/drm/drmEXPORT_SYMBOL0x7c2f2afbw1_calc_crc8vmlinuxEXPORT_SYMBOL_GPL0x058b582avt_get_ledsvmlinuxEXPORT_SYMBOL_GPL0xaafdc258strcasecmpvmlinuxEXPORT_SYMBOL0x880dde57save_mount_optionsvmlinuxEXPORT_SYMBOL0x9b8f6f62clockevents_register_devicevmlinuxEXPORT_SYMBOL_GPL0xc0240dd4nf_conntrack_set_hashsizenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xbcddd487usbip_stop_ehdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0xdad95ec8iscsi_destroy_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xc6fb4605rt2x00mac_sta_removedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x4fe489acvb2_qbufdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xe7beebfccache_checkvmlinuxEXPORT_SYMBOL_GPL0x5c64429difla_policyvmlinuxEXPORT_SYMBOL0x2b49966avideo_usercopyvmlinuxEXPORT_SYMBOL0x52ab4b26spi_register_board_infovmlinuxEXPORT_SYMBOL_GPL0x9e8f99a2tty_unthrottlevmlinuxEXPORT_SYMBOL0xdd476b50set_blocksizevmlinuxEXPORT_SYMBOL0xb597911ablock_page_mkwritevmlinuxEXPORT_SYMBOL0x5f248f72set_timer_slackvmlinuxEXPORT_SYMBOL_GPL0xfddba063flexcop_i2c_requestdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x9a33ba18md_done_syncvmlinuxEXPORT_SYMBOL0x814fcf6aclass_compat_remove_linkvmlinuxEXPORT_SYMBOL_GPL0xc8f5efc3uart_unregister_drivervmlinuxEXPORT_SYMBOL0xa80b3bdccrypto_spawn_tfmvmlinuxEXPORT_SYMBOL_GPL0x1d58b054generic_error_remove_pagevmlinuxEXPORT_SYMBOL0x2109ed03lib80211_crypt_info_initnet/wireless/lib80211EXPORT_SYMBOL0x80da27ebnf_ct_nat_offsetnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x7831ae38hashbin_insertnet/irda/irdaEXPORT_SYMBOL0x1bec8686usb_ftdi_elan_edset_outputdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x562262b1osd_execute_requestdrivers/scsi/osd/libosdEXPORT_SYMBOL0x51ea2fb0altera_initdrivers/misc/altera-stapl/altera-staplEXPORT_SYMBOL0xeccc086cipv6_chk_prefixvmlinuxEXPORT_SYMBOL0x6d25d429ip6_dst_lookup_flowvmlinuxEXPORT_SYMBOL_GPL0x9e35bd8einet_csk_search_reqvmlinuxEXPORT_SYMBOL_GPL0xfb14bee9inet_unhashvmlinuxEXPORT_SYMBOL_GPL0x50ea7a59mdio_bus_typevmlinuxEXPORT_SYMBOL0xb8047dabblk_execute_rqvmlinuxEXPORT_SYMBOL0xa4ee3c79pwm_disabledrivers/misc/pwm-sunxiEXPORT_SYMBOL0x28ead202rpc_call_syncvmlinuxEXPORT_SYMBOL_GPL0x304523afip6_xmitvmlinuxEXPORT_SYMBOL0xf23d0ddcwl12xx_get_platform_datavmlinuxEXPORT_SYMBOL0xd3a85ce0ata_noop_qc_prepvmlinuxEXPORT_SYMBOL_GPL0x13307fdevsscanfvmlinuxEXPORT_SYMBOL0xebbe10a9jbd2_journal_unlock_updatesvmlinuxEXPORT_SYMBOL0xf1f334e9seq_open_netvmlinuxEXPORT_SYMBOL_GPL0x82d79b51sysctl_vfs_cache_pressurevmlinuxEXPORT_SYMBOL_GPL0x04486e88rcu_batches_completedvmlinuxEXPORT_SYMBOL_GPL0x7c1372e8panicvmlinuxEXPORT_SYMBOL0xe1e2d040led_trigger_removevmlinuxEXPORT_SYMBOL_GPL0x282b729cw1_remove_master_devicevmlinuxEXPORT_SYMBOL0xefdd2345sg_init_onevmlinuxEXPORT_SYMBOL0x12da5bb2__kmallocvmlinuxEXPORT_SYMBOL0x28d6861d__vmallocvmlinuxEXPORT_SYMBOL0x5fdcddb1usbnet_get_ethernet_addrdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xa859f18cenclosure_registerdrivers/misc/enclosureEXPORT_SYMBOL_GPL0x65411296ata_sas_port_startvmlinuxEXPORT_SYMBOL_GPL0x2511f1d0kobject_init_and_addvmlinuxEXPORT_SYMBOL_GPL0xe0baf0d9__fscache_relinquish_cookievmlinuxEXPORT_SYMBOL0xe7326c00rpc_wake_up_nextvmlinuxEXPORT_SYMBOL_GPL0x9272dff0__ip_select_identvmlinuxEXPORT_SYMBOL0x26e6e364skb_gro_receivevmlinuxEXPORT_SYMBOL_GPL0x01ac72f8ata_sg_initvmlinuxEXPORT_SYMBOL_GPL0x3755f990gf128mul_init_64k_bbevmlinuxEXPORT_SYMBOL0x2f2889a0gf128mul_init_64k_llevmlinuxEXPORT_SYMBOL0xc16257a3journal_loadvmlinuxEXPORT_SYMBOL0x94c1fccfflock_lock_file_waitvmlinuxEXPORT_SYMBOL0x01192eacxt_find_matchnet/netfilter/x_tablesEXPORT_SYMBOL0xe62b0487dvb_usb_device_exitdrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0xea1909e5iw_handler_get_spyvmlinuxEXPORT_SYMBOL0x0d8e2485__skb_warn_lro_forwardingvmlinuxEXPORT_SYMBOL0x0a95c3d3snd_soc_platform_writevmlinuxEXPORT_SYMBOL_GPL0x1b17501eregmap_initvmlinuxEXPORT_SYMBOL_GPL0x06425025regmap_exitvmlinuxEXPORT_SYMBOL_GPL0xf05ffa15fb_var_to_videomodevmlinuxEXPORT_SYMBOL0x71c90087memcmpvmlinuxEXPORT_SYMBOL0x0b441c94idr_for_eachvmlinuxEXPORT_SYMBOL0x2312d77eblkiocg_update_io_merged_statsvmlinuxEXPORT_SYMBOL_GPL0xa86e3b5fshash_ahash_digestvmlinuxEXPORT_SYMBOL_GPL0x4a3bffbclocks_init_lockvmlinuxEXPORT_SYMBOL0x7e79f2adbio_add_pc_pagevmlinuxEXPORT_SYMBOL0x1f766e3dnf_ct_helper_expectfn_find_by_namenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x61111253fc_slave_allocdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xed3191bddrm_fb_helper_fill_fixdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x0101d5b1ip_idents_reservevmlinuxEXPORT_SYMBOL0x561b7696netif_stacked_transfer_operstatevmlinuxEXPORT_SYMBOL0x10904730snd_card_set_idvmlinuxEXPORT_SYMBOL0x91b4c20dmmc_pm_get_io_valvmlinuxEXPORT_SYMBOL0x9f6c7485serio_reconnectvmlinuxEXPORT_SYMBOL0x4efd3591USBC_Host_ResetPortvmlinuxEXPORT_SYMBOL0xeca53e78key_set_timeoutvmlinuxEXPORT_SYMBOL_GPL0x81172b10d_alloc_namevmlinuxEXPORT_SYMBOL0xd442b3f4_raw_write_lock_irqsavevmlinuxEXPORT_SYMBOL0xd8643396ar9003_hw_disable_phy_restartdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa677e694drm_encoder_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x040aa4cenapi_frags_finishvmlinuxEXPORT_SYMBOL0x55f1de9cdevm_ioport_unmapvmlinuxEXPORT_SYMBOL0x75b33ce4cont_write_beginvmlinuxEXPORT_SYMBOL0x5847545cvfs_readdirvmlinuxEXPORT_SYMBOL0xc48b7ccfata_mode_stringvmlinuxEXPORT_SYMBOL_GPL0x881039d0zlib_inflatevmlinuxEXPORT_SYMBOL0x3771b461crc_ccittvmlinuxEXPORT_SYMBOL0xa43b1297vscnprintfvmlinuxEXPORT_SYMBOL0xd50bd202blk_recount_segmentsvmlinuxEXPORT_SYMBOL0x3b154b6dsimple_statfsvmlinuxEXPORT_SYMBOL0x617643a2param_set_longvmlinuxEXPORT_SYMBOL0x18a51ae7xfrm6_tunnel_deregisternet/ipv6/tunnel6EXPORT_SYMBOL0x3626afadenclosure_unregisterdrivers/misc/enclosureEXPORT_SYMBOL_GPL0xbcb51951km_policy_notifyvmlinuxEXPORT_SYMBOL0xa51ecb39xfrm4_tunnel_deregistervmlinuxEXPORT_SYMBOL0x567dd6dfip_mc_join_groupvmlinuxEXPORT_SYMBOL0xc2cdad9dUSBC_Dev_QueryPowerStatusvmlinuxEXPORT_SYMBOL0x5a7ec570usb_stringvmlinuxEXPORT_SYMBOL_GPL0x8149ea54ata_timing_find_modevmlinuxEXPORT_SYMBOL_GPL0x48cacfb5configfs_undepend_itemvmlinuxEXPORT_SYMBOL0xdb760f52__kfifo_freevmlinuxEXPORT_SYMBOL0xae8e2c8fve_sizevmlinuxEXPORT_SYMBOL0x86362e3cnf_ct_unexpect_relatednet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc8147957ieee80211_disable_rssi_reportsnet/mac80211/mac80211EXPORT_SYMBOL0x9216597dinet_csk_reqsk_queue_hash_addvmlinuxEXPORT_SYMBOL_GPL0xe6e1c5feuuid_be_genvmlinuxEXPORT_SYMBOL_GPL0xa82363c9blkiocg_update_io_add_statsvmlinuxEXPORT_SYMBOL_GPL0x8385f32fdebugfs_removevmlinuxEXPORT_SYMBOL_GPL0x2d2fadc1lease_modifyvmlinuxEXPORT_SYMBOL0x31c83b6adrop_nlinkvmlinuxEXPORT_SYMBOL0x108d4f5fdibx000_init_i2c_masterdrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0xd3bc39addibx000_exit_i2c_masterdrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0x9f178626dib7000p_get_agc_valuesdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x25884a79xfrm_dst_ifdownvmlinuxEXPORT_SYMBOL0xeec0abb5neigh_seq_startvmlinuxEXPORT_SYMBOL0x2b66a783idle_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0xd75cb661fbtft_framebuffer_releasedrivers/video/fbtft/fbtftEXPORT_SYMBOL0xfed4b943iscsi_tcp_conn_teardowndrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xd3528c2brpc_put_taskvmlinuxEXPORT_SYMBOL_GPL0x997b17b8eth_header_cache_updatevmlinuxEXPORT_SYMBOL0x2571ba49snd_pcm_hw_constraint_ratdensvmlinuxEXPORT_SYMBOL0xd1157735release_and_free_resourcevmlinuxEXPORT_SYMBOL0x05ae262eregulator_unregister_notifiervmlinuxEXPORT_SYMBOL_GPL0x8371daffsg_copy_from_buffervmlinuxEXPORT_SYMBOL0x73e20c1cstrlcpyvmlinuxEXPORT_SYMBOL0x328a05f1strncpyvmlinuxEXPORT_SYMBOL0x8abacc47get_max_filesvmlinuxEXPORT_SYMBOL_GPL0xb1bb0a3fssb_pmu_spuravoid_pllupdatedrivers/ssb/ssbEXPORT_SYMBOL_GPL0x719a40faa8293_attachdrivers/media/dvb/frontends/a8293EXPORT_SYMBOL0x93e691e1USBC_Dev_IsEpStallvmlinuxEXPORT_SYMBOL0x5c6adc0cscsi_release_buffersvmlinuxEXPORT_SYMBOL0xf195c682fb_invert_cmapsvmlinuxEXPORT_SYMBOL0x13574bbfnf_net_netfilter_sysctl_pathvmlinuxEXPORT_SYMBOL_GPL0x01a68382snd_soc_put_volsw_2r_sxvmlinuxEXPORT_SYMBOL_GPL0x7c94564esnd_soc_get_volsw_2r_sxvmlinuxEXPORT_SYMBOL_GPL0xe8cbe4e1driver_create_filevmlinuxEXPORT_SYMBOL_GPL0x6336d792kern_mount_datavmlinuxEXPORT_SYMBOL_GPL0xbf00798d__init_kthread_workervmlinuxEXPORT_SYMBOL_GPL0xd3af01a6sas_drain_workdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xba9302b5fc_frame_alloc_filldrivers/scsi/libfc/libfcEXPORT_SYMBOL0x083eb21crfkill_unregistervmlinuxEXPORT_SYMBOL0xe53e039csdio_readb_extvmlinuxEXPORT_SYMBOL_GPL0xb11d6e4bmedia_entity_graph_walk_nextvmlinuxEXPORT_SYMBOL_GPL0x098b71c6fb_dealloc_cmapvmlinuxEXPORT_SYMBOL0xc23c85deblk_requeue_requestvmlinuxEXPORT_SYMBOL0x9b056590insert_inode_locked4vmlinuxEXPORT_SYMBOL0x41482d8bstrndup_uservmlinuxEXPORT_SYMBOL0x8664f62ecpufreq_update_policyvmlinuxEXPORT_SYMBOL0xe6a15babcrypto_init_spawnvmlinuxEXPORT_SYMBOL_GPL0xa5e636f4mount_nodevvmlinuxEXPORT_SYMBOL0x7571a006pagevec_lookupvmlinuxEXPORT_SYMBOL0xe61160acath6kl_cfg80211_resumedrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0xeefe8116xfrm_find_acqvmlinuxEXPORT_SYMBOL0xaa4479ddeth_mac_addrvmlinuxEXPORT_SYMBOL0x83054309scsi_scan_hostvmlinuxEXPORT_SYMBOL0x3cb5cef7scsi_setup_fs_cmndvmlinuxEXPORT_SYMBOL0x0f913ee4unregister_hw_breakpointvmlinuxEXPORT_SYMBOL_GPL0x9a4d1034idle_notifier_registervmlinuxEXPORT_SYMBOL_GPL0xdb562135dm_btree_emptydrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x31393839cfg80211_wext_siwfragvmlinuxEXPORT_SYMBOL_GPL0xf73e3b1bcfg80211_wext_giwfragvmlinuxEXPORT_SYMBOL_GPL0x25f894basvc_xprt_receivedvmlinuxEXPORT_SYMBOL_GPL0x2f35ce08tcp_sendpagevmlinuxEXPORT_SYMBOL0xb98a0185rtc_tm_to_timevmlinuxEXPORT_SYMBOL0xa0624c58ata_slave_link_initvmlinuxEXPORT_SYMBOL_GPL0xe5883bd9class_compat_unregistervmlinuxEXPORT_SYMBOL_GPL0x47b3f862radix_tree_lookup_slotvmlinuxEXPORT_SYMBOL0x91621d6aallocate_resourcevmlinuxEXPORT_SYMBOL0xcb50a624ceph_parse_ipsnet/ceph/libcephEXPORT_SYMBOL0x79799132uio_event_notifydrivers/uio/uioEXPORT_SYMBOL_GPL0x6ad7bb54USBC_SetWakeUp_DefaultvmlinuxEXPORT_SYMBOL0xafb2ccdfalloc_mdio_bitbangvmlinuxEXPORT_SYMBOL0x847dd47epm_schedule_suspendvmlinuxEXPORT_SYMBOL_GPL0x6e946f31lbtf_remove_carddrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0x850f1b22hostap_free_datadrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xcd2d00d3ubi_get_volume_infodrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xdc819643mtd_device_parse_registerdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x8f1a9b48mt2060_attachdrivers/media/common/tuners/mt2060EXPORT_SYMBOL0xcde743few1_reset_select_slavevmlinuxEXPORT_SYMBOL_GPL0xe5e74546spi_write_then_readvmlinuxEXPORT_SYMBOL_GPL0xb334a961splice_from_pipe_feedvmlinuxEXPORT_SYMBOL0xf9a054b5__round_jiffiesvmlinuxEXPORT_SYMBOL_GPL0x0e78e554dvb_usb_get_hexlinedrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0xef3812edbitmap_loadvmlinuxEXPORT_SYMBOL_GPL0x03c06156bitmap_foldvmlinuxEXPORT_SYMBOL0x1d7c8888vfs_rmdirvmlinuxEXPORT_SYMBOL0x44b66028generic_shutdown_supervmlinuxEXPORT_SYMBOL0x53decd29css_lookupvmlinuxEXPORT_SYMBOL_GPL0x37e74642get_jiffies_64vmlinuxEXPORT_SYMBOL0x7e38b102sas_disable_tlrdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL_GPL0x8ea2d9ebsas_port_delete_phydrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x5c985f93cfg80211_rx_spurious_framevmlinuxEXPORT_SYMBOL0x035a4737scsi_track_queue_fullvmlinuxEXPORT_SYMBOL0x02a6ce5acrc16_tablevmlinuxEXPORT_SYMBOL0xea6f3d31init_buffervmlinuxEXPORT_SYMBOL0x4501b418sas_enable_tlrdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL_GPL0xcb5ea06bubi_close_volumedrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x979ec932videobuf_read_onedrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x8f428d09__sock_recv_ts_and_dropsvmlinuxEXPORT_SYMBOL_GPL0xf726e9desw_hcd_host_txvmlinuxEXPORT_SYMBOL0x3c24bdb2sw_hcd_host_rxvmlinuxEXPORT_SYMBOL0xf4298ef1USBC_Host_ConfigRqPktCountvmlinuxEXPORT_SYMBOL0x95e3cadcscsi_nl_add_drivervmlinuxEXPORT_SYMBOL_GPL0x7fd79cafjbd2__journal_startvmlinuxEXPORT_SYMBOL0xbb7d1550pm_qos_request_activevmlinuxEXPORT_SYMBOL_GPL0xbf7fd2f5schedule_timeout_killablevmlinuxEXPORT_SYMBOL0xb17b129efcoe_validate_vport_createdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xcd0fc417drm_ht_just_insert_pleasedrivers/gpu/drm/drmEXPORT_SYMBOL0x220e342erpcauth_createvmlinuxEXPORT_SYMBOL_GPL0x501dc8c8sock_no_getnamevmlinuxEXPORT_SYMBOL0x4ffb9287snd_pcm_lib_readvvmlinuxEXPORT_SYMBOL0x26c2a6b4v4l2_event_subscribevmlinuxEXPORT_SYMBOL_GPL0x8fe25482vfs_linkvmlinuxEXPORT_SYMBOL0x85050965__irq_alloc_descsvmlinuxEXPORT_SYMBOL_GPL0xd968af78call_usermodehelper_setupvmlinuxEXPORT_SYMBOL0x4c90c4a6netlink_rcv_skbvmlinuxEXPORT_SYMBOL0x4470f71dUSBC_GetActiveEpvmlinuxEXPORT_SYMBOL0x1402687aphy_driver_unregistervmlinuxEXPORT_SYMBOL0x35d362c8crypto_alloc_pcompvmlinuxEXPORT_SYMBOL_GPL0xbf5a4aedjournal_flushvmlinuxEXPORT_SYMBOL0x2447533cktime_get_realvmlinuxEXPORT_SYMBOL_GPL0x183e7613panic_notifier_listvmlinuxEXPORT_SYMBOL0x37c951ddceph_check_fsidnet/ceph/libcephEXPORT_SYMBOL0x7423a8b0__fcoe_get_lesbdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xaccc6085ath9k_hw_waitdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x21b4c489ath_regd_initdrivers/net/wireless/ath/athEXPORT_SYMBOL0xf9773b6aunregister_mtd_chip_driverdrivers/mtd/chips/chipregEXPORT_SYMBOL0xacf3268dmxl111sf_demod_attachdrivers/media/dvb/dvb-usb/mxl111sf-demodEXPORT_SYMBOL_GPL0xfcd7a03b__xfrm_state_deletevmlinuxEXPORT_SYMBOL0xd768e985regulator_has_full_constraintsvmlinuxEXPORT_SYMBOL_GPL0x82f776b7gpio_exportvmlinuxEXPORT_SYMBOL_GPL0xce63ffafd_deletevmlinuxEXPORT_SYMBOL0xf04f50d4find_get_pages_tagvmlinuxEXPORT_SYMBOL0x8834396cmod_timervmlinuxEXPORT_SYMBOL0x3df1167fidr_removevmlinuxEXPORT_SYMBOL0xeef9962bida_removevmlinuxEXPORT_SYMBOL0xaabadbc0mnt_set_expiryvmlinuxEXPORT_SYMBOL0xfeb96b90use_mmvmlinuxEXPORT_SYMBOL_GPL0x5143c678param_get_invboolvmlinuxEXPORT_SYMBOL0xead756efflush_delayed_work_syncvmlinuxEXPORT_SYMBOL0x6d6a34f2snd_ac97_set_ratesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x6b835e3fct_sip_parse_numerical_paramnet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0xbf9d1b96nfsd_debugvmlinuxEXPORT_SYMBOL_GPL0xf54b901fgenl_notifyvmlinuxEXPORT_SYMBOL0x9875c0c0devres_destroyvmlinuxEXPORT_SYMBOL_GPL0x6444c46etty_hangupvmlinuxEXPORT_SYMBOL0xfd5b11beadd_page_wait_queuevmlinuxEXPORT_SYMBOL_GPL0x0684ea3ert2x00mac_add_interfacedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xf94252c0cryptd_free_aeadcrypto/cryptdEXPORT_SYMBOL_GPL0x54c8ca57sw_hcd_platform_initvmlinuxEXPORT_SYMBOL0xa4bd7785sw_hcd_platform_exitvmlinuxEXPORT_SYMBOL0xd328bccbmdiobus_readvmlinuxEXPORT_SYMBOL0x95ba6c31pm_runtime_forbidvmlinuxEXPORT_SYMBOL_GPL0x30e74134tty_termios_copy_hwvmlinuxEXPORT_SYMBOL0x4455e1b3regulator_disable_deferredvmlinuxEXPORT_SYMBOL_GPL0x6c3229bb__twofish_setkeyvmlinuxEXPORT_SYMBOL_GPL0xed384213fscache_obtained_objectvmlinuxEXPORT_SYMBOL0x703711a0seq_put_decimal_llvmlinuxEXPORT_SYMBOL0x164531c4alloc_hdlcdevdrivers/net/wan/hdlcEXPORT_SYMBOL0x2f8ebbe0rpc_ntopvmlinuxEXPORT_SYMBOL_GPL0x964ebcafrpc_ptonvmlinuxEXPORT_SYMBOL_GPL0x18fa0ec5w1_reset_resume_commandvmlinuxEXPORT_SYMBOL_GPL0xcfd9a2c0des_ekeyvmlinuxEXPORT_SYMBOL_GPL0xa13e5739ir_raw_event_storedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x8860f6b9drm_irq_installdrivers/gpu/drm/drmEXPORT_SYMBOL0xda16e78dcon_is_boundvmlinuxEXPORT_SYMBOL0x2be0f12ddql_completedvmlinuxEXPORT_SYMBOL0x8ae7a4a3key_linkvmlinuxEXPORT_SYMBOL0xa07cf972read_cache_pagevmlinuxEXPORT_SYMBOL0x3d111eeeonenand_default_bbtdrivers/mtd/onenand/onenandEXPORT_SYMBOL0x96ca42d6dev_change_flagsvmlinuxEXPORT_SYMBOL0x5677402adquot_dropvmlinuxEXPORT_SYMBOL0x4aea4791__strncpy_from_uservmlinuxEXPORT_SYMBOL0x0566a681iscsi_boot_create_host_ksetdrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0xcd8cdbcbnand_scandrivers/mtd/nand/nandEXPORT_SYMBOL0x984f1353xfrm_state_walkvmlinuxEXPORT_SYMBOL0x79f920b9axp_writesvmlinuxEXPORT_SYMBOL_GPL0x396705b4phy_scan_fixupsvmlinuxEXPORT_SYMBOL0xb40d1493nla_put_nohdrvmlinuxEXPORT_SYMBOL0x64d233c8ioremap_pagevmlinuxEXPORT_SYMBOL0xf19294dbbt_sock_unregisternet/bluetooth/bluetoothEXPORT_SYMBOL0x4a4bf227sas_free_taskdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x3e1e22dfath9k_hw_setuptxqueuedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x638fb212tpm_show_durationsdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x07a9edecnapi_gro_flushvmlinuxEXPORT_SYMBOL0x649dc33fscsi_set_medium_removalvmlinuxEXPORT_SYMBOL0x13f64aa7blkiocg_update_dispatch_statsvmlinuxEXPORT_SYMBOL_GPL0x19519d44keyring_clearvmlinuxEXPORT_SYMBOL0xc0a98385profile_pcvmlinuxEXPORT_SYMBOL0x6abfb12egss_service_to_auth_domain_namevmlinuxEXPORT_SYMBOL_GPL0xc00f2448snd_timer_resolutionvmlinuxEXPORT_SYMBOL0x4339d950jbd2_journal_wipevmlinuxEXPORT_SYMBOL0x578fe4ddcpu_pm_register_notifiervmlinuxEXPORT_SYMBOL_GPL0x7e1183c9async_schedulevmlinuxEXPORT_SYMBOL_GPL0x34257f35sch56xx_watchdog_unregisterdrivers/hwmon/sch56xx-commonEXPORT_SYMBOL0x3b01cfe9__ps2_commandvmlinuxEXPORT_SYMBOL0xa2bf3af5usb_block_urbvmlinuxEXPORT_SYMBOL_GPL0xd03d5aedfb_set_varvmlinuxEXPORT_SYMBOL0x05852752__nla_putvmlinuxEXPORT_SYMBOL0x4c2ae700strnstrvmlinuxEXPORT_SYMBOL0x2e7d0df7__css_putvmlinuxEXPORT_SYMBOL_GPL0x2ff9c359inet_diag_registernet/ipv4/inet_diagEXPORT_SYMBOL_GPL0xafcfac78sas_port_mark_backlinkdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x4a957aa6ath9k_hw_set_sta_beacon_timersdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x58a1062edm_rh_dirty_logdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x38e88f27tpm_show_timeoutsdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xe75db939svc_sock_namesvmlinuxEXPORT_SYMBOL_GPL0x701291d4dma_buf_kmap_atomicvmlinuxEXPORT_SYMBOL_GPL0xbd7083bc_raw_spin_lock_irqsavevmlinuxEXPORT_SYMBOL0xfac68ebaarm_elf_read_implies_execvmlinuxEXPORT_SYMBOL0x7cb3d16etcp_donevmlinuxEXPORT_SYMBOL_GPL0x9bcb8281snd_pcm_hw_rule_addvmlinuxEXPORT_SYMBOL0x2fb6de5dadd_device_randomnessvmlinuxEXPORT_SYMBOL0xda8af7adfb_find_nearest_modevmlinuxEXPORT_SYMBOL0xde417b81async_schedule_domainvmlinuxEXPORT_SYMBOL_GPL0x64f5abc1iscsi_create_ifacedrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x324e4a21__iscsi_complete_pdudrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x7ade1071dm_tm_destroydrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x3b91f3afsnd_free_pagesvmlinuxEXPORT_SYMBOL0x4c61a1e7snd_card_file_removevmlinuxEXPORT_SYMBOL0x641b434fusb_init_urbvmlinuxEXPORT_SYMBOL_GPL0x07534ef8get_phy_idvmlinuxEXPORT_SYMBOL0x76034f14blk_free_tagsvmlinuxEXPORT_SYMBOL0xc0b2494cvfsmount_lock_lock_initvmlinuxEXPORT_SYMBOL0xce46e140ktime_get_tsvmlinuxEXPORT_SYMBOL_GPL0x1ad1f2e7_memcpy_fromiovmlinuxEXPORT_SYMBOL0x95dbe078__get_user_2vmlinuxEXPORT_SYMBOL0xb9acd3d9__put_user_2vmlinuxEXPORT_SYMBOL0x0696021csnd_ac97_readsound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0xf3797152snd_interval_ratnumvmlinuxEXPORT_SYMBOL0x6174ee10usb_hcd_unmap_urb_setup_for_dmavmlinuxEXPORT_SYMBOL_GPL0xcccfb2fasata_deb_timing_hotplugvmlinuxEXPORT_SYMBOL_GPL0xde9f6108scsi_device_getvmlinuxEXPORT_SYMBOL0xa9307964scsi_device_putvmlinuxEXPORT_SYMBOL0x9fbdc5cf__pm_runtime_set_statusvmlinuxEXPORT_SYMBOL_GPL0x51ce5ad3files_lglock_local_lock_cpuvmlinuxEXPORT_SYMBOL0x82d98e44map_vm_areavmlinuxEXPORT_SYMBOL_GPL0x0084e86dunregister_shrinkervmlinuxEXPORT_SYMBOL0x9aec76f8wimax_msg_sendnet/wimax/wimaxEXPORT_SYMBOL_GPL0xc890fbcetea5761_autodetectiondrivers/media/common/tuners/tea5761EXPORT_SYMBOL_GPL0xaabaaf1adm_register_path_selectordrivers/md/dm-multipathEXPORT_SYMBOL_GPL0x15c479eatpm_show_pcrsdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x9b8371a3rpc_rmdirvmlinuxEXPORT_SYMBOL_GPL0x3d7c56fdipv6_dev_get_saddrvmlinuxEXPORT_SYMBOL0x562c3938xfrm_policy_flushvmlinuxEXPORT_SYMBOL0xa3ac8b1csnd_soc_cache_syncvmlinuxEXPORT_SYMBOL_GPL0xadbf6694mmc_set_blocklenvmlinuxEXPORT_SYMBOL0xb8aa2342__check_regionvmlinuxEXPORT_SYMBOL0xc34493ecnf_nat_protocol_registernet/ipv4/netfilter/nf_natEXPORT_SYMBOL0xdf099b59hci_conn_hold_devicenet/bluetooth/bluetoothEXPORT_SYMBOL0xdd1e0573dib0090_gain_controldrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xf6388c56sysctl_ip_default_ttlvmlinuxEXPORT_SYMBOL0x86fd3474napi_gro_fragsvmlinuxEXPORT_SYMBOL0x217dda13flex_array_getvmlinuxEXPORT_SYMBOL0x8a4c9d32key_task_permissionvmlinuxEXPORT_SYMBOL0xfdc27ef3ieee80211_rate_control_registernet/mac80211/mac80211EXPORT_SYMBOL0x05f50195nf_nat_protocol_unregisternet/ipv4/netfilter/nf_natEXPORT_SYMBOL0x2683af28inet_diag_unregisternet/ipv4/inet_diagEXPORT_SYMBOL_GPL0xa51d4ec4iscsi_offload_mesgdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x6c06dd74sas_domain_attach_transportdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xefede202pmbus_get_driver_infodrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x6cdad684sock_sendmsgvmlinuxEXPORT_SYMBOL0xade88e76snd_malloc_pagesvmlinuxEXPORT_SYMBOL0xeef63fb6disk_get_partvmlinuxEXPORT_SYMBOL_GPL0x29491c65snd_hwdep_newsound/core/snd-hwdepEXPORT_SYMBOL0xec124d8cl2tp_recv_commonnet/l2tp/l2tp_coreEXPORT_SYMBOL0x0d9aa7abrt2x00usb_vendor_request_buffdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xfed4d591cfg80211_find_vendor_ievmlinuxEXPORT_SYMBOL0x23592d77netlink_kernel_releasevmlinuxEXPORT_SYMBOL0xc7cc846d__sock_createvmlinuxEXPORT_SYMBOL0x18999104rtc_set_mmssvmlinuxEXPORT_SYMBOL_GPL0x7cafcf7adown_interruptiblevmlinuxEXPORT_SYMBOL0xa28a2aceipmi_set_gets_eventsdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x36eee84bnetif_carrier_offvmlinuxEXPORT_SYMBOL0x4468f66ammc_request_donevmlinuxEXPORT_SYMBOL0x46074c17sdev_evt_allocvmlinuxEXPORT_SYMBOL_GPL0xa14f3d8cewma_addvmlinuxEXPORT_SYMBOL0xff7d3220lease_get_mtimevmlinuxEXPORT_SYMBOL0x939b8073sb_set_blocksizevmlinuxEXPORT_SYMBOL0x58171f04parport_ieee1284_epp_read_addrdrivers/parport/parportEXPORT_SYMBOL0x7d5e61cacyttsp_removedrivers/input/touchscreen/cyttsp_coreEXPORT_SYMBOL_GPL0x73d98c46snd_ctl_boolean_stereo_infovmlinuxEXPORT_SYMBOL0xb82ef8a7sdio_writewvmlinuxEXPORT_SYMBOL_GPL0x3744cf36vmalloc_to_pfnvmlinuxEXPORT_SYMBOL0x376425caget_task_mmvmlinuxEXPORT_SYMBOL_GPL0x417a4d80__ieee80211_get_assoc_led_namenet/mac80211/mac80211EXPORT_SYMBOL0x17f00ac6ieee80211_ctstoself_durationnet/mac80211/mac80211EXPORT_SYMBOL0x7ad13194ath9k_hw_btcoex_set_weightdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xaf4455a2inet_csk_prepare_forced_closevmlinuxEXPORT_SYMBOL0x007c343csnd_soc_default_readable_registervmlinuxEXPORT_SYMBOL_GPL0x5cb4af43fuse_request_sendvmlinuxEXPORT_SYMBOL_GPL0x3a5f2ae6nf_ct_expect_putnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc2aa66a7tda829x_attachdrivers/media/common/tuners/tda8290EXPORT_SYMBOL_GPL0x934689bdv4l2_ctrl_new_customvmlinuxEXPORT_SYMBOL0x7bf0256ecrypto_unregister_algvmlinuxEXPORT_SYMBOL_GPL0x5d61729bdump_writevmlinuxEXPORT_SYMBOL0x853d17felock_supervmlinuxEXPORT_SYMBOL0x511746c1dump_fpuvmlinuxEXPORT_SYMBOL0x9a6f4ec2wimax_dev_initnet/wimax/wimaxEXPORT_SYMBOL_GPL0xfdce3f70osd_req_flush_obsddrivers/scsi/osd/libosdEXPORT_SYMBOL0x26f54692iscsi_suspend_txdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xb77342bahdlc_start_xmitdrivers/net/wan/hdlcEXPORT_SYMBOL0xac278171unregister_md_personalityvmlinuxEXPORT_SYMBOL0x023f20f4__class_createvmlinuxEXPORT_SYMBOL_GPL0xe0f265cafuse_conn_getvmlinuxEXPORT_SYMBOL_GPL0xbaba5d2ffilp_openvmlinuxEXPORT_SYMBOL0x75c21442generic_file_aio_writevmlinuxEXPORT_SYMBOL0x5f50702dip_vs_tcp_conn_listennet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0xbd7c045afbtft_init_displaydrivers/video/fbtft/fbtftEXPORT_SYMBOL0x440906e6xfrm6_prepare_outputvmlinuxEXPORT_SYMBOL0x4d4fd5f1xfrm_calg_get_bynamevmlinuxEXPORT_SYMBOL_GPL0xdf213700xfrm4_prepare_outputvmlinuxEXPORT_SYMBOL0xd7dc817esnd_rawmidi_set_opsvmlinuxEXPORT_SYMBOL0xf83314dcsnd_pcm_link_rwlockvmlinuxEXPORT_SYMBOL0x2ebe3135cpu_is_hotpluggablevmlinuxEXPORT_SYMBOL_GPL0xd3dbfbc4_find_first_zero_bit_levmlinuxEXPORT_SYMBOL0x8f1f9907vb2_reqbufsdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xeca7949edm_bufio_client_destroydrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x9b680a42ump_dd_reference_releasedrivers/gpu/mali/ump/umpEXPORT_SYMBOL0x8fa313a5pingv6_protvmlinuxEXPORT_SYMBOL_GPL0xa9d1af81snd_soc_unregister_codecvmlinuxEXPORT_SYMBOL_GPL0x2ec7005absg_setup_queuevmlinuxEXPORT_SYMBOL_GPL0x00237a65get_diskvmlinuxEXPORT_SYMBOL0x6792404e__free_pagesvmlinuxEXPORT_SYMBOL0xf8802492print_stack_tracevmlinuxEXPORT_SYMBOL_GPL0x53f5651anf_nat_amanda_hooknet/netfilter/nf_conntrack_amandaEXPORT_SYMBOL_GPL0xd3176e82ieee80211_ready_on_channelnet/mac80211/mac80211EXPORT_SYMBOL_GPL0x0241759clc_try_getlib/lru_cacheEXPORT_SYMBOL0x030a6fe5spk_var_storedrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x997d8099parport_get_portdrivers/parport/parportEXPORT_SYMBOL0x6825a373parport_put_portdrivers/parport/parportEXPORT_SYMBOL0xb1866cbbinet_bindvmlinuxEXPORT_SYMBOL0x56b0fc1dpower_supply_classvmlinuxEXPORT_SYMBOL_GPL0x5c4c0564usb_gadget_probe_drivervmlinuxEXPORT_SYMBOL_GPL0x97e729cdclass_find_devicevmlinuxEXPORT_SYMBOL_GPL0xb0aa0eac__register_binfmtvmlinuxEXPORT_SYMBOL0xa88e0d3dvb2_create_bufsdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x6fc2e174xfrm_init_statevmlinuxEXPORT_SYMBOL0x89ca47bfkstrtos8_from_uservmlinuxEXPORT_SYMBOL0x3a5665e3crypto_init_spawn2vmlinuxEXPORT_SYMBOL_GPL0x01c6cb0ccpu_cluster_pm_entervmlinuxEXPORT_SYMBOL_GPL0xc385cb58perf_num_countersvmlinuxEXPORT_SYMBOL_GPL0x58ae5ed5dvb_generic_opendrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x95c18f43xfrm_user_policyvmlinuxEXPORT_SYMBOL0x56a1f604netif_notify_peersvmlinuxEXPORT_SYMBOL0x1469f00enetif_napi_addvmlinuxEXPORT_SYMBOL0x7cd750a9skb_splitvmlinuxEXPORT_SYMBOL0xdde34f57input_grab_devicevmlinuxEXPORT_SYMBOL0x7c57f0a7tty_port_block_til_readyvmlinuxEXPORT_SYMBOL0xcd850362regulator_get_init_drvdatavmlinuxEXPORT_SYMBOL_GPL0x53a3e486regulator_get_current_limitvmlinuxEXPORT_SYMBOL_GPL0xd24ec0e5journal_try_to_free_buffersvmlinuxEXPORT_SYMBOL0x686c703fxfrm_count_auth_supportedvmlinuxEXPORT_SYMBOL_GPL0xb14cbec8netlink_broadcastvmlinuxEXPORT_SYMBOL0x0343bdf1__i2c_board_listvmlinuxEXPORT_SYMBOL_GPL0x6e1764f1block_write_full_page_endiovmlinuxEXPORT_SYMBOL0x0e033345shmem_file_setupvmlinuxEXPORT_SYMBOL_GPL0xc3cf1128in_group_pvmlinuxEXPORT_SYMBOL0xc631580aconsole_unlockvmlinuxEXPORT_SYMBOL0xa5dd6faearm_pm_restartvmlinuxEXPORT_SYMBOL_GPL0xb184142aosd_req_writedrivers/scsi/osd/libosdEXPORT_SYMBOL0x85eba9f7mtd_block_markbaddrivers/mtd/mtdEXPORT_SYMBOL_GPL0x4f4dcda1udp_sendmsgvmlinuxEXPORT_SYMBOL0x4f3dc23btcp_md5_hash_keyvmlinuxEXPORT_SYMBOL0x7677004bmmc_start_reqvmlinuxEXPORT_SYMBOL0xaf419f24elv_rb_former_requestvmlinuxEXPORT_SYMBOL0x2ac6193b__kfifo_dma_out_prepare_rvmlinuxEXPORT_SYMBOL0xea163ab8fb_startvmlinuxEXPORT_SYMBOL0xe1205106ath9k_hw_stopdmarecvdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x64960651snd_timer_stopvmlinuxEXPORT_SYMBOL0x2c20771esdio_register_drivervmlinuxEXPORT_SYMBOL_GPL0xe933629cusb_kill_urbvmlinuxEXPORT_SYMBOL_GPL0x6adbc5bbusb_get_intfvmlinuxEXPORT_SYMBOL_GPL0x593a36c2scsi_dh_handler_existdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0xf8619e76rt2x00queue_for_each_entrydrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x385bf0f5drm_helper_encoder_in_usedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xef76dc4ecfg80211_ready_on_channelvmlinuxEXPORT_SYMBOL0x9e607910audit_logvmlinuxEXPORT_SYMBOL0x5c50cc6cset_security_override_from_ctxvmlinuxEXPORT_SYMBOL0x02de3b18transport_set_vpd_identdrivers/target/target_core_modEXPORT_SYMBOL0x909ff24edib8000_set_wbd_refdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xc952367dtda18271_attachdrivers/media/common/tuners/tda18271EXPORT_SYMBOL_GPL0x40f7bd91dm_tm_incdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xb4a44f7edrm_edid_to_elddrivers/gpu/drm/drmEXPORT_SYMBOL0x92469fd0xdr_process_bufvmlinuxEXPORT_SYMBOL_GPL0x80e49e90sk_wait_datavmlinuxEXPORT_SYMBOL0x0af50bd6snd_soc_register_daivmlinuxEXPORT_SYMBOL_GPL0x5efacbedcrypto_remove_spawnsvmlinuxEXPORT_SYMBOL_GPL0xfff60828lib80211_unregister_crypto_opsnet/wireless/lib80211EXPORT_SYMBOL0xcf4c1cf7xt_replace_tablenet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xaf43893a__netpoll_setupvmlinuxEXPORT_SYMBOL_GPL0x5cdb14fcv4l2_int_device_registervmlinuxEXPORT_SYMBOL_GPL0x070818b4__percpu_counter_initvmlinuxEXPORT_SYMBOL0x6d6c930cirq_set_affinity_notifiervmlinuxEXPORT_SYMBOL_GPL0x3b0302ffnf_nat_sip_seq_adjust_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x0ded575bsas_task_abortdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xd0423a7eiscsi_host_set_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xaee34e3dpwm_requestdrivers/misc/pwm-sunxiEXPORT_SYMBOL0x926b93davideobuf_queue_dma_contig_initdrivers/media/video/videobuf-dma-contigEXPORT_SYMBOL_GPL0x94289922mali_pmu_powerdowndrivers/gpu/mali/mali/maliEXPORT_SYMBOL0xfd88f58ftpm_remove_hardwaredrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x6a040210inet_hashinfo_initvmlinuxEXPORT_SYMBOL_GPL0x855ad634dm_dispatch_requestvmlinuxEXPORT_SYMBOL_GPL0xeec9bd99v4l2_int_device_unregistervmlinuxEXPORT_SYMBOL_GPL0xe367e40einput_mt_report_pointer_emulationvmlinuxEXPORT_SYMBOL0x328a5ea1usb_stor_bulk_transfer_sgvmlinuxEXPORT_SYMBOL_GPL0xf8d332dbend_buffer_read_syncvmlinuxEXPORT_SYMBOL0xeb7c7b21set_cpus_allowed_ptrvmlinuxEXPORT_SYMBOL_GPL0x98fa21b0mod_timer_pinnedvmlinuxEXPORT_SYMBOL0x9d252637sas_register_hadrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x3235fd47rt2x00usb_kick_queuedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x26ca09d1vb2_plane_cookiedrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xc8d84d1edrm_calc_vbltimestamp_from_scanoutposdrivers/gpu/drm/drmEXPORT_SYMBOL0xa1837c93neigh_for_eachvmlinuxEXPORT_SYMBOL0xa5eff3dfrtc_initialize_alarmvmlinuxEXPORT_SYMBOL_GPL0x6971447artc_month_daysvmlinuxEXPORT_SYMBOL0x7e64181dusb_calc_bus_timevmlinuxEXPORT_SYMBOL_GPL0x92a832e4sg_miter_nextvmlinuxEXPORT_SYMBOL0x43113820crypto_init_shash_spawnvmlinuxEXPORT_SYMBOL_GPL0x648583e0crypto_init_ahash_spawnvmlinuxEXPORT_SYMBOL_GPL0xdc2a56beposix_timers_register_clockvmlinuxEXPORT_SYMBOL_GPL0xc702156bparam_get_ushortvmlinuxEXPORT_SYMBOL0xc7a15ee1osd_req_remove_partitiondrivers/scsi/osd/libosdEXPORT_SYMBOL0xe2d99946ubi_open_volume_pathdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x1facc9efstv090x_attachdrivers/media/dvb/frontends/stv090xEXPORT_SYMBOL0x77e07f23ix2505v_attachdrivers/media/dvb/frontends/ix2505vEXPORT_SYMBOL0x70d00b1fsvc_sock_update_bufsvmlinuxEXPORT_SYMBOL_GPL0xe81896daskb_pullvmlinuxEXPORT_SYMBOL0x45fbe748usb_find_interfacevmlinuxEXPORT_SYMBOL_GPL0x668e62b6ata_scsi_ioctlvmlinuxEXPORT_SYMBOL_GPL0x6c1112deamba_find_devicevmlinuxEXPORT_SYMBOL0x09c8eb55font_vga_8x16vmlinuxEXPORT_SYMBOL0x8574ca6cgpio_request_arrayvmlinuxEXPORT_SYMBOL_GPL0x46c3b027blkio_policy_unregistervmlinuxEXPORT_SYMBOL_GPL0xa0136950iscsi_block_scsi_ehdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xe1ac2bb8sunrpc_net_idvmlinuxEXPORT_SYMBOL_GPL0x93d2422dsnmp_mib_freevmlinuxEXPORT_SYMBOL_GPL0x1ebcbce2neigh_app_nsvmlinuxEXPORT_SYMBOL0xd7a031dbphy_start_interruptsvmlinuxEXPORT_SYMBOL0xb56cb20espi_master_resumevmlinuxEXPORT_SYMBOL_GPL0xb10142bcscsi_get_vpd_pagevmlinuxEXPORT_SYMBOL_GPL0x469aaedcpm_generic_restore_noirqvmlinuxEXPORT_SYMBOL_GPL0x9dfdf722gpio_free_arrayvmlinuxEXPORT_SYMBOL_GPL0x599d0cb6scatterwalk_startvmlinuxEXPORT_SYMBOL_GPL0x3a604e7csysfs_putvmlinuxEXPORT_SYMBOL_GPL0xa658b937fc_fcp_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x0a34d9caparport_register_portdrivers/parport/parportEXPORT_SYMBOL0x265e5ceflbs_stop_carddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x645c609axfrm_state_check_expirevmlinuxEXPORT_SYMBOL0x81ed1818sock_diag_unregister_inet_compatvmlinuxEXPORT_SYMBOL_GPL0xc6208646netdev_boot_setup_checkvmlinuxEXPORT_SYMBOL0x13debe3asock_i_uidvmlinuxEXPORT_SYMBOL0x8441aef7sock_i_inovmlinuxEXPORT_SYMBOL0x40278830cpufreq_global_kobjectvmlinuxEXPORT_SYMBOL0xf3dd036dregulator_set_voltage_timevmlinuxEXPORT_SYMBOL_GPL0x1f7b6b63seq_bitmapvmlinuxEXPORT_SYMBOL0x6b0594c5sw_dma_requestvmlinuxEXPORT_SYMBOL0x5ebc1e99sw_dma_enqueuevmlinuxEXPORT_SYMBOL0x6e9a7b3ddrm_mode_validate_clocksdrivers/gpu/drm/drmEXPORT_SYMBOL0x9ec0df60drm_rmmap_lockeddrivers/gpu/drm/drmEXPORT_SYMBOL0x2e3ba4eeip_build_and_send_pktvmlinuxEXPORT_SYMBOL_GPL0xa54ba0c1register_gifconfvmlinuxEXPORT_SYMBOL0xec4d9e3aclk_get_sysvmlinuxEXPORT_SYMBOL0x84a529adcpufreq_unregister_drivervmlinuxEXPORT_SYMBOL_GPL0xd74cc670gpiochip_findvmlinuxEXPORT_SYMBOL_GPL0xaaa8e491crypto_rng_typevmlinuxEXPORT_SYMBOL_GPL0x457594facrypto_alg_listvmlinuxEXPORT_SYMBOL_GPL0xe81bf0b3sync_inode_metadatavmlinuxEXPORT_SYMBOL0x3587e424mempool_allocvmlinuxEXPORT_SYMBOL0xebe62910unregister_wide_hw_breakpointvmlinuxEXPORT_SYMBOL_GPL0x86f6b99dsynchronize_rcu_expeditedvmlinuxEXPORT_SYMBOL_GPL0xaa6901ac__kfifo_out_rvmlinuxEXPORT_SYMBOL0xc1b4bc24irda_register_dongledrivers/net/irda/sir-devEXPORT_SYMBOL0x7b686c7adrm_mm_init_scan_with_rangedrivers/gpu/drm/drmEXPORT_SYMBOL0xd8de6cefcfg80211_classify8021dvmlinuxEXPORT_SYMBOL0x48efb9a3snd_soc_register_platformvmlinuxEXPORT_SYMBOL_GPL0xe3b3bbb4media_entity_pipeline_startvmlinuxEXPORT_SYMBOL_GPL0xb7dc6720USBC_ReadLenFromFifovmlinuxEXPORT_SYMBOL0x7c1d7c0dUSBC_GetOtgMode_Form_BDevicevmlinuxEXPORT_SYMBOL0x2eba8663USBC_INT_DisableUsbMiscUintvmlinuxEXPORT_SYMBOL0x19fa0209ata_do_dev_read_idvmlinuxEXPORT_SYMBOL_GPL0xcf56b35a__srcu_read_lockvmlinuxEXPORT_SYMBOL_GPL0xccd1dc37iscsi_conn_stopdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x0735c0b6ar9003_mci_send_messagedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x66e38245pmbus_clear_faultsdrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0xd03c7700secure_ipv4_port_ephemeralvmlinuxEXPORT_SYMBOL_GPL0xbbe78bbdproc_dointvec_minmaxvmlinuxEXPORT_SYMBOL0xa305cba5clk_dbg_infvmlinuxEXPORT_SYMBOL0x0e0d612cceph_osdc_set_request_lingernet/ceph/libcephEXPORT_SYMBOL0x21ea32c4i2c_bus_typevmlinuxEXPORT_SYMBOL_GPL0xd3a09b61kmalloc_cachesvmlinuxEXPORT_SYMBOL0xdc43a9c8daemonizevmlinuxEXPORT_SYMBOL0x0c1b5bafkmapvmlinuxEXPORT_SYMBOL0xd3082f6fusbnet_pause_rxdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x546b61e6wait_for_tpm_statdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x734a709brpc_mallocvmlinuxEXPORT_SYMBOL_GPL0x0e49253dicmpv6_sendvmlinuxEXPORT_SYMBOL0x256a4d69video_device_release_emptyvmlinuxEXPORT_SYMBOL0xf7ae2235do_take_over_consolevmlinuxEXPORT_SYMBOL_GPL0xe2dd67e5regulator_set_current_limitvmlinuxEXPORT_SYMBOL_GPL0xb831d9e9blk_queue_make_requestvmlinuxEXPORT_SYMBOL0x3fc23318fscache_wait_bitvmlinuxEXPORT_SYMBOL0xc5724fd6truncate_pagecache_rangevmlinuxEXPORT_SYMBOL0xfbd89b24put_pagevmlinuxEXPORT_SYMBOL0x74954462timecounter_readvmlinuxEXPORT_SYMBOL_GPL0x0faa0e4bnf_conntrack_locknet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x55b143e3it913x_fe_attachdrivers/media/dvb/frontends/it913x-feEXPORT_SYMBOL0x8ae3ac2crpc_lookup_credvmlinuxEXPORT_SYMBOL_GPL0x73596e03led_classdev_resumevmlinuxEXPORT_SYMBOL_GPL0x3babceb3rtc_device_registervmlinuxEXPORT_SYMBOL_GPL0xaa0b71eeinput_reset_devicevmlinuxEXPORT_SYMBOL0x630ce61btty_ldisc_derefvmlinuxEXPORT_SYMBOL_GPL0x05d36c5ddquot_scan_activevmlinuxEXPORT_SYMBOL0x8fe3dc59vfs_getattrvmlinuxEXPORT_SYMBOL0x43c8d341ceph_buffer_newnet/ceph/libcephEXPORT_SYMBOL0x4d4e71a5drm_kms_helper_poll_enabledrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xffa12532inet_del_protocolvmlinuxEXPORT_SYMBOL0x3adf5920neigh_updatevmlinuxEXPORT_SYMBOL0x954351d6phy_stopvmlinuxEXPORT_SYMBOL0x27735012spi_bitbang_startvmlinuxEXPORT_SYMBOL_GPL0x9c0e7c71ata_dummy_port_infovmlinuxEXPORT_SYMBOL_GPL0x44b4d802put_io_contextvmlinuxEXPORT_SYMBOL0x23053360blk_queue_io_minvmlinuxEXPORT_SYMBOL0x1e549a4bnobh_truncate_pagevmlinuxEXPORT_SYMBOL0x3a8788df__kfifo_dma_out_preparevmlinuxEXPORT_SYMBOL0x045072cdnf_ct_port_nla_policynet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xed11099eieee80211_generic_frame_durationnet/mac80211/mac80211EXPORT_SYMBOL0xdad6dc94ceph_monc_initnet/ceph/libcephEXPORT_SYMBOL0x6c3448cafbtft_write_reg8_bus8drivers/video/fbtft/fbtftEXPORT_SYMBOL0x1b7e0c43usb_wwan_set_termiosdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x3714c90aiscsi_conn_startdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x8f9c4802em28xx_uninit_isocdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xf3f588b1snd_soc_unregister_daivmlinuxEXPORT_SYMBOL_GPL0x2eb22412upvmlinuxEXPORT_SYMBOL0x03ec3afciscsi_lookup_endpointdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x33926fbaubi_leb_unmapdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x27a6cee6nand_scan_taildrivers/mtd/nand/nandEXPORT_SYMBOL0x84f74077rpc_call_startvmlinuxEXPORT_SYMBOL_GPL0x5924514eicmp_sendvmlinuxEXPORT_SYMBOL0x84f8318bUSBC_EnableDpDmChangevmlinuxEXPORT_SYMBOL0x5dd9c000nfs4_set_ds_clientvmlinuxEXPORT_SYMBOL_GPL0x6663bdc6path_getvmlinuxEXPORT_SYMBOL0x6f8e4aa0iov_iter_copy_from_user_atomicvmlinuxEXPORT_SYMBOL0x31f82209spk_synth_is_alive_restartdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xa7d13a94rt2800_check_firmwaredrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x16d51952xfrm_state_updatevmlinuxEXPORT_SYMBOL0x7240c5e1USBC_ForceIdvmlinuxEXPORT_SYMBOL0x23b6c38cusb_deregister_devvmlinuxEXPORT_SYMBOL_GPL0xd9aed11busb_hcd_is_primary_hcdvmlinuxEXPORT_SYMBOL_GPL0x5c59bb7dpm_generic_resume_noirqvmlinuxEXPORT_SYMBOL_GPL0x99474921crypto_grab_aeadvmlinuxEXPORT_SYMBOL_GPL0x23864ce7cpuset_mem_spread_nodevmlinuxEXPORT_SYMBOL_GPL0x603cce91hrtimer_startvmlinuxEXPORT_SYMBOL_GPL0xd4237860get_pid_taskvmlinuxEXPORT_SYMBOL_GPL0xcdb87330hashbin_deletenet/irda/irdaEXPORT_SYMBOL0xf062f60b__ceph_open_sessionnet/ceph/libcephEXPORT_SYMBOL0xecb9d0bctransport_deregister_session_configfsdrivers/target/target_core_modEXPORT_SYMBOL0xceed1a0fath9k_hw_disable_mib_countersdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x6c702af7sysctl_udp_rmem_minvmlinuxEXPORT_SYMBOL0xae4be9e9dev_openvmlinuxEXPORT_SYMBOL0xece34bf5lock_sock_fastvmlinuxEXPORT_SYMBOL0x6807a2a4snd_cardsvmlinuxEXPORT_SYMBOL0x252e43b4cn_add_callbackvmlinuxEXPORT_SYMBOL_GPL0x51abcbfcilookupvmlinuxEXPORT_SYMBOL0x4302d0ebfree_pagesvmlinuxEXPORT_SYMBOL0x4e7df11birq_create_of_mappingvmlinuxEXPORT_SYMBOL_GPL0xe8909097nat_q931_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0xe18fe408iscsi_get_fabric_proto_identdrivers/target/target_core_modEXPORT_SYMBOL0xbc8a7e62mwifiex_del_virtual_intfdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0xfa01303amdiobus_freevmlinuxEXPORT_SYMBOL0xacc40809generic_file_fsyncvmlinuxEXPORT_SYMBOL0x0bb8add1unlock_new_inodevmlinuxEXPORT_SYMBOL0x3cb3aaac__f_setownvmlinuxEXPORT_SYMBOL0xf82f16b3execute_in_process_contextvmlinuxEXPORT_SYMBOL_GPL0xd23093d8xt_find_table_locknet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x49f6ebddlbs_send_tx_feedbackdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x3a74ddcftea5767_attachdrivers/media/common/tuners/tea5767EXPORT_SYMBOL_GPL0x62737e1dsock_unregistervmlinuxEXPORT_SYMBOL0xed2a2154ppp_dev_namevmlinuxEXPORT_SYMBOL0xe3d6f284fb_find_mode_cvtvmlinuxEXPORT_SYMBOL0x0297b558kset_registervmlinuxEXPORT_SYMBOL0x969858fafputvmlinuxEXPORT_SYMBOL0x14d4a9c5_change_bitvmlinuxEXPORT_SYMBOL0xb9394173irias_delete_valuenet/irda/irdaEXPORT_SYMBOL0x803dc4e9sas_phy_deletedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x2a79ac13clkdev_addvmlinuxEXPORT_SYMBOL0xdd6637ccplatform_device_allocvmlinuxEXPORT_SYMBOL_GPL0x4e852680posix_timer_eventvmlinuxEXPORT_SYMBOL_GPL0xa2d4ae45wimax_msg_lennet/wimax/wimaxEXPORT_SYMBOL_GPL0x3e2b3570flexonenand_regiondrivers/mtd/onenand/onenandEXPORT_SYMBOL0xc6f58ad9ir_raw_handler_unregisterdrivers/media/rc/rc-coreEXPORT_SYMBOL0x7d52d2ccip6_frag_initvmlinuxEXPORT_SYMBOL0xeae74760scsi_nl_send_transport_msgvmlinuxEXPORT_SYMBOL_GPL0x74593dbdpm_generic_suspend_noirqvmlinuxEXPORT_SYMBOL_GPL0x99ea201cjournal_set_featuresvmlinuxEXPORT_SYMBOL0x861a7399__fsnotify_parentvmlinuxEXPORT_SYMBOL_GPL0xd46e5b30pm_qos_add_requestvmlinuxEXPORT_SYMBOL_GPL0x1976aa06param_ops_boolvmlinuxEXPORT_SYMBOL0xd9099cefl2tp_session_deletenet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x56a6b46eceph_monc_open_sessionnet/ceph/libcephEXPORT_SYMBOL0x6e57543asas_phy_freedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xf8caf692smscore_unregister_devicedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x0ae4b94cdrm_ht_removedrivers/gpu/drm/drmEXPORT_SYMBOL0xc8b784b3media_entity_getvmlinuxEXPORT_SYMBOL_GPL0x3e07edbdmedia_entity_putvmlinuxEXPORT_SYMBOL_GPL0x19a1318dsw_usb_host0_disablevmlinuxEXPORT_SYMBOL0x5cb8346ausb_ep0_reinitvmlinuxEXPORT_SYMBOL_GPL0x6ab922b2regulator_get_drvdatavmlinuxEXPORT_SYMBOL_GPL0xc1aedf55add_diskvmlinuxEXPORT_SYMBOL0xa960e59fxt_rateest_putnet/netfilter/xt_RATEESTEXPORT_SYMBOL_GPL0x9cf21938mwifiex_cancel_hsdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0xc2173b23cryptd_shash_desccrypto/cryptdEXPORT_SYMBOL_GPL0xc2591925__udp6_lib_lookupvmlinuxEXPORT_SYMBOL_GPL0x95e75d32inet_shutdownvmlinuxEXPORT_SYMBOL0x01fd453eusbhid_lookup_quirkvmlinuxEXPORT_SYMBOL_GPL0x74d521c0USBC_EnableDpDmPullUpvmlinuxEXPORT_SYMBOL0xbf340714USBC_INT_DisableEpAllvmlinuxEXPORT_SYMBOL0x3eb7192bposix_lock_file_waitvmlinuxEXPORT_SYMBOL0x1427ae34xt_unregister_tablenet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x980adff9lc_findlib/lru_cacheEXPORT_SYMBOL0x4caddaa7iscsi_requeue_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x787af9edap6210_gpio_wifi_get_namedrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0x34e27bc8drm_handle_vblankdrivers/gpu/drm/drmEXPORT_SYMBOL0xd51abc61uart_remove_one_portvmlinuxEXPORT_SYMBOL0x4e830a3estrnicmpvmlinuxEXPORT_SYMBOL0x42ef6f39vmalloc_to_pagevmlinuxEXPORT_SYMBOL0xde059880hostap_80211_opsdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x73cdd25dhostap_info_initdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x8eff9111drm_ht_find_itemdrivers/gpu/drm/drmEXPORT_SYMBOL0x1d027e4bsnd_pcm_format_signedvmlinuxEXPORT_SYMBOL0x07731b88usb_get_hcdvmlinuxEXPORT_SYMBOL_GPL0xbfb5e2e8fbcon_set_bitopsvmlinuxEXPORT_SYMBOL0xc749eb0ablk_integrity_merge_rqvmlinuxEXPORT_SYMBOL0x05208879blk_update_requestvmlinuxEXPORT_SYMBOL_GPL0xb3009722journal_start_commitvmlinuxEXPORT_SYMBOL0xef00c5f4__wake_up_bitvmlinuxEXPORT_SYMBOL0x25d7730fiscsi_is_session_devdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xa3ef3390flexcop_sram_ctrldrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0xf8d54998ump_dd_handle_create_from_phys_blocksdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0x02b6d40cdrm_prime_gem_destroydrivers/gpu/drm/drmEXPORT_SYMBOL0x4cce6878xdr_encode_array2vmlinuxEXPORT_SYMBOL_GPL0x1f368a7esock_releasevmlinuxEXPORT_SYMBOL0xf81ea5e3usb_hcd_giveback_urbvmlinuxEXPORT_SYMBOL_GPL0x85259617user_instantiatevmlinuxEXPORT_SYMBOL_GPL0xc49a69afadd_wait_queue_exclusivevmlinuxEXPORT_SYMBOL0xdf6a85e4ct_sip_get_sdp_headernet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x209e2b5fnf_nat_icmp_reply_translationnet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0x30edfb76drm_debugfs_create_filesdrivers/gpu/drm/drmEXPORT_SYMBOL0x75811312crc_ccitt_tablevmlinuxEXPORT_SYMBOL0x34908c14print_hex_dump_bytesvmlinuxEXPORT_SYMBOL0x45d08717nlmclnt_procvmlinuxEXPORT_SYMBOL_GPL0x541d0c07d_add_civmlinuxEXPORT_SYMBOL0x5bd12759phys_mem_access_protvmlinuxEXPORT_SYMBOL0x1ed4b412scsi_dh_detachdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0x34f2481dscsi_dh_attachdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0x9d3144eart2800_link_statsdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x017543f0net_ipv6_ctl_pathvmlinuxEXPORT_SYMBOL_GPL0xa9f3f261net_ipv4_ctl_pathvmlinuxEXPORT_SYMBOL_GPL0xc64ec1d3netdev_set_mastervmlinuxEXPORT_SYMBOL0x997c0efb__skb_checksum_complete_headvmlinuxEXPORT_SYMBOL0x1ddff5a8spi_bitbang_transfervmlinuxEXPORT_SYMBOL_GPL0xa20d6c9cunlink_framebuffervmlinuxEXPORT_SYMBOL0x3af044c7__percpu_counter_sumvmlinuxEXPORT_SYMBOL0xd7c943cd__percpu_counter_addvmlinuxEXPORT_SYMBOL0xed8aaba2idr_initvmlinuxEXPORT_SYMBOL0x00650207ida_initvmlinuxEXPORT_SYMBOL0x9b2560b9gf128mul_init_4k_bbevmlinuxEXPORT_SYMBOL0x83581089gf128mul_init_4k_llevmlinuxEXPORT_SYMBOL0x32181cdempage_readpagevmlinuxEXPORT_SYMBOL0x70bc17d7inode_waitvmlinuxEXPORT_SYMBOL0xd6ee688fvmallocvmlinuxEXPORT_SYMBOL0xf31b3fd1workqueue_set_max_activevmlinuxEXPORT_SYMBOL_GPL0xbdf2580d__raw_readslvmlinuxEXPORT_SYMBOL0x2e20221ausbnet_cdc_statusdrivers/net/usb/cdc_etherEXPORT_SYMBOL_GPL0x201ab7bemacvlan_dellinkdrivers/net/macvlanEXPORT_SYMBOL_GPL0xc717d542raid5_set_cache_sizedrivers/md/raid456EXPORT_SYMBOL0xad98b3fatty_port_raise_dtr_rtsvmlinuxEXPORT_SYMBOL0xadacd249blk_queue_io_optvmlinuxEXPORT_SYMBOL0xde401860bdgrabvmlinuxEXPORT_SYMBOL0xd4c14632system_unbound_wqvmlinuxEXPORT_SYMBOL_GPL0xd5da9ec3ct_sip_parse_requestnet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0xee949355ath9k_hw_phy_disabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x65c3a2efmtd_lockdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x645abadeflexcop_sram_set_destdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x4ea1f5a2drm_gem_object_freedrivers/gpu/drm/drmEXPORT_SYMBOL0x32640aecmxl111sf_tuner_attachdrivers/media/dvb/dvb-usb/mxl111sf-tunerEXPORT_SYMBOL_GPL0x7418abf7drm_get_ediddrivers/gpu/drm/drmEXPORT_SYMBOL0xb4cb8623USBC_Host_IsEpStallvmlinuxEXPORT_SYMBOL0x19955aedscsi_adjust_queue_depthvmlinuxEXPORT_SYMBOL0x7c1106eemb_cache_entry_find_firstvmlinuxEXPORT_SYMBOL0x78207bb2gss_mech_get_by_namevmlinuxEXPORT_SYMBOL_GPL0x04017a1atcp_unregister_congestion_controlvmlinuxEXPORT_SYMBOL_GPL0xe7c02564ppp_unregister_compressorvmlinuxEXPORT_SYMBOL0x7cdbc58abio_splitvmlinuxEXPORT_SYMBOL0x4c036c6flock_renamevmlinuxEXPORT_SYMBOL0x01edf23fi2c_bit_add_busdrivers/i2c/algos/i2c-algo-bitEXPORT_SYMBOL0x7a5f01c3v4l2_chip_match_i2c_clientvmlinuxEXPORT_SYMBOL0xa958c192class_destroyvmlinuxEXPORT_SYMBOL_GPL0x231d4001fb_edid_add_monspecsvmlinuxEXPORT_SYMBOL0xeb72f117gpiochip_removevmlinuxEXPORT_SYMBOL_GPL0xa9eaf306__locks_copy_lockvmlinuxEXPORT_SYMBOL0xd1ea622fmutex_lock_killablevmlinuxEXPORT_SYMBOL0x1b5456d5usb_ftdi_elan_edset_singledrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x3909d3a8dm_bufio_prefetchdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xb08e1c45xdr_inline_decodevmlinuxEXPORT_SYMBOL_GPL0x25b43d1btcp_check_reqvmlinuxEXPORT_SYMBOL0x0797be2fnetlink_unicastvmlinuxEXPORT_SYMBOL0xd13b2d62neigh_sysctl_registervmlinuxEXPORT_SYMBOL0xc239eaccmd_rdev_initvmlinuxEXPORT_SYMBOL_GPL0xcad85854__fscache_check_page_writevmlinuxEXPORT_SYMBOL0x9770a126usb_serial_generic_read_bulk_callbackdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xe720935dfc_parse_pr_out_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0x14072a9bdrm_mode_attachmode_crtcdrivers/gpu/drm/drmEXPORT_SYMBOL0x2e76c71esnd_timer_startvmlinuxEXPORT_SYMBOL0x48fcca7cset_nlinkvmlinuxEXPORT_SYMBOL0xdcb0349bsys_closevmlinuxEXPORT_SYMBOL0xaf348da7cpu_pm_exitvmlinuxEXPORT_SYMBOL_GPL0xa4d64bf2kill_pgrpvmlinuxEXPORT_SYMBOL0xf035fcb0s5h1409_attachdrivers/media/dvb/frontends/s5h1409EXPORT_SYMBOL0xb39e9844net_cls_subsys_idvmlinuxEXPORT_SYMBOL_GPL0x08df58f6device_wakeup_disablevmlinuxEXPORT_SYMBOL_GPL0xf07571ddfat_build_inodevmlinuxEXPORT_SYMBOL_GPL0x9578e7d7seq_readvmlinuxEXPORT_SYMBOL0xdc228294is_bad_inodevmlinuxEXPORT_SYMBOL0x253bdb78param_get_intvmlinuxEXPORT_SYMBOL0xebde69a8ieee80211_key_removednet/mac80211/mac80211EXPORT_SYMBOL_GPL0x67aae522ath9k_hw_process_rxdesc_edmadrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xaf1294d0nand_bch_calculate_eccdrivers/mtd/nand/nand_bchEXPORT_SYMBOL0xa93b89eastart_ttyvmlinuxEXPORT_SYMBOL0x6513a3fafb_get_color_depthvmlinuxEXPORT_SYMBOL0x7ffc8718gpio_set_debouncevmlinuxEXPORT_SYMBOL_GPL0x017ae77dshash_ahash_finupvmlinuxEXPORT_SYMBOL_GPL0xfeb0ae99user_updatevmlinuxEXPORT_SYMBOL_GPL0x6d7f86f3nf_ct_get_tupleprnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x937c12b0rt2x00mac_remove_interfacedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x7f374034max2165_attachdrivers/media/common/tuners/max2165EXPORT_SYMBOL0xaf75305bskb_free_datagram_lockedvmlinuxEXPORT_SYMBOL0xfaaae980kernel_sock_shutdownvmlinuxEXPORT_SYMBOL0x3b262348snd_pcm_notifyvmlinuxEXPORT_SYMBOL0x6d0f1f89dm_table_get_modevmlinuxEXPORT_SYMBOL0x2ca4ebcdregulator_set_drvdatavmlinuxEXPORT_SYMBOL_GPL0xeba677bdposix_acl_chmodvmlinuxEXPORT_SYMBOL0xbfd4c4f2notify_changevmlinuxEXPORT_SYMBOL0x613780adfollow_upvmlinuxEXPORT_SYMBOL0xa577a850param_get_shortvmlinuxEXPORT_SYMBOL0x02196324__aeabi_idivvmlinuxEXPORT_SYMBOL0x1052ae36ieee80211_start_tx_ba_cb_irqsafenet/mac80211/mac80211EXPORT_SYMBOL0xde4c6b3cirlmp_service_to_hintnet/irda/irdaEXPORT_SYMBOL0x060ddfa7garp_request_joinnet/802/garpEXPORT_SYMBOL_GPL0x0054f69ddm_tm_pre_commitdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x72289260dm_block_manager_destroydrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xe9cc1301nf_log_bind_pfvmlinuxEXPORT_SYMBOL0xd9353719skb_copy_and_csum_datagram_iovecvmlinuxEXPORT_SYMBOL0xd6e60670sock_no_ioctlvmlinuxEXPORT_SYMBOL0x36083c88USBC_ForceVbusValidvmlinuxEXPORT_SYMBOL0x1aa77ad1get_user_pages_fastvmlinuxEXPORT_SYMBOL_GPL0x2a3aa678_test_and_clear_bitvmlinuxEXPORT_SYMBOL0x447c43e2nf_conntrack_find_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x1ec64c60ieee80211_sta_block_awakenet/mac80211/mac80211EXPORT_SYMBOL0xf5f52496fbtft_remove_commondrivers/video/fbtft/fbtftEXPORT_SYMBOL0x917b3043usbip_pack_pdudrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x01570bdbdib8000_i2c_enumerationdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x9811dcabsnd_soc_codec_set_sysclkvmlinuxEXPORT_SYMBOL_GPL0x54f168aasnd_rawmidi_transmit_ackvmlinuxEXPORT_SYMBOL0x279b5c18md_write_startvmlinuxEXPORT_SYMBOL0x9bdc3ec3serio_unregister_child_portvmlinuxEXPORT_SYMBOL0x250c02d4USBC_Dev_IsWriteDataReadyvmlinuxEXPORT_SYMBOL0x1cea04a0scsi_remove_devicevmlinuxEXPORT_SYMBOL0xa7b349f9simple_emptyvmlinuxEXPORT_SYMBOL0x8e4fd26evm_mmapvmlinuxEXPORT_SYMBOL0xb38d0ef9shmem_read_mapping_page_gfpvmlinuxEXPORT_SYMBOL_GPL0x1a2b094bnf_nat_sip_expect_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0xe79cb381__lbs_cmddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x2c011f55xfrm_cfg_mutexvmlinuxEXPORT_SYMBOL0x4c698077__sk_mem_schedulevmlinuxEXPORT_SYMBOL0x6e02f902__hid_register_drivervmlinuxEXPORT_SYMBOL_GPL0xf694ad95hid_disconnectvmlinuxEXPORT_SYMBOL_GPL0x70cf032fusb_hcd_irqvmlinuxEXPORT_SYMBOL_GPL0xcde172acradix_tree_gang_lookup_tag_slotvmlinuxEXPORT_SYMBOL0xb92a9f57blk_queue_merge_bvecvmlinuxEXPORT_SYMBOL0x00fad156fuse_file_pollvmlinuxEXPORT_SYMBOL_GPL0xa8d5a9a5journal_lock_updatesvmlinuxEXPORT_SYMBOL0xfdcc6909mnt_want_write_filevmlinuxEXPORT_SYMBOL_GPL0x3abec91fceph_pr_addrnet/ceph/libcephEXPORT_SYMBOL0x587b03achci_register_cbnet/bluetooth/bluetoothEXPORT_SYMBOL0xf59eadf3ath9k_cmn_padposdrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0x8e2e29c4dm_snap_cowdrivers/md/dm-snapshotEXPORT_SYMBOL0x7048632fip_ct_attachvmlinuxEXPORT_SYMBOL0x295433f6dev_set_mtuvmlinuxEXPORT_SYMBOL0xbfb4a18eahci_fill_cmd_slotvmlinuxEXPORT_SYMBOL_GPL0xa787f876crypto_unregister_templatevmlinuxEXPORT_SYMBOL_GPL0x244fe6bebd_link_disk_holdervmlinuxEXPORT_SYMBOL_GPL0xce08a07bwimax_state_getnet/wimax/wimaxEXPORT_SYMBOL_GPL0xbc970d3bath9k_hw_gettsf32drivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x2919b156xdr_decode_string_inplacevmlinuxEXPORT_SYMBOL_GPL0x565b6892uuid_le_genvmlinuxEXPORT_SYMBOL_GPL0x448f919ffscache_cache_cleared_wqvmlinuxEXPORT_SYMBOL0x1431ca44fc_vport_createdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xcfd4bea8rt2800_config_pairwise_keydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x3953370bath_key_deletedrivers/net/wireless/ath/athEXPORT_SYMBOL0x36ab94d5svc_seq_showvmlinuxEXPORT_SYMBOL_GPL0x494a8920tcp_md5_hash_headervmlinuxEXPORT_SYMBOL0x7bde13f5scsi_free_host_devvmlinuxEXPORT_SYMBOL0x9d7e21e2driver_registervmlinuxEXPORT_SYMBOL_GPL0x12a4fb3eshould_remove_suidvmlinuxEXPORT_SYMBOL0xc0b975daosd_req_decode_sense_fulldrivers/scsi/osd/libosdEXPORT_SYMBOL0x28f7dd57fc_lport_destroydrivers/scsi/libfc/libfcEXPORT_SYMBOL0xf99dc2cfdm_btree_deldrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xb774dde6input_ff_createvmlinuxEXPORT_SYMBOL_GPL0x00ebcb5data_id_stringvmlinuxEXPORT_SYMBOL_GPL0x24a56e50device_destroyvmlinuxEXPORT_SYMBOL_GPL0xc8d750acfind_lock_pagevmlinuxEXPORT_SYMBOL0xf2088771srcu_notifier_chain_unregistervmlinuxEXPORT_SYMBOL_GPL0xabd394b6usb_wwan_chars_in_bufferdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x319c6026ath_is_49ghz_alloweddrivers/net/wireless/ath/athEXPORT_SYMBOL0x34259a17mfd_cell_disabledrivers/mfd/mfd-coreEXPORT_SYMBOL0xc055fc17videobuf_to_vmallocdrivers/media/video/videobuf-vmallocEXPORT_SYMBOL_GPL0x923368e4wiphy_registervmlinuxEXPORT_SYMBOL0x79df62b9unregister_pernet_devicevmlinuxEXPORT_SYMBOL_GPL0xa9b45071mmc_pm_gpio_ctrlvmlinuxEXPORT_SYMBOL0x260f908einput_ff_destroyvmlinuxEXPORT_SYMBOL_GPL0xd60cbc0eplatform_get_irq_bynamevmlinuxEXPORT_SYMBOL_GPL0x718565d5remove_wait_queuevmlinuxEXPORT_SYMBOL0x4845c423param_array_opsvmlinuxEXPORT_SYMBOL0x64b0804fnf_nat_sdp_addr_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x8d825418ceph_copy_from_page_vectornet/ceph/libcephEXPORT_SYMBOL0xe4051709iscsi_tcp_set_max_r2tdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xfbf2b412iscsi_conn_queue_workdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xee695237mtd_get_unmapped_areadrivers/mtd/mtdEXPORT_SYMBOL_GPL0x80dfd5d9napi_get_fragsvmlinuxEXPORT_SYMBOL0x212079f1sk_stream_write_spacevmlinuxEXPORT_SYMBOL0x10ef1e09v4l2_event_unsubscribevmlinuxEXPORT_SYMBOL_GPL0x90b9c736sunxi_hcd_unmap_urb_for_dmavmlinuxEXPORT_SYMBOL_GPL0x6fecd070scsi_verify_blk_ioctlvmlinuxEXPORT_SYMBOL0x87dfc6f6sysfs_notify_direntvmlinuxEXPORT_SYMBOL_GPL0xcce916f2kill_bdevvmlinuxEXPORT_SYMBOL0xd4d50a6awimax_rfkillnet/wimax/wimaxEXPORT_SYMBOL0xc448382fieee80211_beacon_get_timnet/mac80211/mac80211EXPORT_SYMBOL0x172e8538add_mtd_blktrans_devdrivers/mtd/mtd_blkdevsEXPORT_SYMBOL_GPL0xf5a1b8f9videobuf_dvb_unregister_busdrivers/media/video/videobuf-dvbEXPORT_SYMBOL0x42a68654dib7090_get_adc_powerdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xbd2a3c50dib7090_get_i2c_tunerdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x73107885dvb_generic_ioctldrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x5d66ce65ipv6_dup_optionsvmlinuxEXPORT_SYMBOL_GPL0x1e094e05USBC_INT_ClearEpPendingAllvmlinuxEXPORT_SYMBOL0x6fddfa56phy_register_fixup_for_idvmlinuxEXPORT_SYMBOL0xa1f7f10eTCON_openvmlinuxEXPORT_SYMBOL0x05f45086sys_copyareavmlinuxEXPORT_SYMBOL0x47ed6626cgroup_attach_task_allvmlinuxEXPORT_SYMBOL_GPL0x46d3b28c__div0vmlinuxEXPORT_SYMBOL0x1282be7arxrpc_kernel_get_error_numbernet/rxrpc/af-rxrpcEXPORT_SYMBOL0xebbf5cb8ath_hw_setbssidmaskdrivers/net/wireless/ath/athEXPORT_SYMBOL0xb97ef388ad714x_enabledrivers/input/misc/ad714xEXPORT_SYMBOL0x49ee5be8drm_fasyncdrivers/gpu/drm/drmEXPORT_SYMBOL0xa53f7c4azap_vma_ptesvmlinuxEXPORT_SYMBOL_GPL0x9dc18df8ceph_osdc_create_eventnet/ceph/libcephEXPORT_SYMBOL0xc8eff53evb2_dqbufdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xec4e0395rpc_init_priority_wait_queuevmlinuxEXPORT_SYMBOL_GPL0x1b706fd4xfrm_policy_bysel_ctxvmlinuxEXPORT_SYMBOL0x1c7386f7tcp_sendmsgvmlinuxEXPORT_SYMBOL0xc9da7d8fsnd_soc_new_ac97_codecvmlinuxEXPORT_SYMBOL_GPL0x9569be93i2c_smbus_write_word_datavmlinuxEXPORT_SYMBOL0xf6464980ahci_em_messagesvmlinuxEXPORT_SYMBOL_GPL0x7e275ea8scsi_complete_async_scansvmlinuxEXPORT_SYMBOL_GPL0x891b8183elv_rb_delvmlinuxEXPORT_SYMBOL0xeac05093elv_rb_addvmlinuxEXPORT_SYMBOL0xbe48d944init_user_nsvmlinuxEXPORT_SYMBOL_GPL0x154944b0ath9k_hw_gettsf64drivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x8bb5eacdath9k_hw_settsf64drivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x265a9ae9drm_pci_exitdrivers/gpu/drm/drmEXPORT_SYMBOL0x8dfb1f41drm_pci_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x7ec812a3netif_skb_featuresvmlinuxEXPORT_SYMBOL0x0672694dsock_map_fdvmlinuxEXPORT_SYMBOL0x6d9d2580snd_soc_unregister_daisvmlinuxEXPORT_SYMBOL_GPL0x00632780work_busyvmlinuxEXPORT_SYMBOL_GPL0x594668b1lcd_device_unregisterdrivers/video/backlight/lcdEXPORT_SYMBOL0xceb4c9b8gspca_dev_probe2drivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0xdd4bc125__sk_mem_reclaimvmlinuxEXPORT_SYMBOL0x88708472d_prune_aliasesvmlinuxEXPORT_SYMBOL0x12a38747usleep_rangevmlinuxEXPORT_SYMBOL0xa586e503gameport_opendrivers/input/gameport/gameportEXPORT_SYMBOL0xa43b9539memcpy_fromiovecendvmlinuxEXPORT_SYMBOL0x719eda8bblk_make_requestvmlinuxEXPORT_SYMBOL0xbfc28b5e__pagevec_releasevmlinuxEXPORT_SYMBOL0x1e047854warn_slowpath_fmtvmlinuxEXPORT_SYMBOL0x0e81c76dspk_serial_outdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x2e9bf01cvideobuf_read_startdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xbfd4c8b6smscore_register_hotplugdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x199001ddcfg80211_cqm_rssi_notifyvmlinuxEXPORT_SYMBOL0x1cd42abdcache_register_netvmlinuxEXPORT_SYMBOL_GPL0x4fa2a685hid_unregister_drivervmlinuxEXPORT_SYMBOL_GPL0xfaf51a70nla_reserve_nohdrvmlinuxEXPORT_SYMBOL0xd921fa58securityfs_create_filevmlinuxEXPORT_SYMBOL_GPL0xa9c6e602exportfs_encode_fhvmlinuxEXPORT_SYMBOL_GPL0x10d799e5ilookup5vmlinuxEXPORT_SYMBOL0x1650bf27rcutorture_record_progressvmlinuxEXPORT_SYMBOL_GPL0xd59daefe_raw_spin_lock_irqvmlinuxEXPORT_SYMBOL0xf6910763prepare_credsvmlinuxEXPORT_SYMBOL0x3b4abce5mutex_unlockvmlinuxEXPORT_SYMBOL0x7347a02dunregister_cec_devicedrivers/video/hdmi-cec/hdmi-cecEXPORT_SYMBOL0x7edd552btransport_subsystem_releasedrivers/target/target_core_modEXPORT_SYMBOL0x0c1a1a2eath9k_hw_init_global_settingsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xab502e73alloc_can_skbdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x6951757bsoc_mbus_samples_per_pixeldrivers/media/video/soc_mediabusEXPORT_SYMBOL0xd5a6bfa6drm_unplug_devdrivers/gpu/drm/drmEXPORT_SYMBOL0x66c87d9bgenl_register_family_with_opsvmlinuxEXPORT_SYMBOL0x228bdc34dev_addr_flushvmlinuxEXPORT_SYMBOL0x745096dasnd_dma_reserve_bufvmlinuxEXPORT_SYMBOL0x83a476cebitmap_scnlistprintfvmlinuxEXPORT_SYMBOL0x4aeb945cjournal_release_buffervmlinuxEXPORT_SYMBOL0xc56ee3a2dquot_quota_syncvmlinuxEXPORT_SYMBOL0x587711deoslec_createdrivers/staging/echo/echoEXPORT_SYMBOL_GPL0x639bc4aaosduld_device_samedrivers/scsi/osd/osdEXPORT_SYMBOL0x8a57f277wiphy_rfkill_set_hw_statevmlinuxEXPORT_SYMBOL0x4148e01bsunrpc_cache_pipe_upcallvmlinuxEXPORT_SYMBOL_GPL0x41aae43asnd_soc_info_volsw_2r_sxvmlinuxEXPORT_SYMBOL_GPL0x1b12dbbcblkdev_get_by_devvmlinuxEXPORT_SYMBOL0x50523c4fath6kl_printkdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x88c9f58erc_allocate_devicedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x9df90827ping_queue_rcv_skbvmlinuxEXPORT_SYMBOL_GPL0xb7954287simple_fill_supervmlinuxEXPORT_SYMBOL0x09a30d0chave_submountsvmlinuxEXPORT_SYMBOL0x07cc4a5dprintk_timed_ratelimitvmlinuxEXPORT_SYMBOL0x6b043ebairda_init_max_qos_capabiliesnet/irda/irdaEXPORT_SYMBOL0x3a18389adm_rh_update_statesdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x2e3cfe15sock_queue_err_skbvmlinuxEXPORT_SYMBOL0xee26ef82snd_add_device_sysfs_filevmlinuxEXPORT_SYMBOL0xe6ebc016key_create_or_updatevmlinuxEXPORT_SYMBOL0x0faef0ed__tasklet_schedulevmlinuxEXPORT_SYMBOL0x785b348dirias_find_objectnet/irda/irdaEXPORT_SYMBOL0xa8fcbacdceph_messenger_initnet/ceph/libcephEXPORT_SYMBOL0x38eb78afrc_keydowndrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xade6c37axprt_adjust_cwndvmlinuxEXPORT_SYMBOL_GPL0xf4f14de6rtnl_trylockvmlinuxEXPORT_SYMBOL0x43008418dev_loadvmlinuxEXPORT_SYMBOL0xac0ba8c1blk_iopoll_disablevmlinuxEXPORT_SYMBOL0x650ea0a0debugfs_create_u16vmlinuxEXPORT_SYMBOL_GPL0x9a869c50bio_add_pagevmlinuxEXPORT_SYMBOL0x43794174init_pid_nsvmlinuxEXPORT_SYMBOL_GPL0x0fa2a45e__memzerovmlinuxEXPORT_SYMBOL0x7e9ebb05kernel_threadvmlinuxEXPORT_SYMBOL0x4b88532bipt_unregister_tablenet/ipv4/netfilter/ip_tablesEXPORT_SYMBOL0x60a4e0ddusb_wwan_writedrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x14f06fe7spk_serial_in_nowaitdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xfe1a960frt2x00mac_conf_txdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x434cbe0eath9k_hw_getchan_noisedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x4cae9081vb2_buffer_donedrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x40f2b10cipmi_alloc_smi_msgdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x945ce8c6USBC_Host_ClearEpNakTimeOutvmlinuxEXPORT_SYMBOL0x2c3ec548usb_unlink_anchored_urbsvmlinuxEXPORT_SYMBOL_GPL0xfb4febecfb_bl_default_curvevmlinuxEXPORT_SYMBOL_GPL0x77ecac9fzlib_inflateEndvmlinuxEXPORT_SYMBOL0x50feb706contig_page_datavmlinuxEXPORT_SYMBOL0xb41e9fd1xt_unregister_targetnet/netfilter/x_tablesEXPORT_SYMBOL0x6f7f67e4hostap_add_interfacedrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x797609dcflexcop_device_kfreedrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x123203fainet_frag_evictorvmlinuxEXPORT_SYMBOL0x40a4ea75led_trigger_showvmlinuxEXPORT_SYMBOL_GPL0xb423dba1console_blankedvmlinuxEXPORT_SYMBOL0x4fb39646ieee80211_start_tx_ba_sessionnet/mac80211/mac80211EXPORT_SYMBOL0xfd9b12e4v4l2_fh_is_singularvmlinuxEXPORT_SYMBOL_GPL0x23679939__iowrite32_copyvmlinuxEXPORT_SYMBOL_GPL0xc4e44ebfconfig_group_init_type_namevmlinuxEXPORT_SYMBOL0x2c86a51ect_sip_parse_address_paramnet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x6cf88115nf_conntrack_unregister_notifiernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xcd9a54bbiscsi_create_conndrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xdf541613rndis_rx_fixupdrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x2d6301f3cx231xx_capture_startdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x71008b73xdr_enter_pagevmlinuxEXPORT_SYMBOL_GPL0x5641487ffib_rules_registervmlinuxEXPORT_SYMBOL_GPL0x612390adnetpoll_set_trapvmlinuxEXPORT_SYMBOL0x2e88ddc3ata_do_ehvmlinuxEXPORT_SYMBOL_GPL0xfaf98462bitrev32vmlinuxEXPORT_SYMBOL0xb2165c42simple_transaction_readvmlinuxEXPORT_SYMBOL0x8a99a016mempool_free_slabvmlinuxEXPORT_SYMBOL0x37d91069smsendian_handle_tx_messagedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x45284ae9smsendian_handle_rx_messagedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x6d3f57bddm_bufio_get_clientdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x2577d3d5sw_usb_disable_hcdvmlinuxEXPORT_SYMBOL0xe9b83c17USBC_Host_SendCtrlStatusvmlinuxEXPORT_SYMBOL0xe384a102usb_speed_stringvmlinuxEXPORT_SYMBOL_GPL0x8c094adbpm_generic_resume_earlyvmlinuxEXPORT_SYMBOL_GPL0xb701382bpm_generic_thawvmlinuxEXPORT_SYMBOL_GPL0x60d2afa0generic_setxattrvmlinuxEXPORT_SYMBOL0x1f193114generic_getxattrvmlinuxEXPORT_SYMBOL0xe92e6bdausbnet_start_xmitdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xdab1b680cfg80211_connect_resultvmlinuxEXPORT_SYMBOL0x0a88d737gss_mech_registervmlinuxEXPORT_SYMBOL_GPL0xdd17250c__pm_runtime_resumevmlinuxEXPORT_SYMBOL_GPL0xecebfb33jbd2_journal_set_featuresvmlinuxEXPORT_SYMBOL0xab91b892mpage_readpagesvmlinuxEXPORT_SYMBOL0x1613fe9aiscsi_conn_get_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x1a10c898ipmi_set_maintenance_modedrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xcf1c7ed6i2c_unlock_adaptervmlinuxEXPORT_SYMBOL_GPL0x508bd3d9USBC_DisableDpDmPullUpvmlinuxEXPORT_SYMBOL0xb7c484e5regmap_raw_readvmlinuxEXPORT_SYMBOL_GPL0x6b807a5fgpio_sysfs_set_active_lowvmlinuxEXPORT_SYMBOL_GPL0x4df119fa__bitmap_parsevmlinuxEXPORT_SYMBOL0x4de4b942__wait_on_buffervmlinuxEXPORT_SYMBOL0x6baae653cancel_delayed_work_syncvmlinuxEXPORT_SYMBOL0xc94cafc2usb_serial_handle_sysrq_chardrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x12321a9cath9k_hw_abort_tx_dmadrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x97f83edfad7879_removedrivers/input/touchscreen/ad7879EXPORT_SYMBOL0x97474335sock_createvmlinuxEXPORT_SYMBOL0x2720f5b4clk_add_aliasvmlinuxEXPORT_SYMBOL0xad84bef8dm_table_eventvmlinuxEXPORT_SYMBOL0x743a165eata_pack_xfermaskvmlinuxEXPORT_SYMBOL_GPL0xfcd27ef3class_dev_iter_nextvmlinuxEXPORT_SYMBOL_GPL0x657310a5debugfs_create_x32vmlinuxEXPORT_SYMBOL_GPL0xfcdd52a8bprm_change_interpvmlinuxEXPORT_SYMBOL0xeb925d15kill_litter_supervmlinuxEXPORT_SYMBOL0x89008c2bip_vs_conn_newnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x44490120mwifiex_process_sleep_confirm_respdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x9894b9a2dm_region_hash_createdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x48625ca7inet_proto_csum_replace4vmlinuxEXPORT_SYMBOL0xe26539d5neigh_direct_outputvmlinuxEXPORT_SYMBOL0xf143a099usb_free_urbvmlinuxEXPORT_SYMBOL_GPL0x2bba5393tty_prepare_flip_string_flagsvmlinuxEXPORT_SYMBOL_GPL0x4fae86b2tty_prepare_flip_stringvmlinuxEXPORT_SYMBOL_GPL0xf1216c75prandom32vmlinuxEXPORT_SYMBOL0xfac51683blk_rq_check_limitsvmlinuxEXPORT_SYMBOL_GPL0xdae7b9f5__fscache_read_or_alloc_pagevmlinuxEXPORT_SYMBOL0x75bda77aseq_hlist_nextvmlinuxEXPORT_SYMBOL0x832b8f2baccount_page_dirtiedvmlinuxEXPORT_SYMBOL0x73c34d0e__lock_page_killablevmlinuxEXPORT_SYMBOL_GPL0x05062cd9fib_rules_unregistervmlinuxEXPORT_SYMBOL_GPL0xf0cf1df0skb_copy_bitsvmlinuxEXPORT_SYMBOL0x7203ca75cdrom_number_of_slotsvmlinuxEXPORT_SYMBOL0x189868d7get_random_bytes_archvmlinuxEXPORT_SYMBOL0xfe3899daLCD_CPU_WR_INDEXvmlinuxEXPORT_SYMBOL0xd6a6c0dc__blk_end_request_allvmlinuxEXPORT_SYMBOL0xcb5438a4crypto_register_ahashvmlinuxEXPORT_SYMBOL_GPL0x55277394sysfs_remove_linkvmlinuxEXPORT_SYMBOL_GPL0x8924eb1ercu_force_quiescent_statevmlinuxEXPORT_SYMBOL_GPL0x90ca72e1sunxi_script_initvmlinuxEXPORT_SYMBOL0x9e98722bip_set_get_ipaddr6net/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xa293f8a6ip_set_get_ipaddr4net/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xff1c9892ceph_osdc_unregister_linger_requestnet/ceph/libcephEXPORT_SYMBOL0x7429e6c3tcp_make_synackvmlinuxEXPORT_SYMBOL0x8bd27e3csnd_soc_add_codec_controlsvmlinuxEXPORT_SYMBOL_GPL0x5d5b6feeUSBC_Dev_QueryTransferModevmlinuxEXPORT_SYMBOL0xdfa91c62mii_check_gmii_supportvmlinuxEXPORT_SYMBOL0xb3533dbeata_ehi_clear_descvmlinuxEXPORT_SYMBOL_GPL0x0ffae1d5find_get_pagevmlinuxEXPORT_SYMBOL0x7d59dd46pm_wqvmlinuxEXPORT_SYMBOL_GPL0x4e71d259hrtimer_forwardvmlinuxEXPORT_SYMBOL_GPL0x7cfb7720bit_waitqueuevmlinuxEXPORT_SYMBOL0x1a2b2e26ptp_clock_registerdrivers/ptp/ptpEXPORT_SYMBOL0xe67e69e9p54_parse_eepromdrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x5861ec00sms_board_setupdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x26b6ae6esock_common_recvmsgvmlinuxEXPORT_SYMBOL0x0ce79fb0__video_register_devicevmlinuxEXPORT_SYMBOL0x77dd8b59ata_wait_registervmlinuxEXPORT_SYMBOL_GPL0x6c7786ebrt2x00usb_clear_entrydrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x7a80f66cvb2_writedrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x69f5fdbfinet_csk_addr2sockaddrvmlinuxEXPORT_SYMBOL_GPL0xeda0d76egen_estimator_activevmlinuxEXPORT_SYMBOL0x960469b7md_stop_writesvmlinuxEXPORT_SYMBOL_GPL0x8251bcc3bitmap_release_regionvmlinuxEXPORT_SYMBOL0x5567c227kernel_cpustatvmlinuxEXPORT_SYMBOL0x2a883e0eirias_add_octseq_attribnet/irda/irdaEXPORT_SYMBOL0x17d7f798ircomm_flow_requestnet/irda/ircomm/ircommEXPORT_SYMBOL0xa541bb14ssb_bus_may_powerdowndrivers/ssb/ssbEXPORT_SYMBOL0xa4832cf0iscsi_pool_freedrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x1d712436lis3lv02d_joystick_enabledrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0xb7ab9690cx231xx_register_extensiondrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL0xbe38a431dm_rh_recovery_preparedrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x4c04a670cfg80211_roamedvmlinuxEXPORT_SYMBOL0xb626e2baip_mc_inc_groupvmlinuxEXPORT_SYMBOL0xbc019f6atcp_orphan_countvmlinuxEXPORT_SYMBOL_GPL0x2aa59ddbrequest_key_with_auxdatavmlinuxEXPORT_SYMBOL0xc1fe12c7fat_attachvmlinuxEXPORT_SYMBOL_GPL0x49a1c2d6sysfs_remove_bin_filevmlinuxEXPORT_SYMBOL_GPL0xdde77192kick_iocbvmlinuxEXPORT_SYMBOL0x2ec1f55cregister_wide_hw_breakpointvmlinuxEXPORT_SYMBOL_GPL0xa67dd9favideobuf_queue_to_vaddrdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x4f2ae5f7hid_dump_devicevmlinuxEXPORT_SYMBOL_GPL0x34a48758md_new_eventvmlinuxEXPORT_SYMBOL_GPL0xefc2be8dwakeup_source_unregistervmlinuxEXPORT_SYMBOL_GPL0xb81960casnprintfvmlinuxEXPORT_SYMBOL0xd42f6ae8get_io_contextvmlinuxEXPORT_SYMBOL0x0b0a83acproc_mkdir_modevmlinuxEXPORT_SYMBOL0x0cae0495tag_pages_for_writebackvmlinuxEXPORT_SYMBOL0xc47cb81fscsi_tgt_tsk_mgmt_requestdrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x4828e1c8cx231xx_init_vbi_isocdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xa952c3c4rpcauth_destroy_credcachevmlinuxEXPORT_SYMBOL_GPL0xc32a20e6USBC_INT_ClearMiscPendingAllvmlinuxEXPORT_SYMBOL0x8e408a5fata_scsi_simulatevmlinuxEXPORT_SYMBOL_GPL0xc4714767devm_kzallocvmlinuxEXPORT_SYMBOL_GPL0x2296c00dcrypto_attr_u32vmlinuxEXPORT_SYMBOL_GPL0x4ee3940a__breadvmlinuxEXPORT_SYMBOL0xbba159e0files_lglock_local_unlockvmlinuxEXPORT_SYMBOL0xa1ebd8d7follow_pfnvmlinuxEXPORT_SYMBOL0xcba23b3chrtimer_initvmlinuxEXPORT_SYMBOL_GPL0x763ce19dieee80211_cqm_rssi_notifynet/mac80211/mac80211EXPORT_SYMBOL0x0e27c277iscsi_session_teardowndrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x1cbdd664ath_hw_get_listen_timedrivers/net/wireless/ath/athEXPORT_SYMBOL0x8191303bem28xx_init_isocdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0x954488a4syncookie_secretvmlinuxEXPORT_SYMBOL0x9ceb163cmemcpy_toiovecvmlinuxEXPORT_SYMBOL0x38395767v4l2_subdev_g_ext_ctrlsvmlinuxEXPORT_SYMBOL0x20d979a5v4l2_subdev_s_ext_ctrlsvmlinuxEXPORT_SYMBOL0x8811fc2firttp_udata_requestnet/irda/irdaEXPORT_SYMBOL0x35e4a5f1ptp_clock_unregisterdrivers/ptp/ptpEXPORT_SYMBOL0x1b6314fdin_atonvmlinuxEXPORT_SYMBOL0x770d6156neigh_resolve_outputvmlinuxEXPORT_SYMBOL0x65df737esnd_card_registervmlinuxEXPORT_SYMBOL0x83572ee1cfb_imageblitvmlinuxEXPORT_SYMBOL0x60aafb95journal_init_devvmlinuxEXPORT_SYMBOL0x4915d3bbposix_unblock_lockvmlinuxEXPORT_SYMBOL0x17fe55a5__mnt_is_readonlyvmlinuxEXPORT_SYMBOL_GPL0x3bbf46eavga_basevmlinuxEXPORT_SYMBOL0xc30c8cc5nf_nat_sip_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x8d9d12cenf_nat_irc_hooknet/netfilter/nf_conntrack_ircEXPORT_SYMBOL_GPL0xf9eb6c28nf_nat_ftp_hooknet/netfilter/nf_conntrack_ftpEXPORT_SYMBOL_GPL0xaef628f4rt2x00usb_probedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x8b6bc8a6p54_register_commondrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x78527de4ar9003_mci_get_interruptdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xe2a232e0tcp_closevmlinuxEXPORT_SYMBOL0xae7ece75__scm_sendvmlinuxEXPORT_SYMBOL0x6f3be1efsnd_soc_dapm_new_controlsvmlinuxEXPORT_SYMBOL_GPL0xa5999cdcmddev_resumevmlinuxEXPORT_SYMBOL_GPL0xbe6fffaeusb_register_devvmlinuxEXPORT_SYMBOL_GPL0x96c0cf9cscsi_dma_mapvmlinuxEXPORT_SYMBOL0xa07ed110xz_dec_initvmlinuxEXPORT_SYMBOL0xdeeaea2ftry_to_free_buffersvmlinuxEXPORT_SYMBOL0xf22576f7wait_iff_congestedvmlinuxEXPORT_SYMBOL0x740bde3c__put_credvmlinuxEXPORT_SYMBOL0x4fbfcabdlbs_get_firmwaredrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x3b341332i2400m_is_boot_barkerdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x6cefaeafnand_default_bbtdrivers/mtd/nand/nandEXPORT_SYMBOL0xac999c16ping_getfragvmlinuxEXPORT_SYMBOL_GPL0xf4b2d82adm_path_ueventvmlinuxEXPORT_SYMBOL_GPL0x26eeacbcregister_framebuffervmlinuxEXPORT_SYMBOL0x9bb742cadquot_free_inodevmlinuxEXPORT_SYMBOL0x0d272369rt2x00queue_map_txskbdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x78eb3e81mfd_remove_devicesdrivers/mfd/mfd-coreEXPORT_SYMBOL0x23c3c956pm_generic_suspend_latevmlinuxEXPORT_SYMBOL_GPL0x3cd06035add_input_randomnessvmlinuxEXPORT_SYMBOL_GPL0x9ed685eeiov_iter_advancevmlinuxEXPORT_SYMBOL0xe83e738bfbtft_write_gpio8_wrdrivers/video/fbtft/fbtftEXPORT_SYMBOL0x470303b3transport_lookup_cmd_lundrivers/target/target_core_modEXPORT_SYMBOL0xec63947dtransport_lookup_tmr_lundrivers/target/target_core_modEXPORT_SYMBOL0x90c27306xdr_set_scratch_buffervmlinuxEXPORT_SYMBOL_GPL0xcab3b8abregister_cdromvmlinuxEXPORT_SYMBOL0xed0eeadbscsi_unblock_requestsvmlinuxEXPORT_SYMBOL0x6e15a6e9device_remove_bin_filevmlinuxEXPORT_SYMBOL_GPL0x169a0fdftty_port_free_xmit_bufvmlinuxEXPORT_SYMBOL0xec1b043eregulator_suspend_preparevmlinuxEXPORT_SYMBOL_GPL0xca483065nf_ct_deliver_cached_eventsnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xacf3cc2crt2800_enable_radiodrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x7228d5damtd_unlockdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xaf5bf6efnfs_debugvmlinuxEXPORT_SYMBOL_GPL0x7c7415e8hidraw_report_eventvmlinuxEXPORT_SYMBOL_GPL0x1251d30fcall_rcuvmlinuxEXPORT_SYMBOL_GPL0xa185e3b2sas_get_pr_transport_id_lendrivers/target/target_core_modEXPORT_SYMBOL0x76474ab5dib8000_pid_filterdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x09cf9c30dvb_ringbuffer_emptydrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x7267db00hwrng_unregistervmlinuxEXPORT_SYMBOL_GPL0x737ce54dcrypto_nivaead_typevmlinuxEXPORT_SYMBOL_GPL0x4faa746cbdi_writeout_incvmlinuxEXPORT_SYMBOL_GPL0x376ec59cparport_remove_portdrivers/parport/parportEXPORT_SYMBOL0xfc3edf1bxfrm6_rcv_spivmlinuxEXPORT_SYMBOL0xfc04be0dsnd_pcm_release_substreamvmlinuxEXPORT_SYMBOL0x93633e7adma_release_from_coherentvmlinuxEXPORT_SYMBOL0x96d78955disk_stack_limitsvmlinuxEXPORT_SYMBOL0x75e8f3c3crypto_register_notifiervmlinuxEXPORT_SYMBOL_GPL0xd220cf8ajiffies_to_timespecvmlinuxEXPORT_SYMBOL0x85ba3174scsi_tgt_free_queuedrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x7f7a2a02dm_dirty_log_destroydrivers/md/dm-logEXPORT_SYMBOL0xd68bc852pskb_putvmlinuxEXPORT_SYMBOL_GPL0xa9f38141fib_table_lookupvmlinuxEXPORT_SYMBOL_GPL0x25297cbbsnd_soc_bytes_putvmlinuxEXPORT_SYMBOL_GPL0x98875241i2c_master_sendvmlinuxEXPORT_SYMBOL0x46082758USBC_Dev_EpClearStallvmlinuxEXPORT_SYMBOL0x014b8323ata_sas_slave_configurevmlinuxEXPORT_SYMBOL_GPL0x54974215ata_qc_completevmlinuxEXPORT_SYMBOL_GPL0x3e5ce3dedevice_reprobevmlinuxEXPORT_SYMBOL_GPL0x516b3b0cinc_nlinkvmlinuxEXPORT_SYMBOL0x8a1ab4eetimeval_to_jiffiesvmlinuxEXPORT_SYMBOL0x5e158381rt2800_process_rxwidrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xbbf0bee4dib8000_pwm_agc_resetdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x34f4b8d5dvb_ca_en50221_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x7774620fdm_rh_stop_recoverydrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xcbad015bwiphy_freevmlinuxEXPORT_SYMBOL0x6f47622d__netlink_dump_startvmlinuxEXPORT_SYMBOL0x5bcccc44dev_kfree_skb_anyvmlinuxEXPORT_SYMBOL0xb93b6627snd_ctl_new1vmlinuxEXPORT_SYMBOL0x49d97c58journal_abortvmlinuxEXPORT_SYMBOL0xfe13ed49seq_openvmlinuxEXPORT_SYMBOL0xdf3a82a6mnt_drop_writevmlinuxEXPORT_SYMBOL_GPL0x444f329asw_dma_ctlvmlinuxEXPORT_SYMBOL0xbcb0b5fbceph_osdc_readpagesnet/ceph/libcephEXPORT_SYMBOL0x190cce86usb_wwan_tiocmsetdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x41343259usb_wwan_tiocmgetdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0xa47e65b2iscsi_eh_device_resetdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x7fbab7ebath9k_cmn_update_ichanneldrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0x60bf8553drm_mm_init_scandrivers/gpu/drm/drmEXPORT_SYMBOL0x163827a0rpc_uaddr2sockaddrvmlinuxEXPORT_SYMBOL_GPL0x7e394c4esysctl_local_reserved_portsvmlinuxEXPORT_SYMBOL0xf4104a17simple_readpagevmlinuxEXPORT_SYMBOL0xf3b0ebd2__lock_pagevmlinuxEXPORT_SYMBOL0xf499fdb2rcu_barrier_bhvmlinuxEXPORT_SYMBOL_GPL0x836fcabfsynchronize_srcu_expeditedvmlinuxEXPORT_SYMBOL_GPL0x8320bea8__umodsi3vmlinuxEXPORT_SYMBOL0x9fec33c9tcp_cong_avoid_aivmlinuxEXPORT_SYMBOL_GPL0xab6bde28sysctl_max_syn_backlogvmlinuxEXPORT_SYMBOL0xcabe04decpuidle_resume_and_unlockvmlinuxEXPORT_SYMBOL_GPL0xdb7d8df1usb_altnum_to_altsettingvmlinuxEXPORT_SYMBOL_GPL0xd181a33bblk_delay_queuevmlinuxEXPORT_SYMBOL0x825761d8follow_downvmlinuxEXPORT_SYMBOL0xece0799b__generic_file_aio_writevmlinuxEXPORT_SYMBOL0xd3e09f75filemap_write_and_wait_rangevmlinuxEXPORT_SYMBOL0xc917e655debug_smp_processor_idvmlinuxEXPORT_SYMBOL0x360b1afeprobe_irq_maskvmlinuxEXPORT_SYMBOL0xfa51f6a5ubi_leb_readdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xfae7ef36dib3000mc_pid_controldrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0x65889933drm_mode_create_dithering_propertydrivers/gpu/drm/drmEXPORT_SYMBOL0xaa5e4d66btmrvl_add_carddrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x3a068a81cfg80211_rx_mgmtvmlinuxEXPORT_SYMBOL0x34658d1csnd_soc_jack_notifier_unregistervmlinuxEXPORT_SYMBOL_GPL0x485803d4genphy_read_statusvmlinuxEXPORT_SYMBOL0x707ff1bbata_xfer_mask2modevmlinuxEXPORT_SYMBOL_GPL0x820f1349redraw_screenvmlinuxEXPORT_SYMBOL0x864c1301tty_unregister_drivervmlinuxEXPORT_SYMBOL0x7fe92f0eget_write_accessvmlinuxEXPORT_SYMBOL0x4f9b93d3invalidate_mapping_pagesvmlinuxEXPORT_SYMBOL0x5c28cca5ieee80211_get_tkip_p1k_ivnet/mac80211/mac80211EXPORT_SYMBOL0x1462d864fbtft_write_reg16_bus8drivers/video/fbtft/fbtftEXPORT_SYMBOL0x77f6cb5bdrm_polldrivers/gpu/drm/drmEXPORT_SYMBOL0x3bdd0f94v4l2_prio_changevmlinuxEXPORT_SYMBOL0xf3bf0bce__bitmap_complementvmlinuxEXPORT_SYMBOL0xe2e8065ememdup_uservmlinuxEXPORT_SYMBOL0xf4c58434ath_gen_timer_freedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x70097aa0nand_bch_freedrivers/mtd/nand/nand_bchEXPORT_SYMBOL0x1fefca0bping_get_portvmlinuxEXPORT_SYMBOL_GPL0x1f36b28dthermal_cooling_device_unregistervmlinuxEXPORT_SYMBOL0xf59325a9dma_get_required_maskvmlinuxEXPORT_SYMBOL_GPL0xc996d097del_timervmlinuxEXPORT_SYMBOL0x53f5948amap_destroydrivers/mtd/chips/chipregEXPORT_SYMBOL0x16dcec76ipmi_set_my_addressdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x4dc45be9nf_log_unbind_pfvmlinuxEXPORT_SYMBOL0x13441f05usb_get_current_frame_numbervmlinuxEXPORT_SYMBOL_GPL0x5bb906a7wait_rcu_gpvmlinuxEXPORT_SYMBOL_GPL0xd16eb7ednf_ct_expect_find_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x3be28a50hci_suspend_devnet/bluetooth/bluetoothEXPORT_SYMBOL0x585ebaacn_tracesink_datadraindrivers/tty/n_tracesinkEXPORT_SYMBOL_GPL0xbbfac79ftransport_generic_request_failuredrivers/target/target_core_modEXPORT_SYMBOL0x305ba76dsmscore_set_board_iddrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x315112e0smscore_get_board_iddrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x6e25fd5ftcp_v4_send_checkvmlinuxEXPORT_SYMBOL0x5ccba37fdev_closevmlinuxEXPORT_SYMBOL0xe894ff71snd_pcm_lib_free_pagesvmlinuxEXPORT_SYMBOL0x806083e3dma_buf_getvmlinuxEXPORT_SYMBOL_GPL0xbfae7fbfdma_buf_putvmlinuxEXPORT_SYMBOL_GPL0xfc7a80b8LCD_OPEN_FUNCvmlinuxEXPORT_SYMBOL0xaddcee7c__mark_inode_dirtyvmlinuxEXPORT_SYMBOL0xd98a3c61xt_socket_put_sknet/netfilter/xt_socketEXPORT_SYMBOL0x7411409di2400m_unknown_barkerdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL0xdea581d5zl10353_attachdrivers/media/dvb/frontends/zl10353EXPORT_SYMBOL0xc39f124btda9887_attachdrivers/media/common/tuners/tda9887EXPORT_SYMBOL_GPL0xe79830f4noop_qdiscvmlinuxEXPORT_SYMBOL0xd4aa8bd2sock_alloc_send_skbvmlinuxEXPORT_SYMBOL0x528dca8asnd_soc_dapm_nc_pinvmlinuxEXPORT_SYMBOL_GPL0x6784be5csnd_card_disconnectvmlinuxEXPORT_SYMBOL0x31c0c2d1dm_putvmlinuxEXPORT_SYMBOL_GPL0x3adbd595v4l2_field_namesvmlinuxEXPORT_SYMBOL0xd9ce8f0cstrnlenvmlinuxEXPORT_SYMBOL0xc11bfebeunregister_filesystemvmlinuxEXPORT_SYMBOL0x4abbe3c2vm_brkvmlinuxEXPORT_SYMBOL0xd418e1c0adjust_resourcevmlinuxEXPORT_SYMBOL0x5b89f463dm_dirty_log_createdrivers/md/dm-logEXPORT_SYMBOL0x0ec2d1a5xfrm_state_insertvmlinuxEXPORT_SYMBOL0xd0e43207usb_nop_xceiv_registervmlinuxEXPORT_SYMBOL0x474359b6kmsg_dump_registervmlinuxEXPORT_SYMBOL_GPL0x40728a63xt_find_revisionnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x12906db9ath9k_hw_set_interruptsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x9bc5ffc8rpc_peeraddr2strvmlinuxEXPORT_SYMBOL_GPL0x48028167ahci_reset_controllervmlinuxEXPORT_SYMBOL_GPL0x026cfbb3__destroy_inodevmlinuxEXPORT_SYMBOL0x768b201fnf_conntrack_l3proto_genericnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xa078a805lis3lv02d_powerondrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0x3c7414bdtcp_is_cwnd_limitedvmlinuxEXPORT_SYMBOL_GPL0x4d6ddf70snd_soc_dai_set_channel_mapvmlinuxEXPORT_SYMBOL_GPL0xa361c619usb_mon_registervmlinuxEXPORT_SYMBOL_GPL0x616a1185blk_rq_unmap_uservmlinuxEXPORT_SYMBOL0x3dd879a7crypto_mod_getvmlinuxEXPORT_SYMBOL_GPL0x0bc477a2irq_set_irq_typevmlinuxEXPORT_SYMBOL0xce2840e7irq_set_irq_wakevmlinuxEXPORT_SYMBOL0xe8358343fc_remove_hostdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x55f1d52esnd_rawmidi_drop_outputvmlinuxEXPORT_SYMBOL0xd9fea564v4l2_device_unregister_subdevvmlinuxEXPORT_SYMBOL_GPL0x91037e07USBC_IsDpDmChangevmlinuxEXPORT_SYMBOL0x48025072ata_sas_port_initvmlinuxEXPORT_SYMBOL_GPL0xbef94b32__remove_inode_hashvmlinuxEXPORT_SYMBOL0x268ad273__lru_cache_addvmlinuxEXPORT_SYMBOL0xa8380d34kernel_execvevmlinuxEXPORT_SYMBOL0xb312b364l2tp_session_freenet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x796de151dib0070_get_rf_outputdrivers/media/dvb/frontends/dib0070EXPORT_SYMBOL0x3e056395dib0070_set_rf_outputdrivers/media/dvb/frontends/dib0070EXPORT_SYMBOL0x02f14ad6USBC_INT_DisableUsbMiscAllvmlinuxEXPORT_SYMBOL0x6128b5fc__printk_ratelimitvmlinuxEXPORT_SYMBOL0x8c91686cxdr_read_pagesvmlinuxEXPORT_SYMBOL_GPL0x6d718327xdr_encode_pagesvmlinuxEXPORT_SYMBOL_GPL0xcc1f1c3dinet_twdr_hangmanvmlinuxEXPORT_SYMBOL_GPL0x4547707esw_usb_disable_hcd0vmlinuxEXPORT_SYMBOL0xf0d26febUSBC_ConfigFifo_DefaultvmlinuxEXPORT_SYMBOL0x96ca5f7apm_generic_restore_earlyvmlinuxEXPORT_SYMBOL_GPL0x6fbb3bd9init_rs_non_canonicalvmlinuxEXPORT_SYMBOL_GPL0x6e3fe5b1__blk_end_request_curvmlinuxEXPORT_SYMBOL0xb1f22e1f__blk_end_request_errvmlinuxEXPORT_SYMBOL_GPL0xb2682405utf8_to_utf32vmlinuxEXPORT_SYMBOL0x7d27635atransport_do_task_sg_chaindrivers/target/target_core_modEXPORT_SYMBOL0x76752e16iscsi_create_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xf26e62f8dm_dirty_log_type_unregisterdrivers/md/dm-logEXPORT_SYMBOL0xe4649fdeaf_alg_cmsg_sendcrypto/af_algEXPORT_SYMBOL_GPL0x0c3fa535scsi_prep_returnvmlinuxEXPORT_SYMBOL0x9437e443__pm_runtime_disablevmlinuxEXPORT_SYMBOL_GPL0x9325a019__bus_registervmlinuxEXPORT_SYMBOL_GPL0x7460aee0crypto_sha1_updatevmlinuxEXPORT_SYMBOL0x4115b98boverride_credsvmlinuxEXPORT_SYMBOL0x131db64asystem_long_wqvmlinuxEXPORT_SYMBOL_GPL0x0b28defbkmsg_dump_unregistervmlinuxEXPORT_SYMBOL_GPL0x57c4e942cx231xx_enable656drivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x606d0b09secure_tcpv6_sequence_numbervmlinuxEXPORT_SYMBOL0xccef52f1input_register_handlevmlinuxEXPORT_SYMBOL0x14e1b632disp_check_fbmemvmlinuxEXPORT_SYMBOL0x504281f5blkdev_issue_zerooutvmlinuxEXPORT_SYMBOL0x0e985ea5journal_get_create_accessvmlinuxEXPORT_SYMBOL0xac7e95eehandle_level_irqvmlinuxEXPORT_SYMBOL_GPL0xb6fd5989fc_get_fabric_proto_identdrivers/target/target_core_modEXPORT_SYMBOL0xbe926590iscsi_eh_abortdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xc781bd9frfkill_resume_pollingvmlinuxEXPORT_SYMBOL0x982e6b6dieee80211_radiotap_iterator_initvmlinuxEXPORT_SYMBOL0x131011fcsdio_writesbvmlinuxEXPORT_SYMBOL_GPL0x81e752ecata_dev_printkvmlinuxEXPORT_SYMBOL0xf30fda27lzo1x_decompress_safevmlinuxEXPORT_SYMBOL_GPL0x3db91586scatterwalk_donevmlinuxEXPORT_SYMBOL_GPL0x90d4f3darequest_keyvmlinuxEXPORT_SYMBOL0x75054c3f__fscache_register_netfsvmlinuxEXPORT_SYMBOL0xf3ab55abkern_unmountvmlinuxEXPORT_SYMBOL0xb813ce5atimecompare_transformvmlinuxEXPORT_SYMBOL_GPL0x68dcd608ip_vs_proto_getnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x183b3f01ceph_con_initnet/ceph/libcephEXPORT_SYMBOL0xfabb85cemtd_table_mutexdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x19f79bf6drm_prime_add_imported_buf_handledrivers/gpu/drm/drmEXPORT_SYMBOL0x1269e1d4roccat_common_sendvmlinuxEXPORT_SYMBOL_GPL0x791ab099v4l2_ctrl_query_fillvmlinuxEXPORT_SYMBOL0x41e8541eusb_control_msgvmlinuxEXPORT_SYMBOL_GPL0x4959afdbnla_appendvmlinuxEXPORT_SYMBOL0xb86e4ab9random32vmlinuxEXPORT_SYMBOL0xebd1d922skcipher_geniv_freevmlinuxEXPORT_SYMBOL_GPL0x33991eedjbd2_journal_lock_updatesvmlinuxEXPORT_SYMBOL0x153c4276__fscache_read_or_alloc_pagesvmlinuxEXPORT_SYMBOL0x48eda381vfs_llseekvmlinuxEXPORT_SYMBOL0x723fd051__irq_set_handlervmlinuxEXPORT_SYMBOL_GPL0x2d17a0e1cgroup_taskset_sizevmlinuxEXPORT_SYMBOL_GPL0x8f67643dieee80211_find_stanet/mac80211/mac80211EXPORT_SYMBOL0xdb61cdf7ieee80211_tx_status_irqsafenet/mac80211/mac80211EXPORT_SYMBOL0x5ab46355snd_dma_free_pagesvmlinuxEXPORT_SYMBOL0x46feb099dm_read_argvmlinuxEXPORT_SYMBOL0x45ecdbb6dev_set_drvdatavmlinuxEXPORT_SYMBOL0x940a6633dev_get_drvdatavmlinuxEXPORT_SYMBOL0x7ceaf0d5generic_handle_irqvmlinuxEXPORT_SYMBOL_GPL0xbbfd561dbt_sock_unlinknet/bluetooth/bluetoothEXPORT_SYMBOL0x883f79beiscsi_add_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xa5e45766ath6kl_core_destroydrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0xb02f32fdcan_free_echo_skbdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x66c784b0snd_soc_dapm_add_routesvmlinuxEXPORT_SYMBOL_GPL0x75ba7382nfs4_schedule_lease_recoveryvmlinuxEXPORT_SYMBOL_GPL0xbcf06279dquot_resumevmlinuxEXPORT_SYMBOL0xebeb2a78blocking_notifier_chain_cond_registervmlinuxEXPORT_SYMBOL_GPL0x9d251144drm_fb_helper_panicdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x2f2964fd__xfrm_state_destroyvmlinuxEXPORT_SYMBOL0x19ba72cdtcp_v4_md5_hash_skbvmlinuxEXPORT_SYMBOL0x8106095av4l2_prio_maxvmlinuxEXPORT_SYMBOL0x091da7adsw_hcd_platform_enablevmlinuxEXPORT_SYMBOL0x53119fe4usb_unpoison_urbvmlinuxEXPORT_SYMBOL_GPL0x69fb399atty_port_initvmlinuxEXPORT_SYMBOL0x3f5b9015complete_request_keyvmlinuxEXPORT_SYMBOL0x1f8544b8panic_timeoutvmlinuxEXPORT_SYMBOL_GPL0xc9682c0crt2x00usb_uninitializedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x6f741d25ar9003_paprd_init_tabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x0ff1e785af_alg_completecrypto/af_algEXPORT_SYMBOL_GPL0xa20ce1b8net_msg_warnvmlinuxEXPORT_SYMBOL0x5ef1ffa1__sock_recv_timestampvmlinuxEXPORT_SYMBOL_GPL0x6225637emd5_transformvmlinuxEXPORT_SYMBOL0xb1822f65securityfs_removevmlinuxEXPORT_SYMBOL_GPL0x9af40885noop_fsyncvmlinuxEXPORT_SYMBOL0x59a2eebfosd_req_write_kerndrivers/scsi/osd/libosdEXPORT_SYMBOL0xcdf8fa84lbs_remove_carddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xa14598e4hostap_set_stringdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xbca384d7videobuf_mmap_setupdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xdeb0ea38tea5767_autodetectiondrivers/media/common/tuners/tea5767EXPORT_SYMBOL_GPL0x77baa73ftpm_calc_ordinal_durationdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x9df40a79cfg80211_ibss_joinedvmlinuxEXPORT_SYMBOL0xf9235fc3rpc_count_iostatsvmlinuxEXPORT_SYMBOL_GPL0x6d501d69rpc_destroy_pipe_datavmlinuxEXPORT_SYMBOL_GPL0xfc7e2ef9scsi_add_host_with_dmavmlinuxEXPORT_SYMBOL0x0a3f7a24devres_remove_groupvmlinuxEXPORT_SYMBOL_GPL0x39ae4302crypto_hash_walk_firstvmlinuxEXPORT_SYMBOL_GPL0xf9b8dfb3drm_kms_helper_poll_finidrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xcf66ae12drm_mmapdrivers/gpu/drm/drmEXPORT_SYMBOL0xd629499cinet_sendpagevmlinuxEXPORT_SYMBOL0x5fa17c73sk_filter_release_rcuvmlinuxEXPORT_SYMBOL0xba2abb9edev_get_by_index_rcuvmlinuxEXPORT_SYMBOL0x1a029057dev_set_allmultivmlinuxEXPORT_SYMBOL0xb98e4f35snd_ctl_remove_idvmlinuxEXPORT_SYMBOL0x44a64e60mmc_can_erasevmlinuxEXPORT_SYMBOL0x9a4799b5i2c_add_adaptervmlinuxEXPORT_SYMBOL0x32c5e176input_mt_report_finger_countvmlinuxEXPORT_SYMBOL0x93421061USBC_Host_IsEpErrorvmlinuxEXPORT_SYMBOL0xea10655a__bitmap_intersectsvmlinuxEXPORT_SYMBOL0xf313da4esha_transformvmlinuxEXPORT_SYMBOL0x9b6eb137ksizevmlinuxEXPORT_SYMBOL0x38869d88kstatvmlinuxEXPORT_SYMBOL0xe707d823__aeabi_uidivvmlinuxEXPORT_SYMBOL0x47cc8f6ahci_conn_securitynet/bluetooth/bluetoothEXPORT_SYMBOL0x3201b193fbtft_write_spidrivers/video/fbtft/fbtftEXPORT_SYMBOL0xc6236698dm_send_ueventsvmlinuxEXPORT_SYMBOL_GPL0x39d47ee2v4l2_ctrl_del_eventvmlinuxEXPORT_SYMBOL0x2b3a29a6kobject_set_namevmlinuxEXPORT_SYMBOL0xe7605b52shmem_truncate_rangevmlinuxEXPORT_SYMBOL_GPL0xa5efbf4casync_synchronize_fullvmlinuxEXPORT_SYMBOL_GPL0x47f757deelf_platformvmlinuxEXPORT_SYMBOL0x5706781cbt_debugfsnet/bluetooth/bluetoothEXPORT_SYMBOL_GPL0x5b5987fdipmi_smi_watcher_registerdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xcb252290media_entity_remote_sourcevmlinuxEXPORT_SYMBOL_GPL0x22dc33eeset_device_rovmlinuxEXPORT_SYMBOL0xbb038ce4perf_unregister_guest_info_callbacksvmlinuxEXPORT_SYMBOL_GPL0xbaa513b0dm_sm_disk_opendrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x27a4affeusb_anchor_urbvmlinuxEXPORT_SYMBOL_GPL0x3c0d6ebashash_attr_algvmlinuxEXPORT_SYMBOL_GPL0x63eb9355panic_blinkvmlinuxEXPORT_SYMBOL0x4b6c7586ppp_register_channelvmlinuxEXPORT_SYMBOL0x884f7f95ata_sas_port_stopvmlinuxEXPORT_SYMBOL_GPL0x646d7e81__sync_dirty_buffervmlinuxEXPORT_SYMBOL0x2c3355d8kmap_highvmlinuxEXPORT_SYMBOL0x13e40a79cancel_dirty_pagevmlinuxEXPORT_SYMBOL0x82072614tasklet_killvmlinuxEXPORT_SYMBOL0xb82902a6fc_get_host_speeddrivers/scsi/libfc/libfcEXPORT_SYMBOL0x0a59c703fc_fc4_deregister_providerdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x5f7d87dcdvb_unregister_frontenddrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xbd2786eb__gameport_register_portdrivers/input/gameport/gameportEXPORT_SYMBOL0x7913c0ceasync_syndrome_valcrypto/async_tx/async_pqEXPORT_SYMBOL_GPL0xa473d666i2c_use_clientvmlinuxEXPORT_SYMBOL0x7865152escsi_print_commandvmlinuxEXPORT_SYMBOL0x2775a551amba_driver_registervmlinuxEXPORT_SYMBOL0x3852c684bio_endiovmlinuxEXPORT_SYMBOL0x55afea2caccount_page_redirtyvmlinuxEXPORT_SYMBOL0x2b59692enf_ct_expect_unregister_notifiernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc1d813c8ieee80211_stop_queuesnet/mac80211/mac80211EXPORT_SYMBOL0xef90e5casas_rphy_removedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x7326897fcryptd_ablkcipher_childcrypto/cryptdEXPORT_SYMBOL_GPL0xba60037fsk_stop_timervmlinuxEXPORT_SYMBOL0x9cd60539sg_free_tablevmlinuxEXPORT_SYMBOL0xd60736ecgf128mul_free_64kvmlinuxEXPORT_SYMBOL0x8c9b3ceflocks_remove_posixvmlinuxEXPORT_SYMBOL0x43b0c9c3preempt_schedulevmlinuxEXPORT_SYMBOL0x57aa8eb0iscsi_unregister_transportdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x8a8dfa5cstv090x_set_gpiodrivers/media/dvb/frontends/stv090xEXPORT_SYMBOL0x8d9950c2pm_generic_thaw_noirqvmlinuxEXPORT_SYMBOL_GPL0x5d5b5a16radix_tree_deletevmlinuxEXPORT_SYMBOL0x344a50edgpio_releasevmlinuxEXPORT_SYMBOL0x21f6bba6nfnl_acct_find_getnet/netfilter/nfnetlink_acctEXPORT_SYMBOL_GPL0xa54dbc07ieee80211_enable_dyn_psnet/mac80211/mac80211EXPORT_SYMBOL0xb3b65ec8simple_tuner_attachdrivers/media/common/tuners/tuner-simpleEXPORT_SYMBOL_GPL0xd2414214tcp_slow_startvmlinuxEXPORT_SYMBOL_GPL0x45231c46proc_net_netfiltervmlinuxEXPORT_SYMBOL0x7a479da6dev_activatevmlinuxEXPORT_SYMBOL0x209efca1__pneigh_lookupvmlinuxEXPORT_SYMBOL_GPL0xc791b7cdled_brightness_setvmlinuxEXPORT_SYMBOL0xf48bc9daace_hsramvmlinuxEXPORT_SYMBOL0xf353a360devm_iounmapvmlinuxEXPORT_SYMBOL0x9ad56b2bdevm_ioremapvmlinuxEXPORT_SYMBOL0x5541ea93on_each_cpuvmlinuxEXPORT_SYMBOL0x112e4846parport_find_numberdrivers/parport/parportEXPORT_SYMBOL0x9710eb4ddrm_gem_object_lookupdrivers/gpu/drm/drmEXPORT_SYMBOL0x140cc9c6snd_pcm_set_syncvmlinuxEXPORT_SYMBOL0xef75f401nla_reservevmlinuxEXPORT_SYMBOL0xcb7e5a94bioset_createvmlinuxEXPORT_SYMBOL0xd7dd5311cgroup_lock_live_groupvmlinuxEXPORT_SYMBOL_GPL0x1cbaa72bcpu_topologyvmlinuxEXPORT_SYMBOL_GPL0x6ef1820erelease_pmuvmlinuxEXPORT_SYMBOL_GPL0x44f983f0speakup_eventdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x949f57d6dib0070_attachdrivers/media/dvb/frontends/dib0070EXPORT_SYMBOL0x440c22a5rtnl_put_cacheinfovmlinuxEXPORT_SYMBOL_GPL0x10b1f0e6__cpufreq_driver_targetvmlinuxEXPORT_SYMBOL_GPL0xea124bd1gcdvmlinuxEXPORT_SYMBOL_GPL0x5a3220e6iholdvmlinuxEXPORT_SYMBOL0x2668e597names_cachepvmlinuxEXPORT_SYMBOL0xbe8f2f94invalidate_inode_pages2_rangevmlinuxEXPORT_SYMBOL_GPL0xb0d904b7raid6_empty_zero_pagelib/raid6/raid6_pqEXPORT_SYMBOL0xc8e96deaqword_addhexvmlinuxEXPORT_SYMBOL_GPL0x6341fc02xfrm_policy_register_afinfovmlinuxEXPORT_SYMBOL0x9894d617snd_info_create_card_entryvmlinuxEXPORT_SYMBOL0x980814cfaxp_updatevmlinuxEXPORT_SYMBOL_GPL0x8643532cUSBC_Host_ConfigEpvmlinuxEXPORT_SYMBOL0xcf024966ata_qc_complete_multiplevmlinuxEXPORT_SYMBOL_GPL0x8547d27akey_instantiate_and_linkvmlinuxEXPORT_SYMBOL0x4b0e05d3dentry_path_rawvmlinuxEXPORT_SYMBOL0x6800d22cwimax_msg_allocnet/wimax/wimaxEXPORT_SYMBOL_GPL0x7b7c470dxfrm_sad_getinfovmlinuxEXPORT_SYMBOL0x81cfe11enetif_napi_delvmlinuxEXPORT_SYMBOL0x0f751aeainput_event_from_uservmlinuxEXPORT_SYMBOL_GPL0x4484a5a4wait_for_device_probevmlinuxEXPORT_SYMBOL_GPL0x99d0e2cftty_port_putvmlinuxEXPORT_SYMBOL0xa1b759cefb_add_videomodevmlinuxEXPORT_SYMBOL0xeff02eafcrypto_register_algvmlinuxEXPORT_SYMBOL_GPL0xd14f0483debugfs_renamevmlinuxEXPORT_SYMBOL_GPL0xeac46350simple_openvmlinuxEXPORT_SYMBOL0xbe5f8705single_openvmlinuxEXPORT_SYMBOL0x78f55e3apage_follow_link_lightvmlinuxEXPORT_SYMBOL0x3c831441arm_check_conditionvmlinuxEXPORT_SYMBOL_GPL0xbcd59308snd_ac97_suspendsound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x98196de7RTMP_Usb_AutoPM_Get_Interfacedrivers/net/wireless/rtxx7x/rt5370staEXPORT_SYMBOL0x54fe8127brcmu_pktq_mdeqdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x1e07477fbrcmu_pktq_mlendrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0xb70b5bf8drm_helper_disable_unused_functionsdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x02c804b2cfg80211_send_disassocvmlinuxEXPORT_SYMBOL0x2b77bd15xfrm6_find_1stfragoptvmlinuxEXPORT_SYMBOL0x198788b4snd_lookup_oss_minor_datavmlinuxEXPORT_SYMBOL0x4a3ea5c0snd_request_cardvmlinuxEXPORT_SYMBOL0x04929763USBC_Dev_ConfigTransferModevmlinuxEXPORT_SYMBOL0xfef96e23__scsi_print_commandvmlinuxEXPORT_SYMBOL0x5e271bbakthread_stopvmlinuxEXPORT_SYMBOL0xe2bb9a9arxrpc_kernel_intercept_rx_messagesnet/rxrpc/af-rxrpcEXPORT_SYMBOL0xe463619cl2tp_nl_register_opsnet/l2tp/l2tp_netlinkEXPORT_SYMBOL_GPL0x1a65f86cgameport_unregister_driverdrivers/input/gameport/gameportEXPORT_SYMBOL0xbd7922bcdm_register_targetvmlinuxEXPORT_SYMBOL0x8e86e6f9lockd_downvmlinuxEXPORT_SYMBOL_GPL0xee1fa53ajournal_trans_will_send_data_barriervmlinuxEXPORT_SYMBOL0x0b3e26e0ieee80211_nullfunc_getnet/mac80211/mac80211EXPORT_SYMBOL0xdf55377epmbus_do_removedrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x5d3d9612xprt_reserve_xprtvmlinuxEXPORT_SYMBOL_GPL0xe53509e9hid_register_reportvmlinuxEXPORT_SYMBOL_GPL0xcda04a5bv4l2_prio_closevmlinuxEXPORT_SYMBOL0xc760259crtc_set_alarmvmlinuxEXPORT_SYMBOL_GPL0x76fae6b2ahci_kick_enginevmlinuxEXPORT_SYMBOL_GPL0x7ab96d53__scsi_get_commandvmlinuxEXPORT_SYMBOL_GPL0x7f3a4b0a__scsi_put_commandvmlinuxEXPORT_SYMBOL0xaa4a7797hex2binvmlinuxEXPORT_SYMBOL0x256686c7crypto_default_rngvmlinuxEXPORT_SYMBOL_GPL0x2976b35ed_make_rootvmlinuxEXPORT_SYMBOL0x885c528eip_set_testnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x076c5a76ezusb_writememorydrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xb516e08dinet_csk_listen_startvmlinuxEXPORT_SYMBOL_GPL0x56e17998regmap_update_bits_checkvmlinuxEXPORT_SYMBOL_GPL0x94d8ce14LCD_GPIO_writevmlinuxEXPORT_SYMBOL0xfcc2a43cutf32_to_utf8vmlinuxEXPORT_SYMBOL0x800df1d7groups_freevmlinuxEXPORT_SYMBOL0xff5c8983cleanup_srcu_structvmlinuxEXPORT_SYMBOL_GPL0x3980aac1unregister_reboot_notifiervmlinuxEXPORT_SYMBOL0x562672eeceph_osdc_writepagesnet/ceph/libcephEXPORT_SYMBOL0x8e146195synth_release_regiondrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xa9c9225eregmap_register_patchvmlinuxEXPORT_SYMBOL_GPL0x02aa52b2tty_perform_flushvmlinuxEXPORT_SYMBOL_GPL0x384ef9cegf128mul_64k_bbevmlinuxEXPORT_SYMBOL0xc0890413gf128mul_64k_llevmlinuxEXPORT_SYMBOL0x9cdf0ec5vfsmount_lock_global_lock_onlinevmlinuxEXPORT_SYMBOL0x5f34132bip_vs_scheduler_errnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x89b18b38ieee80211_stop_rx_ba_sessionnet/mac80211/mac80211EXPORT_SYMBOL0x1aba5db8ipmi_unregister_smidrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xbb166a53debugfs_remove_recursivevmlinuxEXPORT_SYMBOL_GPL0x874be1d6_raw_read_unlock_bhvmlinuxEXPORT_SYMBOL0xb674d48atpm_dev_releasedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x04cabed9rfkill_registervmlinuxEXPORT_SYMBOL0x555c5853cfg80211_send_deauthvmlinuxEXPORT_SYMBOL0xf52f5880neigh_parms_allocvmlinuxEXPORT_SYMBOL0x4bcaedd4cpuidle_unregister_devicevmlinuxEXPORT_SYMBOL_GPL0x19a304bausb_disabledvmlinuxEXPORT_SYMBOL_GPL0xd7585352mount_singlevmlinuxEXPORT_SYMBOL0x3a8ad4dcinterruptible_sleep_onvmlinuxEXPORT_SYMBOL0xde32e0cf__ip_route_output_keyvmlinuxEXPORT_SYMBOL_GPL0x5e7f4920snd_pcm_format_set_silencevmlinuxEXPORT_SYMBOL0xe6488b47cpufreq_notify_transitionvmlinuxEXPORT_SYMBOL_GPL0xb9c425deregister_syscore_opsvmlinuxEXPORT_SYMBOL_GPL0xe3ff7fc4blk_queue_invalidate_tagsvmlinuxEXPORT_SYMBOL0x6b7fa401remove_irqvmlinuxEXPORT_SYMBOL_GPL0x93a6e0b2io_schedulevmlinuxEXPORT_SYMBOL0x4b23bf8fcfb_fillrectvmlinuxEXPORT_SYMBOL0x0da0b573disk_part_iter_nextvmlinuxEXPORT_SYMBOL_GPL0x37f0dc5ablock_write_endvmlinuxEXPORT_SYMBOL0x5b8e4bf6pid_vnrvmlinuxEXPORT_SYMBOL_GPL0x5df11a9fath9k_hw_beaconinitdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x9fd668f4cfg80211_roamed_bssvmlinuxEXPORT_SYMBOL0x5c8b9ebb__xfrm_decode_sessionvmlinuxEXPORT_SYMBOL0xad5f1b39nf_net_ipv4_netfilter_sysctl_pathvmlinuxEXPORT_SYMBOL_GPL0xb54d6b60devm_regmap_initvmlinuxEXPORT_SYMBOL_GPL0xe1098d90tty_port_lower_dtr_rtsvmlinuxEXPORT_SYMBOL0xf803fe39bitmap_setvmlinuxEXPORT_SYMBOL0xb84b1616blkio_subsysvmlinuxEXPORT_SYMBOL_GPL0x204c329f__pagevec_lru_addvmlinuxEXPORT_SYMBOL0x230e0698__clocksource_updatefreq_scalevmlinuxEXPORT_SYMBOL_GPL0xd8cf1f7dfc_attach_transportdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xbfb34af7rt2800_txdone_entrydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x6ad14135lnbh24_attachdrivers/media/dvb/frontends/lnbp21EXPORT_SYMBOL0xc469c244drm_fb_helper_restoredrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x271d0135wiphy_rfkill_stop_pollingvmlinuxEXPORT_SYMBOL0xe8b7c7f2netlink_set_errvmlinuxEXPORT_SYMBOL0x71abbff2alloc_netdev_mqsvmlinuxEXPORT_SYMBOL0x4ad2b178bus_register_notifiervmlinuxEXPORT_SYMBOL_GPL0xa26eb5aegpiochip_addvmlinuxEXPORT_SYMBOL_GPL0x336154carcutorture_record_test_transitionvmlinuxEXPORT_SYMBOL_GPL0x28e0af19register_snap_clientnet/802/psnapEXPORT_SYMBOL0x3381b13elis3lv02d_poweroffdrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0x0f5877d4sch56xx_read_virtual_reg16drivers/hwmon/sch56xx-commonEXPORT_SYMBOL0x3ac240fcwireless_spy_updatevmlinuxEXPORT_SYMBOL0x36b1a447inet_listenvmlinuxEXPORT_SYMBOL0x0ef875a2__dst_destroy_metrics_genericvmlinuxEXPORT_SYMBOL0x2c2e6833skb_queue_purgevmlinuxEXPORT_SYMBOL0xc399468fscsi_nl_remove_drivervmlinuxEXPORT_SYMBOL_GPL0xcfcc83adregister_vt_notifiervmlinuxEXPORT_SYMBOL_GPL0x57da7134get_unmapped_areavmlinuxEXPORT_SYMBOL0xcebf233eadd_to_page_cache_lruvmlinuxEXPORT_SYMBOL_GPL0x39a7d29ddrm_fb_helper_check_vardrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x07b52e38rtnl_unregistervmlinuxEXPORT_SYMBOL_GPL0xc8cff6d9platform_bus_typevmlinuxEXPORT_SYMBOL_GPL0x1168dd95blk_rq_map_uservmlinuxEXPORT_SYMBOL0x486867a4jbd2_journal_clear_featuresvmlinuxEXPORT_SYMBOL0x3f0ad041generic_pipe_buf_releasevmlinuxEXPORT_SYMBOL0x39743ce3nf_ct_gre_keymap_addnet/netfilter/nf_conntrack_proto_greEXPORT_SYMBOL_GPL0xbb6d8df8bt_accept_unlinknet/bluetooth/bluetoothEXPORT_SYMBOL0x2207d1fbenclosure_remove_devicedrivers/misc/enclosureEXPORT_SYMBOL_GPL0xc695c4c8tm6000_init_digital_modedrivers/media/video/tm6000/tm6000EXPORT_SYMBOL0xcb4b96aesoc_mbus_bytes_per_linedrivers/media/video/soc_mediabusEXPORT_SYMBOL0x4da5495bd_find_aliasvmlinuxEXPORT_SYMBOL0x760a0f4fyieldvmlinuxEXPORT_SYMBOL0xa37940efxt_check_targetnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x2b89f233rt2x00queue_pause_queuedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x02ecd383sdio_claim_irqvmlinuxEXPORT_SYMBOL_GPL0x1dc36131fb_destroy_modedbvmlinuxEXPORT_SYMBOL0xc8c39c7dfsstack_copy_attr_allvmlinuxEXPORT_SYMBOL_GPL0x3a4ccfe7__nf_ct_try_assign_helpernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x007ec5c9transport_init_sessiondrivers/target/target_core_modEXPORT_SYMBOL0xa1a9f65bath_regd_get_band_ctldrivers/net/wireless/ath/athEXPORT_SYMBOL0x22022bd4udp6_lib_lookupvmlinuxEXPORT_SYMBOL_GPL0x6134ff93xfrm_init_replayvmlinuxEXPORT_SYMBOL0x7cb7f131udp4_lib_lookupvmlinuxEXPORT_SYMBOL_GPL0x8c1d65f5genl_unregister_opsvmlinuxEXPORT_SYMBOL0x9e2000a7memcpy_toiovecendvmlinuxEXPORT_SYMBOL0xc005b1easnd_jack_reportvmlinuxEXPORT_SYMBOL0xf1b1db20scsi_command_normalize_sensevmlinuxEXPORT_SYMBOL0xd9273ae9inode_sb_list_addvmlinuxEXPORT_SYMBOL_GPL0xca647920inode_init_alwaysvmlinuxEXPORT_SYMBOL0xaf88b0c3d_invalidatevmlinuxEXPORT_SYMBOL0xa0b04675vmalloc_32vmlinuxEXPORT_SYMBOL0x25229580pid_taskvmlinuxEXPORT_SYMBOL0x4d0d163dcopy_pagevmlinuxEXPORT_SYMBOL0x01a02478sunxi_spdif_get_clockratesound/soc/sunxi/spdif/sunxi_spdifEXPORT_SYMBOL_GPL0x0d637cd2set_h245_addr_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0xd8a076e6seq_print_acctnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x61ccbaa7stp_proto_registernet/802/stpEXPORT_SYMBOL_GPL0x017ea7c7cx231xx_tuner_callbackdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x05800155drm_class_device_unregisterdrivers/gpu/drm/drmEXPORT_SYMBOL_GPL0xa7547385tpm_register_hardwaredrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x97880fb4input_register_handlervmlinuxEXPORT_SYMBOL0xeee37f4etextsearch_unregistervmlinuxEXPORT_SYMBOL0xf54c51a2dma_pool_freevmlinuxEXPORT_SYMBOL0x32fd447amonotonic_to_bootbasedvmlinuxEXPORT_SYMBOL_GPL0x2ea50c01garp_register_applicationnet/802/garpEXPORT_SYMBOL_GPL0x0d1aa102scsi_unregister_device_handlerdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0xb194994dinet6_csk_bind_conflictvmlinuxEXPORT_SYMBOL_GPL0xa35de80fipv4_configvmlinuxEXPORT_SYMBOL0x7c09de06netif_carrier_onvmlinuxEXPORT_SYMBOL0xf894362dfib_rules_lookupvmlinuxEXPORT_SYMBOL_GPL0xb0b847ac__bitmap_fullvmlinuxEXPORT_SYMBOL0x4059792fprint_hex_dumpvmlinuxEXPORT_SYMBOL0xa43654daieee80211_rts_durationnet/mac80211/mac80211EXPORT_SYMBOL0x435dea58s5h1420_get_tuner_i2c_adapterdrivers/media/dvb/frontends/s5h1420EXPORT_SYMBOL0xc9fbd178dvb_ringbuffer_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xdbfde688drm_crtc_helper_set_configdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x0e9ab199drm_mode_group_init_legacy_groupdrivers/gpu/drm/drmEXPORT_SYMBOL0xf5e1797dcfg80211_del_stavmlinuxEXPORT_SYMBOL0x253757eaip6_route_outputvmlinuxEXPORT_SYMBOL0x29d1d166__rta_fillvmlinuxEXPORT_SYMBOL0xb6ba2946__dst_freevmlinuxEXPORT_SYMBOL0x3ab9e31dsw_hcd_read_fifovmlinuxEXPORT_SYMBOL0x2c5b8790dev_pm_qos_add_notifiervmlinuxEXPORT_SYMBOL_GPL0xf5fe6d2finode_newsize_okvmlinuxEXPORT_SYMBOL0x85acda5aiscsi_post_host_eventdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x5f0ec8b8fcoe_ctlr_els_senddrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x41517492inet_csk_destroy_sockvmlinuxEXPORT_SYMBOL0x2e1ca751clk_putvmlinuxEXPORT_SYMBOL0x9e312a9e__pm_runtime_idlevmlinuxEXPORT_SYMBOL_GPL0xb050f329init_rsvmlinuxEXPORT_SYMBOL_GPL0x84b183aestrncmpvmlinuxEXPORT_SYMBOL0x3cce5a27nfs_pageio_reset_read_mdsvmlinuxEXPORT_SYMBOL_GPL0x1e26be3bget_anon_bdevvmlinuxEXPORT_SYMBOL0x4b32bf71ieee80211_gtk_rekey_notifynet/mac80211/mac80211EXPORT_SYMBOL_GPL0xcbf91cb0irttp_flow_requestnet/irda/irdaEXPORT_SYMBOL0xbd19736bcore_tpg_add_initiator_node_acldrivers/target/target_core_modEXPORT_SYMBOL0x4addcebbsock_kfree_svmlinuxEXPORT_SYMBOL0x3796bdccsnd_pcm_format_little_endianvmlinuxEXPORT_SYMBOL0x1d9cff0dusb_stor_access_xfer_bufvmlinuxEXPORT_SYMBOL_GPL0xa34f1ef5crc32_levmlinuxEXPORT_SYMBOL0xf54bd49blcmvmlinuxEXPORT_SYMBOL_GPL0x91dda801scatterwalk_map_and_copyvmlinuxEXPORT_SYMBOL_GPL0x51d1aa66empty_aopsvmlinuxEXPORT_SYMBOL0x52a1d117__task_pid_nr_nsvmlinuxEXPORT_SYMBOL0xe99f9d6ftarget_fabric_configfs_registerdrivers/target/target_core_modEXPORT_SYMBOL0x80892ab9sas_port_freedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x0defb076iscsi_tcp_task_initdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xf124aeb9pps_lookup_devdrivers/pps/pps_coreEXPORT_SYMBOL0x646b3561ethtool_op_get_linkvmlinuxEXPORT_SYMBOL0xdc1ff781v4l2_try_ext_ctrlsvmlinuxEXPORT_SYMBOL0x5d12e48finput_event_to_uservmlinuxEXPORT_SYMBOL_GPL0xf5ab7054input_unregister_devicevmlinuxEXPORT_SYMBOL0x8a5d0b3dread_cache_pagesvmlinuxEXPORT_SYMBOL0xe971a51fpm_enable_watchdogvmlinuxEXPORT_SYMBOL0x63343b1dsnd_usbmidi_input_stopsound/usb/snd-usbmidi-libEXPORT_SYMBOL0xaa157485ieee80211_get_tkip_rx_p1knet/mac80211/mac80211EXPORT_SYMBOL0x2bdc16bcstp_proto_unregisternet/802/stpEXPORT_SYMBOL_GPL0x8bcf4e5fsas_port_alloc_numdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x84cf3e80dvb_net_releasedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xae4067a9cyttsp_probedrivers/input/touchscreen/cyttsp_coreEXPORT_SYMBOL_GPL0x53445f68nlm_debugvmlinuxEXPORT_SYMBOL_GPL0x017d14f6ip_generic_getfragvmlinuxEXPORT_SYMBOL0xdae72e08call_netdevice_notifiersvmlinuxEXPORT_SYMBOL0x8ebe9df3snd_soc_pm_opsvmlinuxEXPORT_SYMBOL_GPL0x3405bf3bbitmap_end_syncvmlinuxEXPORT_SYMBOL0xc75b6a10mii_nway_restartvmlinuxEXPORT_SYMBOL0xa6b21ef2dpm_suspend_endvmlinuxEXPORT_SYMBOL_GPL0x6ef4a8adcrypto_dequeue_requestvmlinuxEXPORT_SYMBOL_GPL0xa5ff3889crypto_enqueue_requestvmlinuxEXPORT_SYMBOL_GPL0x1ac39d60fat_add_entriesvmlinuxEXPORT_SYMBOL_GPL0x44278b66bio_integrity_allocvmlinuxEXPORT_SYMBOL0x8f04f7bcthaw_bdevvmlinuxEXPORT_SYMBOL0x3655c61airq_create_mappingvmlinuxEXPORT_SYMBOL_GPL0x84fc4aeevideobuf_poll_streamdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x67a37629drm_fb_helper_restore_fbdev_modedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xbe6aa92esk_run_filtervmlinuxEXPORT_SYMBOL0x60348d57netdev_rx_csum_faultvmlinuxEXPORT_SYMBOL0x9456da13devres_release_groupvmlinuxEXPORT_SYMBOL_GPL0x9e61bb05set_freezablevmlinuxEXPORT_SYMBOL0xe0db9a9eipt_register_tablenet/ipv4/netfilter/ip_tablesEXPORT_SYMBOL0x9b5b9ca1bt_sock_reclassify_locknet/bluetooth/bluetoothEXPORT_SYMBOL0xebf5d161tda10023_attachdrivers/media/dvb/frontends/tda10023EXPORT_SYMBOL0x3fd5fc54xdr_decode_array2vmlinuxEXPORT_SYMBOL_GPL0xb65f01beipv6_push_nfrag_optsvmlinuxEXPORT_SYMBOL0x4b516590neigh_sysctl_unregistervmlinuxEXPORT_SYMBOL0xe56a9336snd_pcm_format_widthvmlinuxEXPORT_SYMBOL0x5556104aata_pio_need_iordyvmlinuxEXPORT_SYMBOL_GPL0xc9561772fb_destroy_modelistvmlinuxEXPORT_SYMBOL_GPL0x4e0c2c84blk_abort_requestvmlinuxEXPORT_SYMBOL_GPL0x33ab8359drm_crtc_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0xb1119dca__scm_destroyvmlinuxEXPORT_SYMBOL0xece285efsdio_writeb_readbvmlinuxEXPORT_SYMBOL_GPL0x16f674b6d_movevmlinuxEXPORT_SYMBOL0x0ff178f6__aeabi_idivmodvmlinuxEXPORT_SYMBOL0xc6c468a8fbtft_register_framebufferdrivers/video/fbtft/fbtftEXPORT_SYMBOL0x186394ddfc_lport_set_local_iddrivers/scsi/libfc/libfcEXPORT_SYMBOL0x62a88bc3rt2x00mac_flushdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xe7a1f296ath9k_cmn_get_curchanneldrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0x96cbcc81ipmi_get_versiondrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x14d67e53rpc_wake_up_firstvmlinuxEXPORT_SYMBOL_GPL0x34a9335eipcomp_destroyvmlinuxEXPORT_SYMBOL_GPL0x4a0b44bbping_common_sendmsgvmlinuxEXPORT_SYMBOL_GPL0x12a14c0cdev_addr_del_multiplevmlinuxEXPORT_SYMBOL0x5a57ac12request_key_asyncvmlinuxEXPORT_SYMBOL0xd3f569a4touch_atimevmlinuxEXPORT_SYMBOL0x53614269get_cpu_idle_time_usvmlinuxEXPORT_SYMBOL_GPL0xe2e31563ieee80211_unregister_hwnet/mac80211/mac80211EXPORT_SYMBOL0x5b082045USBC_EnterMode_TestPacketvmlinuxEXPORT_SYMBOL0x1d380ab3device_set_wakeup_capablevmlinuxEXPORT_SYMBOL_GPL0xbd17a0dfgf128mul_4k_llevmlinuxEXPORT_SYMBOL0x0c2f123fgf128mul_4k_bbevmlinuxEXPORT_SYMBOL0xd0d42c42mod_timer_pendingvmlinuxEXPORT_SYMBOL0x44583122bcmsdh_removedrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0xe7d863f4dibusb_read_eeprom_bytedrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x9b548473cryptd_free_ablkciphercrypto/cryptdEXPORT_SYMBOL_GPL0x5e98915artnl_configure_linkvmlinuxEXPORT_SYMBOL0x680c7deasock_wmallocvmlinuxEXPORT_SYMBOL0x054dd39dsnd_soc_codec_writable_registervmlinuxEXPORT_SYMBOL_GPL0x1e6d26a8strstrvmlinuxEXPORT_SYMBOL0x349cba85strchrvmlinuxEXPORT_SYMBOL0x794487eedisable_hltvmlinuxEXPORT_SYMBOL0xf890fe7fpm_idlevmlinuxEXPORT_SYMBOL0x121c4bdadib0090_set_switchdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xa577819bperf_event_disablevmlinuxEXPORT_SYMBOL_GPL0xf59a2068ieee80211_get_buffered_bcnet/mac80211/mac80211EXPORT_SYMBOL0x9603c374usb_serial_generic_resumedrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xce383c22cfi_qry_mode_offdrivers/mtd/chips/cfi_utilEXPORT_SYMBOL_GPL0x22163b69dm_bufio_release_movedrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x3f782c43inet_csk_listen_stopvmlinuxEXPORT_SYMBOL_GPL0xba9220c9USBC_Host_SetHPortAddress_DeafultvmlinuxEXPORT_SYMBOL0x95baedaeusb_wait_anchor_empty_timeoutvmlinuxEXPORT_SYMBOL_GPL0x595ae5bcppp_channel_indexvmlinuxEXPORT_SYMBOL0xf2fca922uart_parse_optionsvmlinuxEXPORT_SYMBOL_GPL0xbebf7b8fkobject_create_and_addvmlinuxEXPORT_SYMBOL_GPL0x2f65be41setup_new_execvmlinuxEXPORT_SYMBOL0xdb8a1b3fusermodehelper_read_trylockvmlinuxEXPORT_SYMBOL_GPL0x7f63b31e_memcpy_toiovmlinuxEXPORT_SYMBOL0x1a2405e4hashbin_get_nextnet/irda/irdaEXPORT_SYMBOL0xa5fa16e2macvlan_link_registerdrivers/net/macvlanEXPORT_SYMBOL_GPL0x60b87ebcsirdev_set_dongledrivers/net/irda/sir-devEXPORT_SYMBOL0x1c5abcdddrm_noopdrivers/gpu/drm/drmEXPORT_SYMBOL0xf95b60c6xfrm_state_lookup_byaddrvmlinuxEXPORT_SYMBOL0x14af3553pskb_expand_headvmlinuxEXPORT_SYMBOL0x0b5d21b1md_check_recoveryvmlinuxEXPORT_SYMBOL0x2033ef95wakeup_source_preparevmlinuxEXPORT_SYMBOL_GPL0x3d3c540felf_hwcapvmlinuxEXPORT_SYMBOL0xc3aaa67blc_createlib/lru_cacheEXPORT_SYMBOL0xd62684a3__iscsi_get_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x8eac6cf5__iscsi_put_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x4d16c2d8iscsi_boot_create_ksetdrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0xe2070529sparse_keymap_report_eventdrivers/input/sparse-keymapEXPORT_SYMBOL0xec552eb4i2c_release_clientvmlinuxEXPORT_SYMBOL0xb784ae90USBC_SelectBusvmlinuxEXPORT_SYMBOL0x170d374espi_display_xfer_agreementvmlinuxEXPORT_SYMBOL0x5d7d8887take_over_consolevmlinuxEXPORT_SYMBOL0x259f44fcfuse_do_ioctlvmlinuxEXPORT_SYMBOL_GPL0x59eac7afpm_qos_update_requestvmlinuxEXPORT_SYMBOL_GPL0x0aa13d05__raw_readswvmlinuxEXPORT_SYMBOL0x74a28ac5rt2800_init_eepromdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x261fa088ath9k_hw_setrxabortdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xac4ca1b0intlog2drivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x9865a8a5rtnl_link_registervmlinuxEXPORT_SYMBOL_GPL0x3050f939mmc_pm_get_mod_typevmlinuxEXPORT_SYMBOL0x58a7e834dma_buf_exportvmlinuxEXPORT_SYMBOL_GPL0x79403a4fdma_mark_declared_memory_occupiedvmlinuxEXPORT_SYMBOL0xe7273f79lock_may_writevmlinuxEXPORT_SYMBOL0xd34d216ebh_submit_readvmlinuxEXPORT_SYMBOL0x1a65f4ad__arm_ioremap_pfnvmlinuxEXPORT_SYMBOL0x4c9282eeec100_attachdrivers/media/dvb/frontends/ec100EXPORT_SYMBOL0xc9e4a8f5xdr_buf_read_netobjvmlinuxEXPORT_SYMBOL_GPL0x5380ae09rpc_localaddrvmlinuxEXPORT_SYMBOL_GPL0x18480d96eth_change_mtuvmlinuxEXPORT_SYMBOL0x71b05d33eth_header_parsevmlinuxEXPORT_SYMBOL0x42977ad4__hw_addr_del_multiplevmlinuxEXPORT_SYMBOL0x9486ef15bdev_stack_limitsvmlinuxEXPORT_SYMBOL0x30a2ece4nf_nat_pptp_hook_exp_grenet/netfilter/nf_conntrack_pptpEXPORT_SYMBOL_GPL0x812878b8transport_handle_cdb_directdrivers/target/target_core_modEXPORT_SYMBOL0x5210b0c9rt2x00mac_configdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x4e50899asock_wake_asyncvmlinuxEXPORT_SYMBOL0x33aa6163USBC_GetStatus_DmvmlinuxEXPORT_SYMBOL0x587d1aa0USBC_INT_EnableEpvmlinuxEXPORT_SYMBOL0x68e05d57getrawmonotonicvmlinuxEXPORT_SYMBOL0x0b56e1b8crypto_register_algsvmlinuxEXPORT_SYMBOL_GPL0x4f887328fat_free_clustersvmlinuxEXPORT_SYMBOL_GPL0x2a29b1dajbd2_complete_transactionvmlinuxEXPORT_SYMBOL0xa29749e6__set_page_dirty_buffersvmlinuxEXPORT_SYMBOL0x0ca6dbe7__wake_up_lockedvmlinuxEXPORT_SYMBOL_GPL0x774b51d5bt_sock_pollnet/bluetooth/bluetoothEXPORT_SYMBOL0x889f8f27sock_prot_inuse_addvmlinuxEXPORT_SYMBOL_GPL0x1a3cc7d3audio_set_hdmi_funcvmlinuxEXPORT_SYMBOL0xc6d2d27dusb_hcd_platform_shutdownvmlinuxEXPORT_SYMBOL_GPL0xf9e73082scnprintfvmlinuxEXPORT_SYMBOL0xb3b48391aead_geniv_exitvmlinuxEXPORT_SYMBOL_GPL0x7c0a23c1mod_zone_page_statevmlinuxEXPORT_SYMBOL0x7c3e4c4fperf_event_refreshvmlinuxEXPORT_SYMBOL_GPL0x1c44a142pm_runtime_autosuspend_expirationvmlinuxEXPORT_SYMBOL_GPL0x92cd9a00blk_add_request_payloadvmlinuxEXPORT_SYMBOL_GPL0x5b07e0b4rtnl_link_unregistervmlinuxEXPORT_SYMBOL_GPL0x0ce35182snd_soc_dapm_enable_pinvmlinuxEXPORT_SYMBOL_GPL0x86e0b45fsata_port_opsvmlinuxEXPORT_SYMBOL_GPL0xe4eeff97copy_strings_kernelvmlinuxEXPORT_SYMBOL0xcffb8e14mem_cgroup_count_vm_eventvmlinuxEXPORT_SYMBOL0xeb1dd61b__wait_on_bitvmlinuxEXPORT_SYMBOL0x21341df9iscsi_recv_pdudrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x20645642drm_debugdrivers/gpu/drm/drmEXPORT_SYMBOL0xed2d85cfled_trigger_register_simplevmlinuxEXPORT_SYMBOL_GPL0x119342d9rdev_get_idvmlinuxEXPORT_SYMBOL_GPL0x002de09cvfsmount_lock_global_unlock_onlinevmlinuxEXPORT_SYMBOL0xbf8bdb8fhrtimer_get_remainingvmlinuxEXPORT_SYMBOL_GPL0xfdceb86fsas_ioctldrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x77ba0edei2400m_dev_reset_handledrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x3a1c9172tcp_enter_memory_pressurevmlinuxEXPORT_SYMBOL0x59123829skb_add_rx_fragvmlinuxEXPORT_SYMBOL0x6ea48a29snd_soc_writevmlinuxEXPORT_SYMBOL_GPL0xe9587909usb_unregister_notifyvmlinuxEXPORT_SYMBOL_GPL0x4982a57fprobe_kernel_writevmlinuxEXPORT_SYMBOL_GPL0xa3a6a95biio_map_array_unregisterdrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xcc378d7drt2800_clear_beacondrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xbe0f6a89arp_createvmlinuxEXPORT_SYMBOL0xd50d68a6spi_schedule_dv_devicevmlinuxEXPORT_SYMBOL0xb3768ee5tty_port_alloc_xmit_bufvmlinuxEXPORT_SYMBOL0x34e4836atask_blkio_cgroupvmlinuxEXPORT_SYMBOL_GPL0x72709dd1jbd2_journal_get_create_accessvmlinuxEXPORT_SYMBOL0x81fe180dno_llseekvmlinuxEXPORT_SYMBOL0x9b64a1af_raw_read_unlock_irqvmlinuxEXPORT_SYMBOL0x25c531d8rt_mutex_timed_lockvmlinuxEXPORT_SYMBOL_GPL0x14eb150aspk_do_catch_updrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xb33f3b36flexcop_eeprom_check_mac_addrdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x9b4b5b29dm_bm_write_lockdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xcd074900lrw_init_tablecrypto/lrwEXPORT_SYMBOL_GPL0xda90bd08rtc_irq_set_freqvmlinuxEXPORT_SYMBOL_GPL0xf65b5656dma_declare_coherent_memoryvmlinuxEXPORT_SYMBOL0xfcfa03fffb_videomode_to_modelistvmlinuxEXPORT_SYMBOL0x463be068fc_lport_configdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xab1e69e6drm_mode_copydrivers/gpu/drm/drmEXPORT_SYMBOL0xbdd4a28elro_receive_fragsvmlinuxEXPORT_SYMBOL0x0a8e6952register_sysctl_pathsvmlinuxEXPORT_SYMBOL0x81a7ce59generic_show_optionsvmlinuxEXPORT_SYMBOL0xf449993cpagecache_write_beginvmlinuxEXPORT_SYMBOL0x5b759a79iscsi_segment_init_lineardrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xf4e83555spi_finalize_current_messagevmlinuxEXPORT_SYMBOL_GPL0xcb5268a1dev_pm_qos_add_requestvmlinuxEXPORT_SYMBOL_GPL0xc6cbbc89capablevmlinuxEXPORT_SYMBOL0xb90458e8lbtf_bcn_sentdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0x30fb28e0dib8000_get_adc_powerdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x95accd2cgameport_closedrivers/input/gameport/gameportEXPORT_SYMBOL0x2c3ca43fdrm_mode_create_tv_propertiesdrivers/gpu/drm/drmEXPORT_SYMBOL0xbe2cf753nf_afinfovmlinuxEXPORT_SYMBOL0x22e9a42bhid_debug_eventvmlinuxEXPORT_SYMBOL_GPL0x280e235bmmc_can_trimvmlinuxEXPORT_SYMBOL0x945d63fainput_set_capabilityvmlinuxEXPORT_SYMBOL0xd3591e46ps2_cmd_abortedvmlinuxEXPORT_SYMBOL0x4ef5bcf4perf_swevent_get_recursion_contextvmlinuxEXPORT_SYMBOL_GPL0xfdbd0a5airq_find_mappingvmlinuxEXPORT_SYMBOL_GPL0xe929454c__wake_up_syncvmlinuxEXPORT_SYMBOL_GPL0xc8b57c27autoremove_wake_functionvmlinuxEXPORT_SYMBOL0x7ecc858enf_ct_port_tuple_to_nlattrnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd0139711fcoe_get_paged_crc_eofdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0x062f173cdvb_ringbuffer_flushdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xcee5325cdrm_fb_helper_hotplug_eventdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x376e117adrm_fb_helper_initial_configdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x23164c32vlan_vid_delvmlinuxEXPORT_SYMBOL0xa7802b06give_up_consolevmlinuxEXPORT_SYMBOL0x7c60d66egetnamevmlinuxEXPORT_SYMBOL0xe7ffe877pcpu_base_addrvmlinuxEXPORT_SYMBOL_GPL0x429ee18fnf_conntrack_helper_registernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x36763316cx2341x_handler_set_50hzdrivers/media/video/cx2341xEXPORT_SYMBOL0x76b7556cpmbus_write_word_datadrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x939630bedrm_mode_find_dmtdrivers/gpu/drm/drmEXPORT_SYMBOL0xe24e2154snd_seq_rootvmlinuxEXPORT_SYMBOL0x5ff76ccesunxi_hcd_map_urb_for_dmavmlinuxEXPORT_SYMBOL_GPL0x9a11a0fccrypto_attr_alg_namevmlinuxEXPORT_SYMBOL_GPL0x1935ac93debugfs_create_regset32vmlinuxEXPORT_SYMBOL_GPL0xaf732393ir_raw_handler_registerdrivers/media/rc/rc-coreEXPORT_SYMBOL0x1c852e7cxfrm_calg_get_byidvmlinuxEXPORT_SYMBOL_GPL0xad14c60eusb_hc_diedvmlinuxEXPORT_SYMBOL_GPL0x0ff2b602slhc_compressvmlinuxEXPORT_SYMBOL0x2c7eec7aLCD_PWM_ENvmlinuxEXPORT_SYMBOL0xe61a6d2fgpio_unexportvmlinuxEXPORT_SYMBOL_GPL0xf20dabd8free_irqvmlinuxEXPORT_SYMBOL0xf902ea91l2tp_session_createnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0xc2066af0batostrnet/bluetooth/bluetoothEXPORT_SYMBOL0x53dc7fc8usb_serial_probedrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x48cdfbb9ssb_bus_unregisterdrivers/ssb/ssbEXPORT_SYMBOL0x4613c4bfosd_req_formatdrivers/scsi/osd/libosdEXPORT_SYMBOL0x066c7a3dieee80211_get_response_ratevmlinuxEXPORT_SYMBOL0x3d3ea856jbd2_journal_init_inodevmlinuxEXPORT_SYMBOL0x6cdb9204deactivate_locked_supervmlinuxEXPORT_SYMBOL0x1a74740afilemap_fdatawaitvmlinuxEXPORT_SYMBOL0x94cd66f4rpcauth_registervmlinuxEXPORT_SYMBOL_GPL0xa80cbee7netdev_class_create_filevmlinuxEXPORT_SYMBOL0x4f816e9bsnd_pcm_format_big_endianvmlinuxEXPORT_SYMBOL0x09d44df9in_lock_functionsvmlinuxEXPORT_SYMBOL0x54336562sas_port_add_phydrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xd68a099etimeval_usec_diffdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x4e69a172cfg80211_cqm_pktloss_notifyvmlinuxEXPORT_SYMBOL0x9387036crpc_wake_upvmlinuxEXPORT_SYMBOL_GPL0xfb245e1dnetpoll_parse_optionsvmlinuxEXPORT_SYMBOL0xc7c0ba4cnetdev_rx_handler_unregistervmlinuxEXPORT_SYMBOL_GPL0xd2ecfae4skb_copy_datagram_const_iovecvmlinuxEXPORT_SYMBOL0xb90925a8kernel_getpeernamevmlinuxEXPORT_SYMBOL0x8e26b8aemedia_entity_graph_walk_startvmlinuxEXPORT_SYMBOL_GPL0x4141f81dplatform_driver_probevmlinuxEXPORT_SYMBOL_GPL0xb94372bcserial8250_do_set_termiosvmlinuxEXPORT_SYMBOL0xe47612ecsysfs_chmod_filevmlinuxEXPORT_SYMBOL_GPL0xde2286f8find_modulevmlinuxEXPORT_SYMBOL_GPL0x7d46ef22rt_mutex_lockvmlinuxEXPORT_SYMBOL_GPL0xa2f39627dib7000p_i2c_enumerationdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xb661040eskb_complete_wifi_ackvmlinuxEXPORT_SYMBOL_GPL0x8855f616input_eventvmlinuxEXPORT_SYMBOL0x75b690efsw_hcd_platform_disablevmlinuxEXPORT_SYMBOL0x11f7ed4chex_to_binvmlinuxEXPORT_SYMBOL0x380b258bsimple_pin_fsvmlinuxEXPORT_SYMBOL0x5635a60avmalloc_uservmlinuxEXPORT_SYMBOL0xf5e985d1posix_clock_unregistervmlinuxEXPORT_SYMBOL_GPL0x77edf722schedule_delayed_workvmlinuxEXPORT_SYMBOL0x74cc1cbeunregister_cpu_notifiervmlinuxEXPORT_SYMBOL0x14320d3drxrpc_kernel_end_callnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x7f672265lc_element_by_indexlib/lru_cacheEXPORT_SYMBOL0xc915b88bath9k_hw_startpcureceivedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x4d45d89eudp_memory_allocatedvmlinuxEXPORT_SYMBOL0x645509ffsock_no_sendpagevmlinuxEXPORT_SYMBOL0xb689e373thermal_generate_netlink_eventvmlinuxEXPORT_SYMBOL0x800e4ffa__muldi3vmlinuxEXPORT_SYMBOL0xa4cf99b0rdev_set_badblocksvmlinuxEXPORT_SYMBOL_GPL0xa030a80cget_current_ttyvmlinuxEXPORT_SYMBOL_GPL0x4c1182cbbitmap_scnprintfvmlinuxEXPORT_SYMBOL0x2c45e5d2proc_create_datavmlinuxEXPORT_SYMBOL0x4d405db8param_ops_stringvmlinuxEXPORT_SYMBOL0x98367431snd_ac97_write_cachesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x0bd662f6raid6_gfmullib/raid6/raid6_pqEXPORT_SYMBOL0x50a5eaefmacvtap_get_socketdrivers/net/macvtapEXPORT_SYMBOL_GPL0x04401eafnand_wait_readydrivers/mtd/nand/nandEXPORT_SYMBOL_GPL0xc5c575aatda18271c2dd_attachdrivers/media/dvb/frontends/tda18271c2ddEXPORT_SYMBOL_GPL0x154ba0f3btmrvl_send_module_cfg_cmddrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x35adf998sunrpc_cache_register_pipefsvmlinuxEXPORT_SYMBOL_GPL0x3f773406kernel_getsocknamevmlinuxEXPORT_SYMBOL0x4fba9cc7kernel_sendmsgvmlinuxEXPORT_SYMBOL0x3971b4dfsnd_ecards_limitvmlinuxEXPORT_SYMBOL0x89395179uart_register_drivervmlinuxEXPORT_SYMBOL0xd77a5aa5__bitmap_andvmlinuxEXPORT_SYMBOL0x69bc5078lc_destroylib/lru_cacheEXPORT_SYMBOL0xcb5f8a32dib8000_set_slave_frontenddrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x529eb39adib8000_get_slave_frontenddrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xc37e5b51xfrm_alloc_spivmlinuxEXPORT_SYMBOL0x4ff0d226netdev_set_bond_mastervmlinuxEXPORT_SYMBOL0x89ddded0axp_get_devvmlinuxEXPORT_SYMBOL_GPL0x44259606ahci_hardware_recover_for_controller_resumevmlinuxEXPORT_SYMBOL_GPL0x0160ba19blk_rq_err_bytesvmlinuxEXPORT_SYMBOL_GPL0x773c76a2crypto_blkcipher_typevmlinuxEXPORT_SYMBOL_GPL0x8916bb50crypto_givcipher_typevmlinuxEXPORT_SYMBOL_GPL0xe9066f77sunxi_script_basevmlinuxEXPORT_SYMBOL0x9a10c04cds3000_attachdrivers/media/dvb/frontends/ds3000EXPORT_SYMBOL0x8fb1d120dib0070_ctrl_agc_filterdrivers/media/dvb/frontends/dib0070EXPORT_SYMBOL0xf5cd7063i2c_bit_algodrivers/i2c/algos/i2c-algo-bitEXPORT_SYMBOL0x8c654f9enf_log_packetvmlinuxEXPORT_SYMBOL0x3866ddc1dev_remove_packvmlinuxEXPORT_SYMBOL0x2c256e1finput_scancode_to_scalarvmlinuxEXPORT_SYMBOL0xf89eb901spi_get_next_queued_messagevmlinuxEXPORT_SYMBOL_GPL0xa13380ecata_eh_freeze_portvmlinuxEXPORT_SYMBOL_GPL0xd6655f37rq_flush_dcache_pagesvmlinuxEXPORT_SYMBOL_GPL0x5b7649c4blkcipher_walk_virtvmlinuxEXPORT_SYMBOL_GPL0x7d876fd8posix_lock_filevmlinuxEXPORT_SYMBOL0x71a672efdmam_pool_destroyvmlinuxEXPORT_SYMBOL0x6f2c2363set_page_dirtyvmlinuxEXPORT_SYMBOL0x832e224bcryptd_alloc_aeadcrypto/cryptdEXPORT_SYMBOL_GPL0xf3c7a81cvideo_device_allocvmlinuxEXPORT_SYMBOL0xde9360batotalram_pagesvmlinuxEXPORT_SYMBOL0xca7e9852nf_conntrack_l4proto_udp4net/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x0c8d6829nfs4_acl_nfsv4_to_posixfs/nfsd/nfsdEXPORT_SYMBOL0x6c0dc039fcoe_transport_attachdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x81f0ebf6ath9k_hw_btcoex_init_schemedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x114264deubi_do_get_device_infodrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xc85d395bdm_rh_inc_pendingdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x558d531fasync_gen_syndromecrypto/async_tx/async_pqEXPORT_SYMBOL_GPL0xc0ce48beudp_disconnectvmlinuxEXPORT_SYMBOL0xefc8a7ebdev_uc_unsyncvmlinuxEXPORT_SYMBOL0x8098a747dev_mc_unsyncvmlinuxEXPORT_SYMBOL0xdb46740eusb_free_streamsvmlinuxEXPORT_SYMBOL_GPL0x25be9111regcache_cache_onlyvmlinuxEXPORT_SYMBOL_GPL0x0f65be7ddump_seekvmlinuxEXPORT_SYMBOL0x370c892fip_set_get_bynamenet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xe144b39bath9k_hw_gen_timer_stopdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xa0b3ab54mtd_add_partitiondrivers/mtd/mtdEXPORT_SYMBOL_GPL0xebe41f45drm_ati_pcigart_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x4ed5e0d7v4l2_chip_match_hostvmlinuxEXPORT_SYMBOL0xa4139fc1bus_get_ksetvmlinuxEXPORT_SYMBOL_GPL0x2e39e6a1fb_show_logovmlinuxEXPORT_SYMBOL0x19dee91cfb_pan_displayvmlinuxEXPORT_SYMBOL0xe25e91a7journal_get_write_accessvmlinuxEXPORT_SYMBOL0xecaf14cf__register_chrdevvmlinuxEXPORT_SYMBOL0x01879050clk_resetvmlinuxEXPORT_SYMBOL0x914621f4ceph_osdc_initnet/ceph/libcephEXPORT_SYMBOL0xb54676faceph_msg_type_namenet/ceph/libcephEXPORT_SYMBOL0x017b6944iscsi_session_recovery_timedoutdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xe5919cb1xdr_encode_opaquevmlinuxEXPORT_SYMBOL_GPL0x7a2ae75artc_class_closevmlinuxEXPORT_SYMBOL_GPL0x61c2dac6kstrtoll_from_uservmlinuxEXPORT_SYMBOL0xda4d17f9ath9k_hw_updatetxtrigleveldrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xd8aa4284dm_rh_region_contextdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x61cb2e55vlan_vids_add_by_devvmlinuxEXPORT_SYMBOL0x31b1038fsvc_max_payloadvmlinuxEXPORT_SYMBOL_GPL0x05c74cc9snd_rawmidi_newvmlinuxEXPORT_SYMBOL0x0e200d8edevres_allocvmlinuxEXPORT_SYMBOL_GPL0x956a91bagpio_get_value_cansleepvmlinuxEXPORT_SYMBOL_GPL0xd8e64d46blk_queue_stack_limitsvmlinuxEXPORT_SYMBOL0xd1f48465free_vm_areavmlinuxEXPORT_SYMBOL_GPL0xeb884c6cnf_conntrack_freenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xe3d0b6c9sas_ata_schedule_resetdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xc507fa1cptp_clock_eventdrivers/ptp/ptpEXPORT_SYMBOL0x0fd50ed4macvlan_common_newlinkdrivers/net/macvlanEXPORT_SYMBOL_GPL0xce417e13is_fw_loaddrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xe9e3f78fudp_lib_setsockoptvmlinuxEXPORT_SYMBOL0x12683f84udp_lib_getsockoptvmlinuxEXPORT_SYMBOL0x96898769sysfs_format_macvmlinuxEXPORT_SYMBOL0x92b8c08bsk_send_sigurgvmlinuxEXPORT_SYMBOL0x4b5fd49edm_kcopyd_do_callbackvmlinuxEXPORT_SYMBOL0x30898e2dUSBC_Host_EndSessionvmlinuxEXPORT_SYMBOL0x7a99a445mdiobus_alloc_sizevmlinuxEXPORT_SYMBOL0x506c6a90spi_bus_lockvmlinuxEXPORT_SYMBOL_GPL0x5419560bata_eh_thaw_portvmlinuxEXPORT_SYMBOL_GPL0x092cf98efscache_object_sleep_till_congestedvmlinuxEXPORT_SYMBOL_GPL0xb1b453bbclk_namevmlinuxEXPORT_SYMBOL0x45e7103ctpa6130a2_add_controlssound/soc/codecs/snd-soc-tpa6130a2EXPORT_SYMBOL_GPL0xaaaf9be3hashbin_removenet/irda/irdaEXPORT_SYMBOL0xb937d486drm_gem_object_releasedrivers/gpu/drm/drmEXPORT_SYMBOL0xab138944cfg80211_sched_scan_stoppedvmlinuxEXPORT_SYMBOL0xb4c26e46pm_generic_poweroff_noirqvmlinuxEXPORT_SYMBOL_GPL0x7646e482dev_critvmlinuxEXPORT_SYMBOL0xfdf50f36drop_supervmlinuxEXPORT_SYMBOL0x468dd66acgroup_add_filevmlinuxEXPORT_SYMBOL_GPL0x27e1a049printkvmlinuxEXPORT_SYMBOL0x53abf89asas_is_tlr_enableddrivers/scsi/scsi_transport_sasEXPORT_SYMBOL_GPL0x9fd2b977drm_helper_resume_force_modedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x1f072c59drm_property_add_enumdrivers/gpu/drm/drmEXPORT_SYMBOL0xf1f74ce8cfg80211_get_bssvmlinuxEXPORT_SYMBOL0xea1db3d2sk_allocvmlinuxEXPORT_SYMBOL0x42bc6970md_runvmlinuxEXPORT_SYMBOL_GPL0x11452b79ahci_init_controllervmlinuxEXPORT_SYMBOL_GPL0xd6d5f08esata_std_hardresetvmlinuxEXPORT_SYMBOL_GPL0xf0ecf791bus_unregister_notifiervmlinuxEXPORT_SYMBOL_GPL0x1258d9d9regulator_disablevmlinuxEXPORT_SYMBOL_GPL0x3e2ba850try_to_release_pagevmlinuxEXPORT_SYMBOL0x4d27017asynchronize_srcuvmlinuxEXPORT_SYMBOL_GPL0x5db44284hci_conn_switch_rolenet/bluetooth/bluetoothEXPORT_SYMBOL0x03264012drm_fb_helper_initdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xe867dcb4klist_iter_initvmlinuxEXPORT_SYMBOL_GPL0x1ef5ab06rpcauth_lookup_credcachevmlinuxEXPORT_SYMBOL_GPL0x6c678bfeUSBC_EnterMode_Test_SE0_NAKvmlinuxEXPORT_SYMBOL0x2bcfa168spi_dv_devicevmlinuxEXPORT_SYMBOL0x49f79ca4dma_buf_mmapvmlinuxEXPORT_SYMBOL_GPL0xe068c7d1dma_buf_kmapvmlinuxEXPORT_SYMBOL_GPL0xbd5a856dplatform_driver_registervmlinuxEXPORT_SYMBOL_GPL0xb6d01fd7kobject_addvmlinuxEXPORT_SYMBOL0xf5a87370nfs_commitdata_releasevmlinuxEXPORT_SYMBOL_GPL0xc64f1e8dparport_register_devicedrivers/parport/parportEXPORT_SYMBOL0x80f176daUSBC_Host_IsEpNakTimeOutvmlinuxEXPORT_SYMBOL0xbee4121eplatform_driver_unregistervmlinuxEXPORT_SYMBOL_GPL0x61634f05lock_flocksvmlinuxEXPORT_SYMBOL_GPL0x0bb4e82aqueue_kthread_workvmlinuxEXPORT_SYMBOL_GPL0xd0062da6br_should_route_hooknet/bridge/bridgeEXPORT_SYMBOL0x74a5a698dvb_filter_pes2ts_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x04910176iw_handler_get_thrspyvmlinuxEXPORT_SYMBOL0x74b34940gnet_stats_copy_queuevmlinuxEXPORT_SYMBOL0x09fd4787USBC_Dev_ConectSwitchvmlinuxEXPORT_SYMBOL0x17ab61f4usb_get_urbvmlinuxEXPORT_SYMBOL_GPL0x12e85778kstrtol_from_uservmlinuxEXPORT_SYMBOL0x2221519csimple_dir_operationsvmlinuxEXPORT_SYMBOL0x6ce0f898p54_read_eepromdrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0xc94f72eecfg80211_gtk_rekey_notifyvmlinuxEXPORT_SYMBOL0x6403e338tcp_memory_pressurevmlinuxEXPORT_SYMBOL0x1ac46630dqgetvmlinuxEXPORT_SYMBOL0x4d75cb08dqputvmlinuxEXPORT_SYMBOL0xa804dd77setattr_copyvmlinuxEXPORT_SYMBOL0xf828c15boslec_flushdrivers/staging/echo/echoEXPORT_SYMBOL_GPL0x3668d845nand_releasedrivers/mtd/nand/nandEXPORT_SYMBOL_GPL0x3ae20a60mtd_pointdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x7696b0b9em28xx_gpio_setdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xf3a987dbcfg80211_probe_statusvmlinuxEXPORT_SYMBOL0x5e09e8dcinet_frags_finivmlinuxEXPORT_SYMBOL0x4e69028bsnd_register_oss_devicevmlinuxEXPORT_SYMBOL0x24a94b26snd_info_get_linevmlinuxEXPORT_SYMBOL0xadaa2657cpufreq_register_notifiervmlinuxEXPORT_SYMBOL0xf5bb969fv4l2_ctrl_auto_clustervmlinuxEXPORT_SYMBOL0x74287b46v4l2_event_dequeuevmlinuxEXPORT_SYMBOL_GPL0xd2ad3440USBC_open_otgvmlinuxEXPORT_SYMBOL0x2b95e7f1scsi_queue_workvmlinuxEXPORT_SYMBOL_GPL0x07f0014celv_dispatch_sortvmlinuxEXPORT_SYMBOL0x2c6d4f3celv_add_requestvmlinuxEXPORT_SYMBOL0xf346231fseq_list_start_headvmlinuxEXPORT_SYMBOL0xf564412a__aeabi_ulcmpvmlinuxEXPORT_SYMBOL0xc3f325edunregister_hdlc_devicedrivers/net/wan/hdlcEXPORT_SYMBOL0xc12ec3a6dns_queryvmlinuxEXPORT_SYMBOL0x595b3bf7netif_device_attachvmlinuxEXPORT_SYMBOL0x85e586afnetif_device_detachvmlinuxEXPORT_SYMBOL0xafdc873bsnd_soc_dai_digital_mutevmlinuxEXPORT_SYMBOL_GPL0xadd98c58device_renamevmlinuxEXPORT_SYMBOL_GPL0xda6c1131fbcon_rotate_udvmlinuxEXPORT_SYMBOL0x5b4239edfbcon_rotate_cwvmlinuxEXPORT_SYMBOL0xed594315simple_attr_readvmlinuxEXPORT_SYMBOL_GPL0xd2184901relay_flushvmlinuxEXPORT_SYMBOL_GPL0x8b367de3dib0090_set_tune_statedrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x39df7b0cdib0090_get_tune_statedrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xfe5d283edrm_mode_widthdrivers/gpu/drm/drmEXPORT_SYMBOL0xc12435e3rpc_calc_rtovmlinuxEXPORT_SYMBOL_GPL0xf6b66a48kernel_bindvmlinuxEXPORT_SYMBOL0x735cb926USBC_EnterMode_IdlevmlinuxEXPORT_SYMBOL0x5521001ddev_noticevmlinuxEXPORT_SYMBOL0xcc248d26serial8250_suspend_portvmlinuxEXPORT_SYMBOL0x4e6e8ea7fg_consolevmlinuxEXPORT_SYMBOL0xcd279169nla_findvmlinuxEXPORT_SYMBOL0x45749461kernel_readvmlinuxEXPORT_SYMBOL0x31925c90vfs_readvmlinuxEXPORT_SYMBOL0x189b57a1__devm_release_regionvmlinuxEXPORT_SYMBOL0x4093ca89parport_writedrivers/parport/parportEXPORT_SYMBOL0x73d03aa6rt2800_efuse_detectdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x4041a99e__inet_hash_nolistenvmlinuxEXPORT_SYMBOL_GPL0x9fb3dd30memcpy_fromiovecvmlinuxEXPORT_SYMBOL0x24aafe50blk_queue_prep_rqvmlinuxEXPORT_SYMBOL0x262f20a8local_clockvmlinuxEXPORT_SYMBOL_GPL0xf2221a0crxrpc_kernel_send_datanet/rxrpc/af-rxrpcEXPORT_SYMBOL0x60442ba9i2400m_tx_msg_getdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf35dfbd8vlan_dev_vlan_idvmlinuxEXPORT_SYMBOL0xb7bd073cata_base_port_opsvmlinuxEXPORT_SYMBOL_GPL0xa21e4bb4journal_unlock_updatesvmlinuxEXPORT_SYMBOL0x6344eaf6ip_set_allocnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x0315910etransport_register_sessiondrivers/target/target_core_modEXPORT_SYMBOL0x144f3a98usbnet_resume_rxdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xca604ef0videobuf_streamondrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x29501161drm_ati_pcigart_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x629e7094sunrpc_cache_unregister_pipefsvmlinuxEXPORT_SYMBOL_GPL0x8c2155c8__class_registervmlinuxEXPORT_SYMBOL_GPL0x8d6f81b4__div64_32vmlinuxEXPORT_SYMBOL0xb303f633idr_remove_allvmlinuxEXPORT_SYMBOL0x16322259bio_allocvmlinuxEXPORT_SYMBOL0x93fca811__get_free_pagesvmlinuxEXPORT_SYMBOL0xbb189caddisallow_signalvmlinuxEXPORT_SYMBOL0x2eb88f8biscsi_pool_initdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xb56112d3rawv6_mh_filter_registervmlinuxEXPORT_SYMBOL0xdbcd416esysctl_ip_nonlocal_bindvmlinuxEXPORT_SYMBOL0x5d53cf18usb_free_coherentvmlinuxEXPORT_SYMBOL_GPL0xa675804cutf8s_to_utf16svmlinuxEXPORT_SYMBOL0xb8b499dcproc_net_fops_createvmlinuxEXPORT_SYMBOL_GPL0x8a948d78ns_capablevmlinuxEXPORT_SYMBOL0x79fa2617stv0297_attachdrivers/media/dvb/frontends/stv0297EXPORT_SYMBOL0x594952bddm_bufio_readdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xae1261aerawv6_mh_filter_unregistervmlinuxEXPORT_SYMBOL0x7aac2c75mmc_fixup_devicevmlinuxEXPORT_SYMBOL0xd5c5d82cUSBC_INT_MiscPendingvmlinuxEXPORT_SYMBOL0xfd041a88fb_deferred_io_initvmlinuxEXPORT_SYMBOL_GPL0x763a8031blkiocg_update_completion_statsvmlinuxEXPORT_SYMBOL_GPL0x6a5f1881blk_queue_resize_tagsvmlinuxEXPORT_SYMBOL0xe2336bfenf_ct_l3proto_find_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x2497806enf_ct_l4proto_find_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc86bae06parport_ieee1284_write_compatdrivers/parport/parportEXPORT_SYMBOL0x1f488364register_mtd_chip_driverdrivers/mtd/chips/chipregEXPORT_SYMBOL0x6242c9d7st_unregisterdrivers/misc/ti-st/st_drvEXPORT_SYMBOL_GPL0xc9de77aeipv4_specificvmlinuxEXPORT_SYMBOL0xc9551eadproto_unregistervmlinuxEXPORT_SYMBOL0x2e691297i2c_new_dummyvmlinuxEXPORT_SYMBOL_GPL0x3cac21b9regulator_sync_voltagevmlinuxEXPORT_SYMBOL_GPL0x94cadfa8fuse_conn_killvmlinuxEXPORT_SYMBOL_GPL0xbd70dae4__fsnotify_inode_deletevmlinuxEXPORT_SYMBOL_GPL0xc9d11a41deregister_mtd_parserdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x829a501bdib8000_pid_filter_ctrldrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0xad9f6e4fdib3000mc_i2c_enumerationdrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0x514dadcbdm_rh_mark_nosyncdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xc9f9d68djbd2_journal_release_buffervmlinuxEXPORT_SYMBOL0xb86805adlookup_instantiate_filpvmlinuxEXPORT_SYMBOL_GPL0xc9f21199register_ip_vs_appnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x58208205l2tp_tunnel_find_nthnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x57baf885ceph_str_hashnet/ceph/libcephEXPORT_SYMBOL0x42a58972rtnl_af_registervmlinuxEXPORT_SYMBOL_GPL0x45bd9efddm_table_putvmlinuxEXPORT_SYMBOL0xf2a353acv4l2_i2c_tuner_addrsvmlinuxEXPORT_SYMBOL_GPL0x6a70aeeafb_sys_writevmlinuxEXPORT_SYMBOL_GPL0x27fbd95akunmap_highvmlinuxEXPORT_SYMBOL0x4470a79bparam_ops_longvmlinuxEXPORT_SYMBOL0x27498decsw_dma_configvmlinuxEXPORT_SYMBOL0x2d928d94sw_hcd_h_ep0_irqvmlinuxEXPORT_SYMBOL0x51010775sata_scr_writevmlinuxEXPORT_SYMBOL_GPL0xacf4d843match_strdupvmlinuxEXPORT_SYMBOL0x870bf928radix_tree_lookupvmlinuxEXPORT_SYMBOL0x4672e88b__crypto_dequeue_requestvmlinuxEXPORT_SYMBOL_GPL0xe27ceec4rt_mutex_unlockvmlinuxEXPORT_SYMBOL_GPL0x95630c4ddvb_ringbuffer_read_userdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x06d12568sparse_keymap_setupdrivers/input/sparse-keymapEXPORT_SYMBOL0x54584312neigh_seq_nextvmlinuxEXPORT_SYMBOL0x98eeb729ahci_pmp_retry_srst_opsvmlinuxEXPORT_SYMBOL_GPL0xc3019b81bsg_register_queuevmlinuxEXPORT_SYMBOL_GPL0xaca6ff17vfs_renamevmlinuxEXPORT_SYMBOL0xeb6bb640generic_ro_fopsvmlinuxEXPORT_SYMBOL0x00ee2f85nf_nat_get_offsetnet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0xf37a2a1discsi_free_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xa552c469user_path_createvmlinuxEXPORT_SYMBOL0x82dee2aekthread_bindvmlinuxEXPORT_SYMBOL0xda2f9a01usb_serial_port_softintdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x5a728938del_mtd_blktrans_devdrivers/mtd/mtd_blkdevsEXPORT_SYMBOL_GPL0x6a975ac5drm_property_destroydrivers/gpu/drm/drmEXPORT_SYMBOL0x60ed676axprt_disconnect_donevmlinuxEXPORT_SYMBOL_GPL0x6e08390fipv6_setsockoptvmlinuxEXPORT_SYMBOL0x1ed6bcbfdm_kcopyd_zerovmlinuxEXPORT_SYMBOL0x237ec1f7USBC_Host_SuspendPortvmlinuxEXPORT_SYMBOL0xd8ad805dinet_frag_findvmlinuxEXPORT_SYMBOL0xb5eff32cinetdev_by_indexvmlinuxEXPORT_SYMBOL0xb169a40fusb_poison_anchored_urbsvmlinuxEXPORT_SYMBOL_GPL0xc3976fb8crypto_lookup_skciphervmlinuxEXPORT_SYMBOL_GPL0x75b20f59eventfd_signalvmlinuxEXPORT_SYMBOL_GPL0x21f678b9clocksource_unregistervmlinuxEXPORT_SYMBOL0xf0138ad0bt_sock_wait_statenet/bluetooth/bluetoothEXPORT_SYMBOL0x9edf0169con_debug_entervmlinuxEXPORT_SYMBOL_GPL0xb8074a8eLCD_CPU_WRvmlinuxEXPORT_SYMBOL0x6e8f6ebbwriteback_in_progressvmlinuxEXPORT_SYMBOL0xe9880434filemap_fdatawritevmlinuxEXPORT_SYMBOL0x3cfedb3fregister_pm_notifiervmlinuxEXPORT_SYMBOL_GPL0x93a83d42arm_dma_zone_sizevmlinuxEXPORT_SYMBOL0x807d2b2cxt_recseqnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0xd02753dcusbip_header_correct_endiandrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x77a1e535osd_req_write_sgdrivers/scsi/osd/libosdEXPORT_SYMBOL0x8bb1d60eiscsi_eh_session_resetdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x9881f612rt2x00mac_set_keydrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x6126618fdrm_i2c_encoder_destroydrivers/gpu/drm/drmEXPORT_SYMBOL0x1348760dipmi_request_settimedrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x54d4420a__ethtool_get_settingsvmlinuxEXPORT_SYMBOL0xa1468e16dev_base_lockvmlinuxEXPORT_SYMBOL0xc6b51cf4mmc_resume_busvmlinuxEXPORT_SYMBOL0xfdb617cfusb_del_gadget_udcvmlinuxEXPORT_SYMBOL_GPL0xd25d4f74console_blank_hookvmlinuxEXPORT_SYMBOL0xa9b0705ccss_idvmlinuxEXPORT_SYMBOL_GPL0xaca37af7_raw_read_lock_irqsavevmlinuxEXPORT_SYMBOL0x87275fdbxt_request_find_targetnet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x75379befieee80211_sta_set_bufferednet/mac80211/mac80211EXPORT_SYMBOL0x77692acbceph_msg_last_putnet/ceph/libcephEXPORT_SYMBOL0xe9d92fdfvb2_querybufdrivers/media/video/videobuf2-coreEXPORT_SYMBOL0x06845238dm_kill_unmapped_requestvmlinuxEXPORT_SYMBOL_GPL0x157cff31sg_scsi_ioctlvmlinuxEXPORT_SYMBOL_GPL0xc22a3091vm_unmap_aliasesvmlinuxEXPORT_SYMBOL_GPL0x78a9d2c5dib3000mc_get_tuner_i2c_masterdrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0xccfb47d8dm_rh_delaydrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x813663b8gnet_stats_finish_copyvmlinuxEXPORT_SYMBOL0x6059483fregister_md_personalityvmlinuxEXPORT_SYMBOL0xd7d607c6scsi_get_device_flags_keyedvmlinuxEXPORT_SYMBOL0x6d47d825device_show_intvmlinuxEXPORT_SYMBOL_GPL0x1acf3eafuart_handle_cts_changevmlinuxEXPORT_SYMBOL_GPL0xff93c032uart_handle_dcd_changevmlinuxEXPORT_SYMBOL_GPL0x3de26fa5LCD_BL_ENvmlinuxEXPORT_SYMBOL0xb167f6d2blk_fetch_requestvmlinuxEXPORT_SYMBOL0x494582fffree_inode_nonrcuvmlinuxEXPORT_SYMBOL0x341ebf57dma_pool_createvmlinuxEXPORT_SYMBOL0x4b34fbf5block_all_signalsvmlinuxEXPORT_SYMBOL0xd5ecbce8ceph_osdc_start_requestnet/ceph/libcephEXPORT_SYMBOL0xf079983fsdio_writebvmlinuxEXPORT_SYMBOL_GPL0x17a28351tty_namevmlinuxEXPORT_SYMBOL0x0abf20e3blkio_alloc_blkg_statsvmlinuxEXPORT_SYMBOL_GPL0xb5aa7165dma_pool_destroyvmlinuxEXPORT_SYMBOL0x4e8b6887ath9k_hw_btcoex_enabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xf494f618mmc_regulator_get_ocrmaskvmlinuxEXPORT_SYMBOL0xddb6b34epower_supply_registervmlinuxEXPORT_SYMBOL_GPL0xfe9cc87esysfs_get_direntvmlinuxEXPORT_SYMBOL_GPL0x33aa0166perf_event_release_kernelvmlinuxEXPORT_SYMBOL_GPL0x8c03d20cdestroy_workqueuevmlinuxEXPORT_SYMBOL_GPL0xc4ce6189idle_notifier_unregistervmlinuxEXPORT_SYMBOL_GPL0x2ed1be16dib0090_pwm_gain_resetdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x5abc63dbinet6_csk_reqsk_queue_hash_addvmlinuxEXPORT_SYMBOL_GPL0x0a5b42c5inet_twsk_putvmlinuxEXPORT_SYMBOL_GPL0x47d01b3cfib_default_rule_addvmlinuxEXPORT_SYMBOL0x0c8f3b25ata_ehi_push_descvmlinuxEXPORT_SYMBOL_GPL0x60f07ac7pm_generic_runtime_suspendvmlinuxEXPORT_SYMBOL_GPL0x97a32692do_SAKvmlinuxEXPORT_SYMBOL0x8914c2c8fat_get_dotdot_entryvmlinuxEXPORT_SYMBOL_GPL0x7dc13b69check_disk_changevmlinuxEXPORT_SYMBOL0x4944d983default_file_splice_readvmlinuxEXPORT_SYMBOL0xa7d72747writeback_inodes_sbvmlinuxEXPORT_SYMBOL0xeab9341atcp_proto_cgroupvmlinuxEXPORT_SYMBOL0xe200d2d5param_get_uintvmlinuxEXPORT_SYMBOL0x7c4a5d13wimax_msg_datanet/wimax/wimaxEXPORT_SYMBOL_GPL0xb125365dsas_rphy_adddrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x752e7239elv_registervmlinuxEXPORT_SYMBOL_GPL0x1b5b6c2dpage_put_linkvmlinuxEXPORT_SYMBOL0xf14f648erelease_pagesvmlinuxEXPORT_SYMBOL0x337f2432l2tp_nl_unregister_opsnet/l2tp/l2tp_netlinkEXPORT_SYMBOL_GPL0x559444cebt_sock_stream_recvmsgnet/bluetooth/bluetoothEXPORT_SYMBOL0x8806e43emwifiex_enable_hsdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x22745d22ath9k_hw_gettxbufdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xc3e5fd17dib0090_dcc_freqdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xd5ddbdfbrpc_sleep_onvmlinuxEXPORT_SYMBOL_GPL0xb6aeb661ata_id_c_stringvmlinuxEXPORT_SYMBOL_GPL0xb1bed25ddpm_resume_startvmlinuxEXPORT_SYMBOL_GPL0x10291853devm_regulator_putvmlinuxEXPORT_SYMBOL_GPL0xa630d4fbdquot_get_dqinfovmlinuxEXPORT_SYMBOL0x6f09ba8aubi_register_volume_notifierdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x849fc957drm_property_createdrivers/gpu/drm/drmEXPORT_SYMBOL0x5a918374cfg80211_calculate_bitratevmlinuxEXPORT_SYMBOL0xbec5d003km_state_expiredvmlinuxEXPORT_SYMBOL0xb0e10781get_optionvmlinuxEXPORT_SYMBOL0x345b241ccgroup_to_blkio_cgroupvmlinuxEXPORT_SYMBOL_GPL0xdf0823fcnf_ct_gre_keymap_destroynet/netfilter/nf_conntrack_proto_greEXPORT_SYMBOL_GPL0x231a7c8bceph_con_sendnet/ceph/libcephEXPORT_SYMBOL0x207d6c6bmt2266_attachdrivers/media/common/tuners/mt2266EXPORT_SYMBOL0xf1c73ecccryptd_alloc_ablkciphercrypto/cryptdEXPORT_SYMBOL_GPL0xce19bac5register_inet6addr_notifiervmlinuxEXPORT_SYMBOL0xb4771565inet_acceptvmlinuxEXPORT_SYMBOL0x49b07aectcp_select_initial_windowvmlinuxEXPORT_SYMBOL0xcbd491a3register_pernet_devicevmlinuxEXPORT_SYMBOL_GPL0x5480f610hidraw_connectvmlinuxEXPORT_SYMBOL_GPL0x2ac5abc2USBC_Dev_ConfigEpvmlinuxEXPORT_SYMBOL0x0a7fa8b3class_for_each_devicevmlinuxEXPORT_SYMBOL_GPL0xdd5d4f2dunbind_con_drivervmlinuxEXPORT_SYMBOL0xe697d108__blk_iopoll_completevmlinuxEXPORT_SYMBOL0xa1c76e0a_cond_reschedvmlinuxEXPORT_SYMBOL0xdbb20bf6up_readvmlinuxEXPORT_SYMBOL0x41a5c1c9empty_zero_pagevmlinuxEXPORT_SYMBOL0xdaf0c51cnfnetlink_subsys_registernet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x63758856ceph_str_hash_namenet/ceph/libcephEXPORT_SYMBOL0xe39dc5ecath9k_hw_gen_timer_startdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x1b9631damtd_is_partitiondrivers/mtd/mtdEXPORT_SYMBOL_GPL0x59e567f4__pskb_pull_tailvmlinuxEXPORT_SYMBOL0x1208540csnd_pcm_lib_free_vmalloc_buffervmlinuxEXPORT_SYMBOL0xad699cbacpufreq_frequency_table_verifyvmlinuxEXPORT_SYMBOL_GPL0x24e07f53USBC_A_valid_InputSelectvmlinuxEXPORT_SYMBOL0x5c80ef19dev_alertvmlinuxEXPORT_SYMBOL0x8a18bb94tty_wait_until_sentvmlinuxEXPORT_SYMBOL0x6c1b8386bioset_freevmlinuxEXPORT_SYMBOL0xd2c4fe44vfs_fstatvmlinuxEXPORT_SYMBOL0xc5a9ec03vfs_lstatvmlinuxEXPORT_SYMBOL0x20bc3470orderly_poweroffvmlinuxEXPORT_SYMBOL_GPL0xfb0567b4gspca_dev_probedrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0xca802929dib8000_get_i2c_masterdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x688d422ddm_bm_block_sizedrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x0ad0dc4fdm_bufio_mark_buffer_dirtydrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x0be13004usb_storage_usb_idsvmlinuxEXPORT_SYMBOL_GPL0xa598e29cvesa_modesvmlinuxEXPORT_SYMBOL0x6d6be680iscsi_target_allocdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x5a8c99c7attach_hdlc_protocoldrivers/net/wan/hdlcEXPORT_SYMBOL0x7a362399__netif_schedulevmlinuxEXPORT_SYMBOL0x6be70ac0cpuidle_get_drivervmlinuxEXPORT_SYMBOL_GPL0x537cbe6bgpio_export_linkvmlinuxEXPORT_SYMBOL_GPL0x824485bcgeneric_fh_to_parentvmlinuxEXPORT_SYMBOL_GPL0x79156da2generic_fillattrvmlinuxEXPORT_SYMBOL0x183fa88bmempool_alloc_slabvmlinuxEXPORT_SYMBOL0x5d0b1892param_set_invboolvmlinuxEXPORT_SYMBOL0xfb87321albs_resumedrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x20d2ae33cpuidle_unregister_drivervmlinuxEXPORT_SYMBOL_GPL0x98fa5debi2c_register_drivervmlinuxEXPORT_SYMBOL0xb2a6ffd6d_instantiate_uniquevmlinuxEXPORT_SYMBOL0xd6b8e852request_threaded_irqvmlinuxEXPORT_SYMBOL0x25890512_raw_spin_trylockvmlinuxEXPORT_SYMBOL0xc359fb65abortvmlinuxEXPORT_SYMBOL0x300074b1isl6421_attachdrivers/media/dvb/frontends/isl6421EXPORT_SYMBOL0x19b75cedad7879_probedrivers/input/touchscreen/ad7879EXPORT_SYMBOL0xfba7ed4dcfg80211_send_unprot_disassocvmlinuxEXPORT_SYMBOL0xe21fd500svc_dropvmlinuxEXPORT_SYMBOL_GPL0xcba8f00csata_scr_validvmlinuxEXPORT_SYMBOL_GPL0x56af0dbdgf128mul_x_blevmlinuxEXPORT_SYMBOL0x59dd2a86jbd2_journal_forgetvmlinuxEXPORT_SYMBOL0x62b87ac2mutex_lock_interruptiblevmlinuxEXPORT_SYMBOL0xfe57de73ath6kl_core_cleanupdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x979775ffcfg80211_get_meshvmlinuxEXPORT_SYMBOL0xf7b070b5skb_clonevmlinuxEXPORT_SYMBOL0xff7f1e0ainput_get_keycodevmlinuxEXPORT_SYMBOL0xf290b898wakeup_source_destroyvmlinuxEXPORT_SYMBOL_GPL0x0487f831fb_find_best_displayvmlinuxEXPORT_SYMBOL0xe01c6253crypto_find_algvmlinuxEXPORT_SYMBOL_GPL0x131e0f96set_task_iopriovmlinuxEXPORT_SYMBOL_GPL0xee9765e5setup_arg_pagesvmlinuxEXPORT_SYMBOL0x6505a0eeusb_serial_generic_process_read_urbdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xca15586art2x00mac_rfkill_polldrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x6f649478amba_request_regionsvmlinuxEXPORT_SYMBOL0x41483476inode_dio_waitvmlinuxEXPORT_SYMBOL0x6f329f27ssb_device_enabledrivers/ssb/ssbEXPORT_SYMBOL0x2c655873iscsi_session_eventdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x7847f792drm_encoder_initdrivers/gpu/drm/drmEXPORT_SYMBOL0xc34efe27snmp_fold_fieldvmlinuxEXPORT_SYMBOL_GPL0x13f8c91ftcp_init_xmit_timersvmlinuxEXPORT_SYMBOL0x715446b4snd_soc_register_cardvmlinuxEXPORT_SYMBOL_GPL0x8cfc0d07phy_ethtool_gsetvmlinuxEXPORT_SYMBOL0x2fb31a3fphy_ethtool_ssetvmlinuxEXPORT_SYMBOL0x22475bb7jbd2_journal_startvmlinuxEXPORT_SYMBOL0xf6bec564dquot_quota_onvmlinuxEXPORT_SYMBOL0xd67364f7eventfd_ctx_fdgetvmlinuxEXPORT_SYMBOL_GPL0xd96dfdeal2tp_udp_encap_recvnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0x8e0e217agarp_unregister_applicationnet/802/garpEXPORT_SYMBOL_GPL0x435e7750iio_st_channel_release_alldrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xacf2f7fcthermal_zone_device_unregistervmlinuxEXPORT_SYMBOL0x5b0cff57ata_host_alloc_pinfovmlinuxEXPORT_SYMBOL_GPL0xb57ed335vfs_lock_filevmlinuxEXPORT_SYMBOL_GPL0xc9d2270ebio_uncopy_uservmlinuxEXPORT_SYMBOL0xd96d9be0make_bad_inodevmlinuxEXPORT_SYMBOL0xbae0419d__d_dropvmlinuxEXPORT_SYMBOL0xa877b514__mmdropvmlinuxEXPORT_SYMBOL_GPL0xdba79ab4hci_find_ltknet/bluetooth/bluetoothEXPORT_SYMBOL0x145128cfmxl5007t_attachdrivers/media/common/tuners/mxl5007tEXPORT_SYMBOL_GPL0xcb6c1ae5btmrvl_interruptdrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x2f6bbff5gss_mech_unregistervmlinuxEXPORT_SYMBOL_GPL0x33dbfd93tcp_memory_allocatedvmlinuxEXPORT_SYMBOL0x8ab28249hid_check_keys_pressedvmlinuxEXPORT_SYMBOL_GPL0xc16eb44bscsi_bus_typevmlinuxEXPORT_SYMBOL_GPL0xa8232c78strtoboolvmlinuxEXPORT_SYMBOL0xefc2eaa9jbd2_journal_force_commit_nestedvmlinuxEXPORT_SYMBOL0x5181c215seq_release_privatevmlinuxEXPORT_SYMBOL0x553efb91rc_core_debugdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x87286d6fsnd_ctl_removevmlinuxEXPORT_SYMBOL0xf97f8d52uart_console_writevmlinuxEXPORT_SYMBOL_GPL0xc9df3d8cwriteback_inodes_sb_nrvmlinuxEXPORT_SYMBOL0x1105a862vfs_removexattrvmlinuxEXPORT_SYMBOL_GPL0xcb11943cfind_symbolvmlinuxEXPORT_SYMBOL_GPL0xcccbfe96__mutex_initvmlinuxEXPORT_SYMBOL0x2e5810c6__aeabi_unwind_cpp_pr1vmlinuxEXPORT_SYMBOL0x25ced647sdio_readsbvmlinuxEXPORT_SYMBOL_GPL0x04cb0404rtc_set_timevmlinuxEXPORT_SYMBOL_GPL0xcd2cb38ajbd2_journal_check_used_featuresvmlinuxEXPORT_SYMBOL0x6b85beeescsi_register_device_handlerdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0xdb6f21f2rt2800_write_beacondrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xf6b0dc7evb2_plane_vaddrdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x2f25eee2cx2341x_updatedrivers/media/video/cx2341xEXPORT_SYMBOL0xccaeb9aedm_sm_checker_create_freshdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x1247749cauth_domain_lookupvmlinuxEXPORT_SYMBOL_GPL0x0b0d888bicmpv6_err_convertvmlinuxEXPORT_SYMBOL0x52737c28serial8250_register_portvmlinuxEXPORT_SYMBOL0x7ad0e6f1fb_get_modevmlinuxEXPORT_SYMBOL0x8d2df28evfs_readvvmlinuxEXPORT_SYMBOL0x77612739do_sync_writevmlinuxEXPORT_SYMBOL0x9a47a6bbdrm_debugfs_remove_filesdrivers/gpu/drm/drmEXPORT_SYMBOL0x6a9daae8mmc_detect_changevmlinuxEXPORT_SYMBOL0xc708d2f5blkiocg_update_timeslice_usedvmlinuxEXPORT_SYMBOL_GPL0x7f8e1230crypto_shash_setkeyvmlinuxEXPORT_SYMBOL_GPL0x7bb88354crypto_ahash_setkeyvmlinuxEXPORT_SYMBOL_GPL0x76092e70search_binary_handlervmlinuxEXPORT_SYMBOL0x525095f2rt_mutex_trylockvmlinuxEXPORT_SYMBOL_GPL0x852ea86drtnl_link_get_netvmlinuxEXPORT_SYMBOL0xd823a41csdio_readbvmlinuxEXPORT_SYMBOL_GPL0x5a144950sdio_readwvmlinuxEXPORT_SYMBOL_GPL0x0538ee06sdio_readlvmlinuxEXPORT_SYMBOL_GPL0x3d029448cpufreq_freq_attr_scaling_available_freqsvmlinuxEXPORT_SYMBOL_GPL0x5468201aUSBC_Host_EnablePingvmlinuxEXPORT_SYMBOL0x4e50e578sw_usb_enable_ohcivmlinuxEXPORT_SYMBOL0xcf60fb3dsw_usb_enable_ehcivmlinuxEXPORT_SYMBOL0x6f08b3e0usb_remove_hcdvmlinuxEXPORT_SYMBOL_GPL0x95f24018ahash_attr_algvmlinuxEXPORT_SYMBOL_GPL0xcfb5871cirq_work_queuevmlinuxEXPORT_SYMBOL_GPL0x407136b1__put_user_8vmlinuxEXPORT_SYMBOL0xb474cf72hostap_init_datadrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xa14a1a39videobuf_streamoffdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xcf76ce95cx2341x_fill_defaultsdrivers/media/video/cx2341xEXPORT_SYMBOL0xa6106ed7ad714x_removedrivers/input/misc/ad714xEXPORT_SYMBOL0x194eadaadrm_edid_header_is_validdrivers/gpu/drm/drmEXPORT_SYMBOL0x5bbb53fbdrm_gtf_mode_complexdrivers/gpu/drm/drmEXPORT_SYMBOL0xabe61cfdtcp_disconnectvmlinuxEXPORT_SYMBOL0xcd6f3286USBC_EnableIdPullUpvmlinuxEXPORT_SYMBOL0x9db0a982put_devicevmlinuxEXPORT_SYMBOL_GPL0x7aee1598nfs_initiate_writevmlinuxEXPORT_SYMBOL_GPL0x8b86a23bmark_info_dirtyvmlinuxEXPORT_SYMBOL0x6c94d187bio_pair_releasevmlinuxEXPORT_SYMBOL0x2469810f__rcu_read_unlockvmlinuxEXPORT_SYMBOL_GPL0x94ae3d69transport_check_aborted_statusdrivers/target/target_core_modEXPORT_SYMBOL0xc7cf0bf9v4l2_ctrl_subscribe_eventvmlinuxEXPORT_SYMBOL0x51334c01ppp_inputvmlinuxEXPORT_SYMBOL0xe553b601spi_alloc_devicevmlinuxEXPORT_SYMBOL_GPL0x34aa8295ata_port_wait_ehvmlinuxEXPORT_SYMBOL_GPL0x303f70c9journal_startvmlinuxEXPORT_SYMBOL0x52172ee2register_filesystemvmlinuxEXPORT_SYMBOL0xba497f13loops_per_jiffyvmlinuxEXPORT_SYMBOL0xd7a31901sas_remove_childrendrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xbddc75d1lirc_dev_fop_ioctldrivers/media/rc/lirc_devEXPORT_SYMBOL0x538dca44drm_getsareadrivers/gpu/drm/drmEXPORT_SYMBOL0xe410c7c5inet_confirm_addrvmlinuxEXPORT_SYMBOL0xba786031eth_validate_addrvmlinuxEXPORT_SYMBOL0x2c208607power_supply_is_system_suppliedvmlinuxEXPORT_SYMBOL_GPL0x01424f59sg_copy_to_buffervmlinuxEXPORT_SYMBOL0x7ab88a45system_freezing_cntvmlinuxEXPORT_SYMBOL0x7d0db45cjiffies_to_clock_tvmlinuxEXPORT_SYMBOL0xe88826b5core_tmr_alloc_reqdrivers/target/target_core_modEXPORT_SYMBOL0x27cb133beeprom_93cx6_multireaddrivers/misc/eeprom/eeprom_93cx6EXPORT_SYMBOL_GPL0x8cacad0adrm_mode_crtc_set_gamma_sizedrivers/gpu/drm/drmEXPORT_SYMBOL0x800ea05cdrm_addbufs_pcidrivers/gpu/drm/drmEXPORT_SYMBOL0xe1fea21chidraw_disconnectvmlinuxEXPORT_SYMBOL_GPL0xa2baf4b8usb_debug_rootvmlinuxEXPORT_SYMBOL_GPL0x5dbe0db3regulator_get_exclusivevmlinuxEXPORT_SYMBOL_GPL0x112258fcgeneric_make_requestvmlinuxEXPORT_SYMBOL0xc8fbfd66generic_file_llseek_sizevmlinuxEXPORT_SYMBOL0x47c149abqueue_delayed_workvmlinuxEXPORT_SYMBOL_GPL0x1c87a811__round_jiffies_upvmlinuxEXPORT_SYMBOL_GPL0x7957f728irlmp_update_clientnet/irda/irdaEXPORT_SYMBOL0x9c0de792garp_uninit_applicantnet/802/garpEXPORT_SYMBOL_GPL0x13898565usb_serial_generic_disconnectdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x05f062d4cx231xx_uninit_isocdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x02124474ip_send_checkvmlinuxEXPORT_SYMBOL0x29693996__rtnl_registervmlinuxEXPORT_SYMBOL_GPL0x9bd19aa0dev_attr_sw_activityvmlinuxEXPORT_SYMBOL_GPL0x23b9d6e2mangle_pathvmlinuxEXPORT_SYMBOL0xc1929745dm_block_manager_createdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x59b554f7anon_inode_getfdvmlinuxEXPORT_SYMBOL_GPL0xcb86990bfilemap_flushvmlinuxEXPORT_SYMBOL0x58370161drm_gem_vm_closedrivers/gpu/drm/drmEXPORT_SYMBOL0xe8794ce1slhc_tossvmlinuxEXPORT_SYMBOL0x67bac714pm_generic_freeze_latevmlinuxEXPORT_SYMBOL_GPL0x3aa2eb19blk_stack_limitsvmlinuxEXPORT_SYMBOL0x688f553efuse_conn_initvmlinuxEXPORT_SYMBOL_GPL0x64ab1e8cieee80211_scan_completednet/mac80211/mac80211EXPORT_SYMBOL0xa20cbad8ceph_calc_raw_layoutnet/ceph/libcephEXPORT_SYMBOL0xf65001d3tda829x_probedrivers/media/common/tuners/tda8290EXPORT_SYMBOL_GPL0x8de324b2drm_kms_helper_poll_disabledrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x93b033d6rpc_mkpipe_datavmlinuxEXPORT_SYMBOL_GPL0x7dfcde85unix_domain_findvmlinuxEXPORT_SYMBOL_GPL0x2b4e200dtcp_set_statevmlinuxEXPORT_SYMBOL_GPL0x8c67c84di2c_smbus_read_i2c_block_datavmlinuxEXPORT_SYMBOL0xb013df6ftty_mutexvmlinuxEXPORT_SYMBOL0x1ae790d8kunmapvmlinuxEXPORT_SYMBOL0xb28f5ef1xt_free_table_infonet/netfilter/x_tablesEXPORT_SYMBOL0x52d6f765prism2_update_comms_qualdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x4bfdb8b1async_raid6_datap_recovcrypto/async_tx/async_raid6_recovEXPORT_SYMBOL_GPL0xea50dad3ahci_ignore_sssvmlinuxEXPORT_SYMBOL_GPL0xb10d55bccn_netlink_sendvmlinuxEXPORT_SYMBOL_GPL0xdd36f303serial8250_modem_statusvmlinuxEXPORT_SYMBOL_GPL0x09597589mnt_pinvmlinuxEXPORT_SYMBOL0x0179cdecset_create_files_asvmlinuxEXPORT_SYMBOL0x911a70abp54_unregister_commondrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x897c8ee6drxk_attachdrivers/media/dvb/frontends/drxkEXPORT_SYMBOL0xa9653b55drxd_attachdrivers/media/dvb/frontends/drxdEXPORT_SYMBOL0x804f922aipmi_addr_lengthdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x8539d878dev_get_by_namevmlinuxEXPORT_SYMBOL0x769f9c25snd_dma_alloc_pages_fallbackvmlinuxEXPORT_SYMBOL0x65eb3063power_supply_set_battery_chargedvmlinuxEXPORT_SYMBOL_GPL0xb03640a4USBC_INT_EnableUsbMiscUintvmlinuxEXPORT_SYMBOL0x5fc8318e__page_symlinkvmlinuxEXPORT_SYMBOL0x7bfba94einstall_exec_credsvmlinuxEXPORT_SYMBOL0x99b4c5adsched_setschedulervmlinuxEXPORT_SYMBOL_GPL0x566aa3e1rxrpc_get_null_keynet/rxrpc/af-rxrpcEXPORT_SYMBOL0x28abacbctarget_get_sessiondrivers/target/target_core_modEXPORT_SYMBOL0xcc96863ctarget_put_sessiondrivers/target/target_core_modEXPORT_SYMBOL0xa194f31fiscsi_segment_seek_sgdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xe7197773drm_ht_insert_itemdrivers/gpu/drm/drmEXPORT_SYMBOL0xfdab6de3unregister_sound_midivmlinuxEXPORT_SYMBOL0x6923ce63irq_work_syncvmlinuxEXPORT_SYMBOL_GPL0x30a80826__kfifo_from_uservmlinuxEXPORT_SYMBOL0x9f57b998nat_h245_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x07b38245xdr_skb_read_bitsvmlinuxEXPORT_SYMBOL_GPL0x25c80a05ipcomp_inputvmlinuxEXPORT_SYMBOL_GPL0xd24f67e1udp_protvmlinuxEXPORT_SYMBOL0xfaed51cainet_putpeervmlinuxEXPORT_SYMBOL_GPL0xdedd7354snd_ctl_register_ioctlvmlinuxEXPORT_SYMBOL0xace41dc0mmc_card_sleepvmlinuxEXPORT_SYMBOL0x6fbf869ci2c_adapter_typevmlinuxEXPORT_SYMBOL_GPL0xab9b1d6fregister_hdlc_protocoldrivers/net/wan/hdlcEXPORT_SYMBOL0x81452c9drc_keydown_notimeoutdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x90afea55dib3000mc_set_configdrivers/media/dvb/frontends/dib3000mcEXPORT_SYMBOL0xb318af47inet6_sk_rebuild_headervmlinuxEXPORT_SYMBOL_GPL0xef999694sdio_reset_commvmlinuxEXPORT_SYMBOL0x364ce1a6v4l2_event_queuevmlinuxEXPORT_SYMBOL_GPL0xe147593fdevice_init_wakeupvmlinuxEXPORT_SYMBOL_GPL0xe2cb79d7unregister_quota_formatvmlinuxEXPORT_SYMBOL0xe7d64318mb_cache_shrinkvmlinuxEXPORT_SYMBOL0xf1e98c74avenrunvmlinuxEXPORT_SYMBOL0x2d3385d3system_wqvmlinuxEXPORT_SYMBOL_GPL0x40a6f522__arm_ioremapvmlinuxEXPORT_SYMBOL0xc2165d85__arm_iounmapvmlinuxEXPORT_SYMBOL0xaf50e76delf_set_personalityvmlinuxEXPORT_SYMBOL0xd93dd256nf_ct_extend_registernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc9cb2e7eregister_mtd_parserdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xd8e4b409mmc_calc_max_discardvmlinuxEXPORT_SYMBOL0x123959a1v4l2_type_namesvmlinuxEXPORT_SYMBOL0xc29fafecfree_mdio_bitbangvmlinuxEXPORT_SYMBOL0x0203156fmark_page_accessedvmlinuxEXPORT_SYMBOL0x8f43aacdtransport_kmap_data_sgdrivers/target/target_core_modEXPORT_SYMBOL0xcf99c3bcsas_parse_pr_out_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0xdd89c51cfc_vport_id_lookupdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xfd93482edm_rh_recovery_in_flightdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xf8224b12mali_get_user_settingdrivers/gpu/mali/mali/maliEXPORT_SYMBOL0x67cb9784ipmi_poll_interfacedrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x9cb8037bxfrm_count_enc_supportedvmlinuxEXPORT_SYMBOL_GPL0x02a18c74nf_conntrack_destroyvmlinuxEXPORT_SYMBOL0xd7d45969scsi_report_bus_resetvmlinuxEXPORT_SYMBOL0x1e52e6a8ceph_compare_optionsnet/ceph/libcephEXPORT_SYMBOL0x28d34ffaosd_req_list_collection_objectsdrivers/scsi/osd/libosdEXPORT_SYMBOL0xecf14b52fc_fill_reply_hdrdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xbb2fdfccrt2x00mac_sta_adddrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xd7cfd79dbrcmu_pktq_penqdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0xbcb1913bbrcmu_pktq_pdeqdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0xa93739aaip6_sk_dst_lookup_flowvmlinuxEXPORT_SYMBOL_GPL0x05d5782bsnd_dma_get_reserved_bufvmlinuxEXPORT_SYMBOL0xe117e0ffhid_output_reportvmlinuxEXPORT_SYMBOL_GPL0x97808107USBC_INT_EpPendingvmlinuxEXPORT_SYMBOL0x8c2a6ee1cdev_addvmlinuxEXPORT_SYMBOL0x82939ebdrcu_batches_completed_schedvmlinuxEXPORT_SYMBOL_GPL0x59e5070d__do_div64vmlinuxEXPORT_SYMBOL0x0649e12bdrm_mode_hsyncdrivers/gpu/drm/drmEXPORT_SYMBOL0xeeacab69rpc_update_rttvmlinuxEXPORT_SYMBOL_GPL0x86760173xfrm_inputvmlinuxEXPORT_SYMBOL0x6d2f6c69dev_mc_addvmlinuxEXPORT_SYMBOL0xc7e6645bdev_mc_delvmlinuxEXPORT_SYMBOL0xf505d8e0dev_uc_addvmlinuxEXPORT_SYMBOL0x5fccd0d2dev_uc_delvmlinuxEXPORT_SYMBOL0x3c02a10aregister_pernet_subsysvmlinuxEXPORT_SYMBOL_GPL0x497d0a5bsnd_timer_newvmlinuxEXPORT_SYMBOL0x6828c88artc_update_irqvmlinuxEXPORT_SYMBOL_GPL0xf878f58bdev_attr_em_message_typevmlinuxEXPORT_SYMBOL_GPL0x7c1621ccfb_blankvmlinuxEXPORT_SYMBOL0xa9717aa4blk_queue_update_dma_padvmlinuxEXPORT_SYMBOL0x277bceeablkdev_get_by_pathvmlinuxEXPORT_SYMBOL0xd58a5ea7open_execvmlinuxEXPORT_SYMBOL0x13535483iscsi_remove_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xd5491986cpu_subsysvmlinuxEXPORT_SYMBOL_GPL0x2289d55dmb_cache_entry_find_nextvmlinuxEXPORT_SYMBOL0xc7c26b56inode_init_ownervmlinuxEXPORT_SYMBOL0x0b48677a__kfifo_initvmlinuxEXPORT_SYMBOL0x1792232afb_sizevmlinuxEXPORT_SYMBOL0x05513b71raid6_calllib/raid6/raid6_pqEXPORT_SYMBOL_GPL0xf1b5eb76ath9k_hw_numtxpendingdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xaeeb2acelirc_dev_fop_writedrivers/media/rc/lirc_devEXPORT_SYMBOL0x3864eb66lrw_free_tablecrypto/lrwEXPORT_SYMBOL_GPL0x43f56e82ata_xfer_mode2shiftvmlinuxEXPORT_SYMBOL_GPL0x1c2b258bjournal_forgetvmlinuxEXPORT_SYMBOL0x4780d7c6rt_mutex_destroyvmlinuxEXPORT_SYMBOL_GPL0x2901a718queue_delayed_work_onvmlinuxEXPORT_SYMBOL_GPL0xd4034828system_freezable_wqvmlinuxEXPORT_SYMBOL_GPL0xe7a0eb02ieee80211_report_low_acknet/mac80211/mac80211EXPORT_SYMBOL0x4c209d4cproc_irdanet/irda/irdaEXPORT_SYMBOL0x4d75d02biscsi_destroy_endpointdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x0c162ba8bitmap_startwritevmlinuxEXPORT_SYMBOL0x8ea2e238devres_open_groupvmlinuxEXPORT_SYMBOL_GPL0x5b19634ddiv_s64_remvmlinuxEXPORT_SYMBOL0x4aa54a59__set_page_dirty_nobuffersvmlinuxEXPORT_SYMBOL0xd7d79132put_online_cpusvmlinuxEXPORT_SYMBOL_GPL0x5cd119e9rxrpc_kernel_reject_callnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x353031d3__nf_ct_kill_acctnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd225c26dusbnet_unlink_rx_urbsdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x04dca738lirc_unregister_driverdrivers/media/rc/lirc_devEXPORT_SYMBOL0x1516e2d8svc_xprt_copy_addrsvmlinuxEXPORT_SYMBOL_GPL0xdfc5169bslhc_initvmlinuxEXPORT_SYMBOL0x641513a3mempool_create_nodevmlinuxEXPORT_SYMBOL0x2cf6f118find_get_pidvmlinuxEXPORT_SYMBOL_GPL0xf2b773b4usb_wwan_releasedrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x8cf4ca5fiscsi_verify_ittdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x276154daath9k_hw_btcoex_init_3wiredrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x3074f033drm_orderdrivers/gpu/drm/drmEXPORT_SYMBOL0xdab66fafdev_set_promiscuityvmlinuxEXPORT_SYMBOL0x463103batimed_output_dev_registervmlinuxEXPORT_SYMBOL_GPL0xef62c6cadm_get_rq_mapinfovmlinuxEXPORT_SYMBOL_GPL0x5520f3c6usb_stor_transparent_scsi_commandvmlinuxEXPORT_SYMBOL_GPL0x172eac7ascsi_bios_ptablevmlinuxEXPORT_SYMBOL0x60cbaeabpm_generic_resumevmlinuxEXPORT_SYMBOL_GPL0xef18868ddrm_prime_init_file_privatedrivers/gpu/drm/drmEXPORT_SYMBOL0x3b266879drm_plane_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x21df7643neigh_connected_outputvmlinuxEXPORT_SYMBOL0xe9f7149czlib_deflate_workspacesizevmlinuxEXPORT_SYMBOL0xdb9e2c22posix_acl_createvmlinuxEXPORT_SYMBOL0xbe254e92param_set_ushortvmlinuxEXPORT_SYMBOL0x76f45e39bt_sock_recvmsgnet/bluetooth/bluetoothEXPORT_SYMBOL0x193c1bc0ath_key_configdrivers/net/wireless/ath/athEXPORT_SYMBOL0x7ce2cfe4svc_recvvmlinuxEXPORT_SYMBOL_GPL0x0fb8eb42udp_flush_pending_framesvmlinuxEXPORT_SYMBOL0x51d2b2f2netlink_kernel_createvmlinuxEXPORT_SYMBOL0x075c7488dev_get_statsvmlinuxEXPORT_SYMBOL0xddffc45esnd_soc_default_volatile_registervmlinuxEXPORT_SYMBOL_GPL0xf19e298bsnd_timer_notifyvmlinuxEXPORT_SYMBOL0xfb1204c0bitmap_unplugvmlinuxEXPORT_SYMBOL0x9193996epm_generic_poweroffvmlinuxEXPORT_SYMBOL_GPL0x86fb9b05bitmap_parse_uservmlinuxEXPORT_SYMBOL0x01000e51schedulevmlinuxEXPORT_SYMBOL0x0f52741fi2400m_netdev_setupdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf1efd4b5dvb_usb_nec_rc_key_to_eventdrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0x32988804drm_property_create_enumdrivers/gpu/drm/drmEXPORT_SYMBOL0xa41029fedrm_get_connector_namedrivers/gpu/drm/drmEXPORT_SYMBOL0x4c4e139bnlmsg_notifyvmlinuxEXPORT_SYMBOL0x7a537d0ammputvmlinuxEXPORT_SYMBOL_GPL0x70806529init_taskvmlinuxEXPORT_SYMBOL0xe48912c7transport_generic_free_cmddrivers/target/target_core_modEXPORT_SYMBOL0xf17b0cd4rpc_task_reset_clientvmlinuxEXPORT_SYMBOL_GPL0x48d3c524snd_rawmidi_transmit_peekvmlinuxEXPORT_SYMBOL0xad3aa858video_devdatavmlinuxEXPORT_SYMBOL0x90209393wakeup_source_createvmlinuxEXPORT_SYMBOL_GPL0xc050cd9b__fscache_wait_on_page_writevmlinuxEXPORT_SYMBOL0xe69806d1target_wait_for_sess_cmdsdrivers/target/target_core_modEXPORT_SYMBOL0x318f3627ath9k_hw_set_txpowerlimitdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x76f12262enclosure_component_registerdrivers/misc/enclosureEXPORT_SYMBOL_GPL0x1dd1f9f3videobuf_queue_core_initdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x89d66811build_ehash_secretvmlinuxEXPORT_SYMBOL0xd9ff02d2__inet_twsk_hashdancevmlinuxEXPORT_SYMBOL_GPL0xf9220d19neigh_table_init_no_netlinkvmlinuxEXPORT_SYMBOL0x84a5d40cgnet_stats_copy_appvmlinuxEXPORT_SYMBOL0x8ec0a481i2c_verify_clientvmlinuxEXPORT_SYMBOL0x71dde890input_allocate_devicevmlinuxEXPORT_SYMBOL0xf218dd2apm_runtime_barriervmlinuxEXPORT_SYMBOL_GPL0x5e86002ddev_printkvmlinuxEXPORT_SYMBOL0x1b015d25bitmap_parselistvmlinuxEXPORT_SYMBOL0xdd4b4da4__insert_inode_hashvmlinuxEXPORT_SYMBOL0x308b733agetboottimevmlinuxEXPORT_SYMBOL_GPL0x47791a27revert_credsvmlinuxEXPORT_SYMBOL0xdf929370fs_overflowgidvmlinuxEXPORT_SYMBOL0xeba9be20scsi_dh_set_paramsdrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0x1608b062md_do_syncvmlinuxEXPORT_SYMBOL_GPL0xd516224aACE_GetClkvmlinuxEXPORT_SYMBOL_GPL0x9c5f81dacpu_rmap_addvmlinuxEXPORT_SYMBOL0x49516cf2bio_clonevmlinuxEXPORT_SYMBOL0x7141fa62wm_hubs_add_analogue_routessound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0x341cb0d7hdlc_closedrivers/net/wan/hdlcEXPORT_SYMBOL0x60cad0cfxfrm_policy_walkvmlinuxEXPORT_SYMBOL0xc61d15d7snd_card_proc_newvmlinuxEXPORT_SYMBOL0x47c16060spi_bitbang_setup_transfervmlinuxEXPORT_SYMBOL_GPL0xb53c91ddfbcon_set_rotatevmlinuxEXPORT_SYMBOL0xda2cb73bblocking_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x5277c805cpu_tlbvmlinuxEXPORT_SYMBOL0xd763c263ping_hashvmlinuxEXPORT_SYMBOL_GPL0xaea00991regmap_readvmlinuxEXPORT_SYMBOL_GPL0xc9779cd8nfs_init_commitvmlinuxEXPORT_SYMBOL_GPL0x06e97f4bdquot_quota_offvmlinuxEXPORT_SYMBOL0x594bf15bioport_mapvmlinuxEXPORT_SYMBOL0x49d089ed__ieee80211_create_tpt_led_triggernet/mac80211/mac80211EXPORT_SYMBOL0xa3c8adc0lbtf_cmd_response_rxdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xa1979424dvb_ringbuffer_flush_spinlock_wakeupdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x566680f9cfg80211_can_beacon_sec_chanvmlinuxEXPORT_SYMBOL0xfe919164__skb_checksum_completevmlinuxEXPORT_SYMBOL0x640c28e5ppp_unregister_channelvmlinuxEXPORT_SYMBOL0xed302f0ftty_lockvmlinuxEXPORT_SYMBOL0x951a58ecregulator_registervmlinuxEXPORT_SYMBOL_GPL0xb5a459dcunregister_blkdevvmlinuxEXPORT_SYMBOL0x256c424akey_allocvmlinuxEXPORT_SYMBOL0xaedda07cwrite_inode_nowvmlinuxEXPORT_SYMBOL0x52e64636osd_req_flush_collectiondrivers/scsi/osd/libosdEXPORT_SYMBOL0x4baa795aieee80211_amsdu_to_8023svmlinuxEXPORT_SYMBOL0x8ded20abUSBC_Host_ReadDataStatusvmlinuxEXPORT_SYMBOL0xf2997713tty_termios_hw_changevmlinuxEXPORT_SYMBOL0x51dba564fat_search_longvmlinuxEXPORT_SYMBOL_GPL0x35a5682dseq_pathvmlinuxEXPORT_SYMBOL0xcc5005femsleep_interruptiblevmlinuxEXPORT_SYMBOL0x44d7c74cfbtft_write_spi_emulate_9drivers/video/fbtft/fbtftEXPORT_SYMBOL0xcd6da8cdiscsi_session_setupdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xe991315dcx231xx_uninit_vbi_isocdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xf8b2ff6eg_verify_token_headervmlinuxEXPORT_SYMBOL_GPL0xb0c1f63cdev_addr_addvmlinuxEXPORT_SYMBOL0xfc70b076netdev_errvmlinuxEXPORT_SYMBOL0x62849ac7dev_valid_namevmlinuxEXPORT_SYMBOL0x3be89d3cusb_register_notifyvmlinuxEXPORT_SYMBOL_GPL0xf88c3301sg_init_tablevmlinuxEXPORT_SYMBOL0x5642793aradix_tree_tag_clearvmlinuxEXPORT_SYMBOL0x0c17d269fsnotifyvmlinuxEXPORT_SYMBOL_GPL0xbb1175a7generic_file_openvmlinuxEXPORT_SYMBOL0xc87c1f84ktime_getvmlinuxEXPORT_SYMBOL_GPL0x93fb946dip_set_get_ip_portnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x7d05946ecfg80211_new_stavmlinuxEXPORT_SYMBOL0x80e3502bgenphy_update_linkvmlinuxEXPORT_SYMBOL0x9c2d4b8bgeneric_cont_expand_simplevmlinuxEXPORT_SYMBOL0x331d7a00d_instantiatevmlinuxEXPORT_SYMBOL0x91d551e9iscsi_ping_comp_eventdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xdcac9016ath_rxbuf_allocdrivers/net/wireless/ath/athEXPORT_SYMBOL0x9458960evb2_queue_initdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xe4fda9f4drm_mm_scan_remove_blockdrivers/gpu/drm/drmEXPORT_SYMBOL0x96aa71a6register_sound_special_devicevmlinuxEXPORT_SYMBOL0x52287b84blk_queue_rq_timed_outvmlinuxEXPORT_SYMBOL_GPL0x08c473b7xt_alloc_table_infonet/netfilter/x_tablesEXPORT_SYMBOL0xc180157dlbtf_rxdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xf5df8690cx231xx_enable_i2c_port_3drivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xa4a2480as5h1420_attachdrivers/media/dvb/frontends/s5h1420EXPORT_SYMBOL0xb7b61546crc32_bevmlinuxEXPORT_SYMBOL0x844dea94__fscache_unregister_netfsvmlinuxEXPORT_SYMBOL0xf257e69dieee80211_register_hwnet/mac80211/mac80211EXPORT_SYMBOL0x587fcf7cceph_osdc_new_requestnet/ceph/libcephEXPORT_SYMBOL0x58c0d75cdrm_helper_crtc_in_usedrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xc37226a5tpm_pcr_extenddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xf5412444rpc_restart_callvmlinuxEXPORT_SYMBOL_GPL0x5595563axfrm_output_resumevmlinuxEXPORT_SYMBOL_GPL0x9d256a9cskb_find_textvmlinuxEXPORT_SYMBOL0x5fd8c2cci2c_unregister_devicevmlinuxEXPORT_SYMBOL_GPL0x6a1d34f1regulator_unregistervmlinuxEXPORT_SYMBOL_GPL0x55970851bio_integrity_add_pagevmlinuxEXPORT_SYMBOL0xdcfbac78current_fs_timevmlinuxEXPORT_SYMBOL0x4155b6f3dvb_ca_en50221_frda_irqdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xb30c30b7skb_queue_tailvmlinuxEXPORT_SYMBOL0x953db383free_irq_cpu_rmapvmlinuxEXPORT_SYMBOL0x65ecc6f2crypto_lookup_templatevmlinuxEXPORT_SYMBOL_GPL0xc50e4996register_sysctlvmlinuxEXPORT_SYMBOL0xadc19b65vfs_test_lockvmlinuxEXPORT_SYMBOL_GPL0x952664c5do_exitvmlinuxEXPORT_SYMBOL_GPL0x1a2a7d99mb86a20s_attachdrivers/media/dvb/frontends/mb86a20sEXPORT_SYMBOL0x1a5b78c4drm_vblank_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x57f60ae8get_hcd0_connect_statusvmlinuxEXPORT_SYMBOL0x3b7222efmark_buffer_dirty_inodevmlinuxEXPORT_SYMBOL0x3109b751cpu_clockvmlinuxEXPORT_SYMBOL_GPL0x471c8f0b__put_mtd_devicedrivers/mtd/mtdEXPORT_SYMBOL_GPL0x4f8dc23a__get_mtd_devicedrivers/mtd/mtdEXPORT_SYMBOL_GPL0xf3ddb296tda10086_attachdrivers/media/dvb/frontends/tda10086EXPORT_SYMBOL0xd69e7414dvb_usb_generic_writedrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0x7c381a76dm_bufio_get_block_sizedrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x9d6f9eddusbhid_submit_reportvmlinuxEXPORT_SYMBOL_GPL0xfbb134fdscsi_execute_reqvmlinuxEXPORT_SYMBOL0xd5149a34dev_pm_qos_remove_requestvmlinuxEXPORT_SYMBOL_GPL0xd93e1ba1backlight_device_registervmlinuxEXPORT_SYMBOL0x33543801queue_workvmlinuxEXPORT_SYMBOL_GPL0xb1c3a01aoops_in_progressvmlinuxEXPORT_SYMBOL0x636890a1rxrpc_kernel_get_abort_codenet/rxrpc/af-rxrpcEXPORT_SYMBOL0x2129c3e7rt2800_validate_eepromdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x8fefd47bpmbus_do_probedrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x8f983afetotal_cpusvmlinuxEXPORT_SYMBOL_GPL0x64d294aetty_insert_flip_string_fixed_flagvmlinuxEXPORT_SYMBOL0x46c8cb36tty_register_ldiscvmlinuxEXPORT_SYMBOL0x7cac099atty_throttlevmlinuxEXPORT_SYMBOL0x29570645tty_check_changevmlinuxEXPORT_SYMBOL0x40354fd8blk_get_backing_dev_infovmlinuxEXPORT_SYMBOL0x2a369e03elevator_initvmlinuxEXPORT_SYMBOL0x35abc0a9kill_fasyncvmlinuxEXPORT_SYMBOL0xdd4a5569param_get_bytevmlinuxEXPORT_SYMBOL0xa4241970ieee80211_sta_ps_transitionnet/mac80211/mac80211EXPORT_SYMBOL0x0b8ef590raid6_2data_recovlib/raid6/raid6_pqEXPORT_SYMBOL_GPL0xf6cc55aaiio_st_channel_get_alldrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xc7316915fc_fill_hdrdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x0edb0ea7drm_fb_helper_setcmapdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x8ca24e90drm_put_devdrivers/gpu/drm/drmEXPORT_SYMBOL0x216933bcdrm_gem_vm_opendrivers/gpu/drm/drmEXPORT_SYMBOL0x3a0eaea2dev_disable_lrovmlinuxEXPORT_SYMBOL0xb2be6e92netdev_stats_to_stats64vmlinuxEXPORT_SYMBOL0x6325626fattribute_container_classdev_to_containervmlinuxEXPORT_SYMBOL_GPL0xf3581a89kblockd_schedule_delayed_workvmlinuxEXPORT_SYMBOL0xec1da5ccdebugfs_create_u8vmlinuxEXPORT_SYMBOL_GPL0xc14be8f4cgroup_taskset_firstvmlinuxEXPORT_SYMBOL_GPL0xdd5e3b0bieee80211_find_sta_by_ifaddrnet/mac80211/mac80211EXPORT_SYMBOL_GPL0xc9a3422ddm_bufio_write_dirty_buffers_asyncdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x6ebfe548drm_core_ioremapdrivers/gpu/drm/drmEXPORT_SYMBOL0x326ab56dsnd_soc_dapm_info_pin_switchvmlinuxEXPORT_SYMBOL_GPL0x6aba167aregulator_list_voltagevmlinuxEXPORT_SYMBOL_GPL0xfa470745gpio_set_one_pin_statusvmlinuxEXPORT_SYMBOL0x86c317a7scsi_is_fc_rportdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x6c8d5ae8__gpio_get_valuevmlinuxEXPORT_SYMBOL_GPL0x432fd7f6__gpio_set_valuevmlinuxEXPORT_SYMBOL_GPL0xd62c833fschedule_timeoutvmlinuxEXPORT_SYMBOL0x581f6f8fg2d_sizevmlinuxEXPORT_SYMBOL0x65ccb6f0call_netevent_notifiersvmlinuxEXPORT_SYMBOL_GPL0xde9e4213ata_scsi_port_error_handlervmlinuxEXPORT_SYMBOL_GPL0xdddf6cacpercpu_counter_comparevmlinuxEXPORT_SYMBOL0xbfd5b4e8crypto_alloc_basevmlinuxEXPORT_SYMBOL_GPL0xfe0a6087aio_put_reqvmlinuxEXPORT_SYMBOL0xe6c3ebb0__raw_writeswvmlinuxEXPORT_SYMBOL0x51908eb8__raw_writeslvmlinuxEXPORT_SYMBOL0x75fee7fd__raw_writesbvmlinuxEXPORT_SYMBOL0x9b693bd0tpa6130a2_stereo_enablesound/soc/codecs/snd-soc-tpa6130a2EXPORT_SYMBOL_GPL0x6d359c2drxrpc_kernel_is_data_lastnet/rxrpc/af-rxrpcEXPORT_SYMBOL0xc4a80955ceph_debugfs_cleanupnet/ceph/libcephEXPORT_SYMBOL0x8e0b7743ipv6_ext_hdrvmlinuxEXPORT_SYMBOL0x675e6e2fneigh_destroyvmlinuxEXPORT_SYMBOL0x72c3248anetdev_warnvmlinuxEXPORT_SYMBOL0x802df86fhid_validate_valuesvmlinuxEXPORT_SYMBOL_GPL0x525b8545mmc_wait_for_app_cmdvmlinuxEXPORT_SYMBOL0x01d1aac1v4l2_fh_delvmlinuxEXPORT_SYMBOL_GPL0xcefcd99aserial8250_unregister_portvmlinuxEXPORT_SYMBOL0xfed229c8blk_end_request_curvmlinuxEXPORT_SYMBOL0xbd66d299replace_mount_optionsvmlinuxEXPORT_SYMBOL0x37ea921evfsmount_lock_local_lock_cpuvmlinuxEXPORT_SYMBOL0x2b6440c9rt2x00queue_unpause_queuedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xb640b833rt2x00lib_txdonedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xfba1bd81usbnet_get_linkdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xee754660cryptd_aead_childcrypto/cryptdEXPORT_SYMBOL_GPL0x5e8747b1__xfrm_policy_checkvmlinuxEXPORT_SYMBOL0x5f0f6ecasnd_ctl_rename_idvmlinuxEXPORT_SYMBOL0x4140cb59blk_lld_busyvmlinuxEXPORT_SYMBOL_GPL0x965babc9blk_sync_queuevmlinuxEXPORT_SYMBOL0x48978769gre_del_protocolnet/ipv4/greEXPORT_SYMBOL_GPL0xaae1700edrm_gem_private_object_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x6d2e2872skb_clone_tx_timestampvmlinuxEXPORT_SYMBOL_GPL0x2dc3f1bcscsi_schedule_ehvmlinuxEXPORT_SYMBOL_GPL0x3093785bpm_runtime_irq_safevmlinuxEXPORT_SYMBOL_GPL0x34b88b41class_unregistervmlinuxEXPORT_SYMBOL_GPL0x4f0b14fbfat_alloc_new_dirvmlinuxEXPORT_SYMBOL_GPL0xf57604cfsimple_write_endvmlinuxEXPORT_SYMBOL0xcbee20b2get_cpu_iowait_time_usvmlinuxEXPORT_SYMBOL_GPL0x999c3148__raw_readsbvmlinuxEXPORT_SYMBOL0xe109dd41ath9k_hw_btcoex_disabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x48679e73ping_init_sockvmlinuxEXPORT_SYMBOL_GPL0x3a5cd4f9ip_mc_rejoin_groupsvmlinuxEXPORT_SYMBOL0x1408c52dnetdev_update_featuresvmlinuxEXPORT_SYMBOL0xf75f9b2cspi_asyncvmlinuxEXPORT_SYMBOL_GPL0x736bc0c6sys_imageblitvmlinuxEXPORT_SYMBOL0xd75c79dfsmp_call_functionvmlinuxEXPORT_SYMBOL0xef6c3f70round_jiffies_up_relativevmlinuxEXPORT_SYMBOL_GPL0x676ed443cx2341x_ctrl_querydrivers/media/video/cx2341xEXPORT_SYMBOL0x2cdcf8f2dibusb_dib3000mc_tuner_attachdrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x2407ecb3eth_header_cachevmlinuxEXPORT_SYMBOL0x3f9e0998w1_touch_blockvmlinuxEXPORT_SYMBOL_GPL0x9d00c9cci2c_smbus_read_byte_datavmlinuxEXPORT_SYMBOL0x512048e2ps2_commandvmlinuxEXPORT_SYMBOL0x93b3c32fps2_handle_responsevmlinuxEXPORT_SYMBOL0xca5dbc50scsi_print_sense_hdrvmlinuxEXPORT_SYMBOL0x592da35cscsi_host_lookupvmlinuxEXPORT_SYMBOL0x73a50255uart_set_optionsvmlinuxEXPORT_SYMBOL_GPL0x47ff399fregulator_is_supported_voltagevmlinuxEXPORT_SYMBOL_GPL0xb9d025c9llist_del_firstvmlinuxEXPORT_SYMBOL_GPL0xb678366fint_sqrtvmlinuxEXPORT_SYMBOL0x4ca48883dec_zone_page_statevmlinuxEXPORT_SYMBOL0x0799aca4local_bh_enablevmlinuxEXPORT_SYMBOL0xaf8aa518system_revvmlinuxEXPORT_SYMBOL0xf38bcdf3nf_conntrack_maxnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xad98e654llc_mac_hdr_initnet/llc/llcEXPORT_SYMBOL0x9dec9e82iscsi_get_pr_transport_id_lendrivers/target/target_core_modEXPORT_SYMBOL0x79a2a18fsrp_rport_deldrivers/scsi/scsi_transport_srpEXPORT_SYMBOL_GPL0x6fdbacbbtcp_syn_flood_actionvmlinuxEXPORT_SYMBOL0x309caf3csnd_pcm_suspendvmlinuxEXPORT_SYMBOL0xd6497c6djournal_dirty_metadatavmlinuxEXPORT_SYMBOL0xa17308a7config_item_putvmlinuxEXPORT_SYMBOL0xb9c43016config_item_getvmlinuxEXPORT_SYMBOL0x3cec859amnt_drop_write_filevmlinuxEXPORT_SYMBOL0x1eb9516eround_jiffies_relativevmlinuxEXPORT_SYMBOL_GPL0x7cc035a7__ucmpdi2vmlinuxEXPORT_SYMBOL0xa376160fhci_conn_check_securenet/bluetooth/bluetoothEXPORT_SYMBOL0x86e1049efc_linkupdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xbd5ea9c9rt2x00queue_get_entrydrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x3faa69e4rt2x00mac_get_antennadrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x534ace95ath9k_hw_enable_interruptsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x93e9a01bath9k_hw_write_associddrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x4416786adib7000p_get_i2c_masterdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xab061220dib7000m_get_i2c_masterdrivers/media/dvb/frontends/dib7000mEXPORT_SYMBOL0x36e7d4c1drm_get_minordrivers/gpu/drm/drmEXPORT_SYMBOL0x53d5e603klist_iter_init_nodevmlinuxEXPORT_SYMBOL_GPL0x4cb33c1bsnd_soc_codec_readable_registervmlinuxEXPORT_SYMBOL_GPL0xc0699aacv4l2_ctrl_checkvmlinuxEXPORT_SYMBOL0x83736bf2video_unregister_devicevmlinuxEXPORT_SYMBOL0x08870f70USBC_EnhanceSignalvmlinuxEXPORT_SYMBOL0x0634100abitmap_parselist_uservmlinuxEXPORT_SYMBOL0x8c43272bida_simple_getvmlinuxEXPORT_SYMBOL0x0113a8d3blkiocg_del_blkio_groupvmlinuxEXPORT_SYMBOL_GPL0xa1b8831ablk_queue_update_dma_alignmentvmlinuxEXPORT_SYMBOL0xe48af212blk_start_requestvmlinuxEXPORT_SYMBOL0x5701a687_raw_read_lock_irqvmlinuxEXPORT_SYMBOL0xe65e3feehrtimer_try_to_cancelvmlinuxEXPORT_SYMBOL_GPL0x784ee08fdrm_mm_pre_getdrivers/gpu/drm/drmEXPORT_SYMBOL0xf5be15d8nf_register_hookvmlinuxEXPORT_SYMBOL0xf9f557e9__dev_get_by_namevmlinuxEXPORT_SYMBOL0x42af9c39skb_copy_and_csum_devvmlinuxEXPORT_SYMBOL0xe7e1f9bbmddev_check_pluggedvmlinuxEXPORT_SYMBOL_GPL0x5646b872input_unregister_handlevmlinuxEXPORT_SYMBOL0x6aef8369usb_hcd_map_urb_for_dmavmlinuxEXPORT_SYMBOL_GPL0x8b494b4cidr_replacevmlinuxEXPORT_SYMBOL0x82acfb70blk_iopoll_schedvmlinuxEXPORT_SYMBOL0x2c7db649irq_dispose_mappingvmlinuxEXPORT_SYMBOL_GPL0x530b1e98pm_suspendvmlinuxEXPORT_SYMBOL0xae69b1c1usermodehelper_read_unlockvmlinuxEXPORT_SYMBOL_GPL0xd9d2bb03snd_usbmidi_disconnectsound/usb/snd-usbmidi-libEXPORT_SYMBOL0x5c165453drbd_set_st_err_strdrivers/block/drbd/drbdEXPORT_SYMBOL0x625e233fregister_netdevvmlinuxEXPORT_SYMBOL0xe44469f5snd_timer_continuevmlinuxEXPORT_SYMBOL0xa8223905blk_limits_io_optvmlinuxEXPORT_SYMBOL0x83f4cbb2iscsi_create_endpointdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xad44ff19dvb_dmx_swfilter_204drivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x0b98c115ping_errvmlinuxEXPORT_SYMBOL_GPL0x549ea8efinet_twsk_purgevmlinuxEXPORT_SYMBOL_GPL0x9e9f1714__bitmap_andnotvmlinuxEXPORT_SYMBOL0x737de5e9radix_tree_tag_getvmlinuxEXPORT_SYMBOL0x669dd28aposix_acl_from_xattrvmlinuxEXPORT_SYMBOL0x076bd216clear_nlinkvmlinuxEXPORT_SYMBOL0xcd9b987cath9k_hw_beaconq_setupdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xc0bd8b9eskb_seq_readvmlinuxEXPORT_SYMBOL0x4f8ef001i2c_transfervmlinuxEXPORT_SYMBOL0x314c661dscsi_device_lookupvmlinuxEXPORT_SYMBOL0x4570a749config_item_initvmlinuxEXPORT_SYMBOL0x83c8a355param_set_intvmlinuxEXPORT_SYMBOL0xc184ec1ecx2341x_ctrl_get_menudrivers/media/video/cx2341xEXPORT_SYMBOL0x05962743ttpci_eeprom_parse_macdrivers/media/dvb/ttpci/ttpci-eepromEXPORT_SYMBOL0x9b2b253adm_bufio_getdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x8f038a78xdr_inline_pagesvmlinuxEXPORT_SYMBOL_GPL0x21c1b9bdsnd_card_file_addvmlinuxEXPORT_SYMBOL0x6ecb804ecrypto_drop_spawnvmlinuxEXPORT_SYMBOL_GPL0x46c1c4a2irlmp_unregister_servicenet/irda/irdaEXPORT_SYMBOL0xd3975c6eata_cable_80wirevmlinuxEXPORT_SYMBOL_GPL0x27c2197fparam_set_shortvmlinuxEXPORT_SYMBOL0x4ec234eanf_nat_tftp_hooknet/netfilter/nf_conntrack_tftpEXPORT_SYMBOL_GPL0x0ed764b0nf_nat_snmp_hooknet/netfilter/nf_conntrack_snmpEXPORT_SYMBOL_GPL0xbb5c7443get_h225_addrnet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x91b71989fc_exch_mgr_list_clonedrivers/scsi/libfc/libfcEXPORT_SYMBOL0x8e5d04a9ad_dpot_probedrivers/misc/ad525x_dpotEXPORT_SYMBOL0x7ee9da9eskb_padvmlinuxEXPORT_SYMBOL0xa12fba7fv4l2_ctrl_handler_freevmlinuxEXPORT_SYMBOL0xfc8cae37sw_hcd_bus_resumevmlinuxEXPORT_SYMBOL0x77bc13a0strimvmlinuxEXPORT_SYMBOL0x7a1d65ccshash_register_instancevmlinuxEXPORT_SYMBOL_GPL0xfd40ed61seq_writevmlinuxEXPORT_SYMBOL0x0099fffdgeneric_file_llseekvmlinuxEXPORT_SYMBOL0x36e5fbaffc_cpu_maskdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x6f83161bsparse_keymap_report_entrydrivers/input/sparse-keymapEXPORT_SYMBOL0xecdda004snd_soc_dapm_new_widgetsvmlinuxEXPORT_SYMBOL_GPL0xb1cf0211snd_info_create_module_entryvmlinuxEXPORT_SYMBOL0xd47b5ac8rtc_update_irq_enablevmlinuxEXPORT_SYMBOL_GPL0x4fc405d4USBC_Host_RusumePortvmlinuxEXPORT_SYMBOL0x999e8297vfreevmlinuxEXPORT_SYMBOL0x2cbf60cfwait_on_page_bitvmlinuxEXPORT_SYMBOL0x8af11587mutex_lockvmlinuxEXPORT_SYMBOL0x64298c24irttp_open_tsapnet/irda/irdaEXPORT_SYMBOL0xa4017eefirlmp_open_lsapnet/irda/irdaEXPORT_SYMBOL0x7eacd9c1lc_changedlib/lru_cacheEXPORT_SYMBOL0x30951fc9mmc_detect_card_removedvmlinuxEXPORT_SYMBOL0xac379d1cscsi_get_host_devvmlinuxEXPORT_SYMBOL0xbab43b36elv_rq_merge_okvmlinuxEXPORT_SYMBOL0xee3496c3dma_pool_allocvmlinuxEXPORT_SYMBOL0xe262deb4alloc_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x779b82fcip6_route_lookupvmlinuxEXPORT_SYMBOL_GPL0xce32b1b0tcp_v4_do_rcvvmlinuxEXPORT_SYMBOL0xffe12a15get_devicevmlinuxEXPORT_SYMBOL_GPL0xdde5fca4blk_dump_rq_flagsvmlinuxEXPORT_SYMBOL0xc1607193exportfs_decode_fhvmlinuxEXPORT_SYMBOL_GPL0xb6d40578sysfs_create_groupvmlinuxEXPORT_SYMBOL_GPL0xbbdb5c42smscore_unregister_clientdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x00c52ef5g_make_token_headervmlinuxEXPORT_SYMBOL_GPL0xc9511858xprt_release_rqst_congvmlinuxEXPORT_SYMBOL_GPL0x8d2141f9xfrm_unregister_modevmlinuxEXPORT_SYMBOL0x2001a4b2consume_skbvmlinuxEXPORT_SYMBOL0x47c9254bscsi_add_devicevmlinuxEXPORT_SYMBOL0x04279306__pm_stay_awakevmlinuxEXPORT_SYMBOL_GPL0xe4340037target_get_task_cdbdrivers/target/target_core_modEXPORT_SYMBOL0xce03ee35rt2x00lib_suspenddrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xe54128ddap6210_gpio_wifi_gpio_ctrldrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0x128f7358rpc_alloc_iostatsvmlinuxEXPORT_SYMBOL_GPL0x12b0c141snd_pcm_lib_get_vmalloc_pagevmlinuxEXPORT_SYMBOL0x894a2335i2c_add_numbered_adaptervmlinuxEXPORT_SYMBOL_GPL0xc19fb6d6input_allocate_polled_devicevmlinuxEXPORT_SYMBOL0x50bf8614usb_unanchor_urbvmlinuxEXPORT_SYMBOL_GPL0x0bc81bcabio_kmallocvmlinuxEXPORT_SYMBOL0xeb490c3apoll_schedule_timeoutvmlinuxEXPORT_SYMBOL0x17523ce7dvb_frontend_sleep_untildrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x485db14dtcp_protvmlinuxEXPORT_SYMBOL0x47b8b6b3root_device_unregistervmlinuxEXPORT_SYMBOL_GPL0x98b7f81ctextsearch_preparevmlinuxEXPORT_SYMBOL0x868bbcb7fuse_direct_iovmlinuxEXPORT_SYMBOL_GPL0x50ab4c6dfiles_lglock_global_lockvmlinuxEXPORT_SYMBOL0xe10a3f21proc_dointvec_ms_jiffiesvmlinuxEXPORT_SYMBOL0xaff69e93ceph_con_keepalivenet/ceph/libcephEXPORT_SYMBOL0x41a160e5synth_buffer_emptydrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xb0870c22sas_port_allocdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x49de86f8async_memcpycrypto/async_tx/async_memcpyEXPORT_SYMBOL_GPL0x03de32cdinet_frag_killvmlinuxEXPORT_SYMBOL0xbbc6c1dcv4l2_fh_releasevmlinuxEXPORT_SYMBOL_GPL0xb3bf784bsimple_setattrvmlinuxEXPORT_SYMBOL0xe86a4850simple_getattrvmlinuxEXPORT_SYMBOL0x2a4975f3mempool_freevmlinuxEXPORT_SYMBOL0x026cf0d7llc_sap_opennet/llc/llcEXPORT_SYMBOL0x0e3ddd10target_fabric_configfs_deregisterdrivers/target/target_core_modEXPORT_SYMBOL0xe61c2c8drt2x00lib_beacondonedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xad3ad91csystimedrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0xc9d962f6drm_vblank_putdrivers/gpu/drm/drmEXPORT_SYMBOL0x92f80edbcred_to_ucredvmlinuxEXPORT_SYMBOL_GPL0x34372a8csock_tx_timestampvmlinuxEXPORT_SYMBOL0xf7986ec4sndhdmi_daivmlinuxEXPORT_SYMBOL0x39fd65causb_stor_Bulk_resetvmlinuxEXPORT_SYMBOL_GPL0x845430f5attribute_container_unregistervmlinuxEXPORT_SYMBOL_GPL0xf13209fadriver_for_each_devicevmlinuxEXPORT_SYMBOL_GPL0xdb7740ffbdget_diskvmlinuxEXPORT_SYMBOL0x9c4b57dfjournal_init_inodevmlinuxEXPORT_SYMBOL0x964bd83fconfigfs_register_subsystemvmlinuxEXPORT_SYMBOL0xf1b31314delayacct_onvmlinuxEXPORT_SYMBOL_GPL0xe0288f69rt2x00mac_set_antennadrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xdeff7abdtcp_v4_get_peervmlinuxEXPORT_SYMBOL0xe469a539tcp_rcv_state_processvmlinuxEXPORT_SYMBOL0xf6837762skb_to_sgvecvmlinuxEXPORT_SYMBOL_GPL0x94b84527v4l2_g_ctrlvmlinuxEXPORT_SYMBOL0x20c55ae0sscanfvmlinuxEXPORT_SYMBOL0x77e35cccnlmsvc_unlock_all_by_ipvmlinuxEXPORT_SYMBOL_GPL0x0d001df8nlmsvc_unlock_all_by_sbvmlinuxEXPORT_SYMBOL_GPL0x87dd2c59__breadaheadvmlinuxEXPORT_SYMBOL0x679413c5iscsi_destroy_ifacedrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x7f499e52iscsi_boot_destroy_ksetdrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0x88256a6discsi_boot_create_initiatordrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0x57156c0esirdev_raw_readdrivers/net/irda/sir-devEXPORT_SYMBOL0x7c3fa8b4rpc_bind_new_programvmlinuxEXPORT_SYMBOL_GPL0x2465d892pfifo_fast_opsvmlinuxEXPORT_SYMBOL0x003a258asnd_pcm_hw_constraint_integervmlinuxEXPORT_SYMBOL0xe63ffdc8led_classdev_suspendvmlinuxEXPORT_SYMBOL_GPL0xa5158ab9platform_device_register_fullvmlinuxEXPORT_SYMBOL_GPL0xda56adfadevm_gpio_freevmlinuxEXPORT_SYMBOL0xc336b2ffjournal_stopvmlinuxEXPORT_SYMBOL0x02fd61cdwait_for_completionvmlinuxEXPORT_SYMBOL0xfc1bc95dath_hw_cycle_counters_updatedrivers/net/wireless/ath/athEXPORT_SYMBOL0x64defbdfcsum_partial_copy_to_xdrvmlinuxEXPORT_SYMBOL_GPL0x7d803ff7dev_get_by_name_rcuvmlinuxEXPORT_SYMBOL0x5f049ed5i2c_smbus_write_byte_datavmlinuxEXPORT_SYMBOL0xfb937b80usb_unlink_urbvmlinuxEXPORT_SYMBOL_GPL0xe0be8295__alloc_tty_drivervmlinuxEXPORT_SYMBOL0x8d59dcdc___ratelimitvmlinuxEXPORT_SYMBOL0x1346636dwm_hubs_add_analogue_controlssound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0x3ac300c4__nf_nat_mangle_tcp_packetnet/ipv4/netfilter/nf_natEXPORT_SYMBOL0xf2cd7d64iio_device_unregisterdrivers/staging/iio/industrialioEXPORT_SYMBOL0x530f1c97hostap_remove_procdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x77416966snd_dma_alloc_pagesvmlinuxEXPORT_SYMBOL0xaa5927f9scsi_kmap_atomic_sgvmlinuxEXPORT_SYMBOL0x134f3459platform_device_add_datavmlinuxEXPORT_SYMBOL_GPL0x3a26ed11sched_clockvmlinuxEXPORT_SYMBOL_GPL0xf63194edrxrpc_kernel_abort_callnet/rxrpc/af-rxrpcEXPORT_SYMBOL0x493bc33edrm_gem_create_mmap_offsetdrivers/gpu/drm/drmEXPORT_SYMBOL0xee8fa319put_rpccredvmlinuxEXPORT_SYMBOL_GPL0xb5cc7fe0rpcauth_init_credvmlinuxEXPORT_SYMBOL_GPL0x1fcece42inet_twdr_twcal_tickvmlinuxEXPORT_SYMBOL_GPL0x1e52e390sock_create_litevmlinuxEXPORT_SYMBOL0x3ce98a14mmc_hw_reset_checkvmlinuxEXPORT_SYMBOL0xe6abc61eUSBC_GetVbusStatusvmlinuxEXPORT_SYMBOL0xcbe205d4ata_std_qc_defervmlinuxEXPORT_SYMBOL_GPL0x749092fa_fc_frame_allocdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x641d278ffcoe_clean_pending_queuedrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xbe4f3633rt2x00usb_vendor_req_buff_lockdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x82105f40snd_soc_register_daisvmlinuxEXPORT_SYMBOL_GPL0x1f9e2be1cpufreq_unregister_governorvmlinuxEXPORT_SYMBOL_GPL0x4c0eeeddv4l2_g_ext_ctrlsvmlinuxEXPORT_SYMBOL0x507445b3generic_interruptvmlinuxEXPORT_SYMBOL0x033de55acdrom_releasevmlinuxEXPORT_SYMBOL0x52db7c8ed_obtain_aliasvmlinuxEXPORT_SYMBOL0xfb3a1f6fsock_update_memcgvmlinuxEXPORT_SYMBOL0x59e2a773nf_conntrack_helper_try_module_getnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x7bc4e582spk_synth_is_alive_nopdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x1eb7a233ip4_datagram_connectvmlinuxEXPORT_SYMBOL0xc7ee533etcp_timewait_state_processvmlinuxEXPORT_SYMBOL0xd705b4c7schedule_hrtimeoutvmlinuxEXPORT_SYMBOL_GPL0x44643b93__aeabi_lmulvmlinuxEXPORT_SYMBOL0x86c11203irttp_dupnet/irda/irdaEXPORT_SYMBOL0x73a56161ceph_osdc_put_eventnet/ceph/libcephEXPORT_SYMBOL0x586e11a4parport_wait_eventdrivers/parport/parportEXPORT_SYMBOL0xa1ddcdf4bcmsdh_probedrivers/net/wireless/ap6210/ap6210EXPORT_SYMBOL0x0dfc7ca8dib8096p_tuner_sleepdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x9666b476v4l2_ctrl_pollvmlinuxEXPORT_SYMBOL0xac13c9c9starget_for_each_devicevmlinuxEXPORT_SYMBOL0x069a2613subsys_interface_registervmlinuxEXPORT_SYMBOL_GPL0xf3916987global_cursor_defaultvmlinuxEXPORT_SYMBOL0x152b7972nobh_writepagevmlinuxEXPORT_SYMBOL0x705c0d0aclear_page_dirty_for_iovmlinuxEXPORT_SYMBOL0xbceb3155srcu_init_notifier_headvmlinuxEXPORT_SYMBOL_GPL0x9a1fc4b4jiffies_to_timevalvmlinuxEXPORT_SYMBOL0x165e7f89clk_disablevmlinuxEXPORT_SYMBOL0x5cb44599wimax_dev_rmnet/wimax/wimaxEXPORT_SYMBOL_GPL0xbe318a7ext_socket_get4_sknet/netfilter/xt_socketEXPORT_SYMBOL0xc6cdef40xt_socket_get6_sknet/netfilter/xt_socketEXPORT_SYMBOL0xba7bf490ceph_osdc_wait_eventnet/ceph/libcephEXPORT_SYMBOL0x01439400ftdi_elan_gone_awaydrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0x2ad0b868gspca_disconnectdrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0x029fc3b4tcp_reno_min_cwndvmlinuxEXPORT_SYMBOL_GPL0x6173bc10snd_rawmidi_kernel_writevmlinuxEXPORT_SYMBOL0x8ccd2118spi_bitbang_stopvmlinuxEXPORT_SYMBOL_GPL0xf6bf0867tty_schedule_flipvmlinuxEXPORT_SYMBOL0xd585c12btty_get_baud_ratevmlinuxEXPORT_SYMBOL0x96877ac4locks_start_gracevmlinuxEXPORT_SYMBOL_GPL0x8635a1f7vfs_follow_linkvmlinuxEXPORT_SYMBOL0x659676c8snd_ac97_pcm_double_rate_rulessound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x0cb4b189tunersdrivers/media/common/tuners/tuner-typesEXPORT_SYMBOL0xf5ede641svc_create_xprtvmlinuxEXPORT_SYMBOL_GPL0x76f893ffmmc_pm_io_shd_suspend_hostvmlinuxEXPORT_SYMBOL0x112c807ftty_shutdownvmlinuxEXPORT_SYMBOL0x20c7fe2ftty_devnumvmlinuxEXPORT_SYMBOL0x019772c0sysfs_rename_linkvmlinuxEXPORT_SYMBOL_GPL0x710efe54tpm_releasedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x4f391d0enla_parsevmlinuxEXPORT_SYMBOL0x9d1e3fb6write_dirty_buffervmlinuxEXPORT_SYMBOL0x9fa82f42noop_llseekvmlinuxEXPORT_SYMBOL0xfbb0aa15llc_sap_findnet/llc/llcEXPORT_SYMBOL0x805ee4ecusbip_pad_isodrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x3a0a1e70input_free_devicevmlinuxEXPORT_SYMBOL0x99a1819fata_host_initvmlinuxEXPORT_SYMBOL_GPL0x1ee4fd24regulator_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x51203b89rt2800_sta_removedrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x72b2fd06async_trigger_callbackcrypto/async_tx/async_txEXPORT_SYMBOL_GPL0x9242bb68xprt_set_retrans_timeout_rttvmlinuxEXPORT_SYMBOL_GPL0x3e9110fa__hw_addr_unsyncvmlinuxEXPORT_SYMBOL0x7deff673dm_consume_argsvmlinuxEXPORT_SYMBOL0x7ef9d082pppox_unbind_sockvmlinuxEXPORT_SYMBOL0x7d11c268jiffiesvmlinuxEXPORT_SYMBOL0x594e1317__modsi3vmlinuxEXPORT_SYMBOL0x211331fa__divsi3vmlinuxEXPORT_SYMBOL0xca682a60osd_req_remove_objectdrivers/scsi/osd/libosdEXPORT_SYMBOL0x9f30d312do_map_probedrivers/mtd/chips/chipregEXPORT_SYMBOL0x99fb3da7dev_queue_xmitvmlinuxEXPORT_SYMBOL0xee428f95proc_mkdirvmlinuxEXPORT_SYMBOL0x13d0adf7__kfifo_outvmlinuxEXPORT_SYMBOL0x3efb35c9get_online_cpusvmlinuxEXPORT_SYMBOL_GPL0x374c1e1cfcoe_wwn_from_macdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0xb89e4970parport_find_basedrivers/parport/parportEXPORT_SYMBOL0x0a469d23mfd_clone_celldrivers/mfd/mfd-coreEXPORT_SYMBOL0x77b39cb4__serpent_setkeycrypto/serpent_genericEXPORT_SYMBOL_GPL0xd0e419b6dmam_free_noncoherentvmlinuxEXPORT_SYMBOL0x6c01021eblk_integrity_merge_biovmlinuxEXPORT_SYMBOL0xb5ba17e7blk_rq_map_sgvmlinuxEXPORT_SYMBOL0x0629b7daproc_dointvec_jiffiesvmlinuxEXPORT_SYMBOL0x99599675dib8000_set_tune_statedrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x31170ac6dib8000_get_tune_statedrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x76db0710__napi_schedulevmlinuxEXPORT_SYMBOL0xcc5e25fbsk_stream_wait_memoryvmlinuxEXPORT_SYMBOL0xf731f15dusb_set_interfacevmlinuxEXPORT_SYMBOL_GPL0x8384a2c5tty_unlockvmlinuxEXPORT_SYMBOL0x0d3cb182kstrtos16_from_uservmlinuxEXPORT_SYMBOL0x9f2bdaac__bitmap_orvmlinuxEXPORT_SYMBOL0x07d9b576fscache_wait_bit_interruptiblevmlinuxEXPORT_SYMBOL0x5f412e76osd_req_flush_objectdrivers/scsi/osd/libosdEXPORT_SYMBOL0x918caa20soc_camera_apply_board_flagsdrivers/media/video/soc_cameraEXPORT_SYMBOL0xce96fe2cnetlink_broadcast_filteredvmlinuxEXPORT_SYMBOL0x5dd67618register_netevent_notifiervmlinuxEXPORT_SYMBOL_GPL0x42d6a515mmc_cd_gpio_freevmlinuxEXPORT_SYMBOL0xb9a8e1e8pm_generic_runtime_idlevmlinuxEXPORT_SYMBOL_GPL0xc7ec6c27strspnvmlinuxEXPORT_SYMBOL0x97255bdfstrlenvmlinuxEXPORT_SYMBOL0x441457df__fscache_alloc_pagevmlinuxEXPORT_SYMBOL0x2084727ahci_recv_framenet/bluetooth/bluetoothEXPORT_SYMBOL0xb48956f8synth_buffer_peekdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xd2981357ath9k_cmn_count_streamsdrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0xdb68bbadrfkill_destroyvmlinuxEXPORT_SYMBOL0xbe1861e5scsi_allocate_commandvmlinuxEXPORT_SYMBOL0xedbaee5enla_strcmpvmlinuxEXPORT_SYMBOL0xa5896da4crypto_ahash_typevmlinuxEXPORT_SYMBOL_GPL0x26bb950b__kfifo_from_user_rvmlinuxEXPORT_SYMBOL0xb2708ee5snd_ac97_mixersound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0xb0564794transport_subsystem_registerdrivers/target/target_core_modEXPORT_SYMBOL0xd87a2bbaparport_announce_portdrivers/parport/parportEXPORT_SYMBOL0xbade738cvb2_common_vm_opsdrivers/media/video/videobuf2-memopsEXPORT_SYMBOL_GPL0xc30de330dibusb_streaming_ctrldrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x179d62abskb_trimvmlinuxEXPORT_SYMBOL0x403f9529gpio_request_onevmlinuxEXPORT_SYMBOL_GPL0x3c7bc4ffrt2x00lib_resumedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x3cfcb7b1svc_proc_registervmlinuxEXPORT_SYMBOL_GPL0x5320832fxfrm_policy_deletevmlinuxEXPORT_SYMBOL0x0c0c5eb2inet_frags_initvmlinuxEXPORT_SYMBOL0xb37f2097power_supply_changedvmlinuxEXPORT_SYMBOL_GPL0x12b347d6rtc_irq_registervmlinuxEXPORT_SYMBOL_GPL0x4e3567f7match_intvmlinuxEXPORT_SYMBOL0x054434d6radix_tree_tag_setvmlinuxEXPORT_SYMBOL0xbd2c8202blk_queue_lld_busyvmlinuxEXPORT_SYMBOL_GPL0xb19b5894shash_free_instancevmlinuxEXPORT_SYMBOL_GPL0x46da2af4debugfs_create_x64vmlinuxEXPORT_SYMBOL_GPL0x91ffe3e0bdi_setup_and_registervmlinuxEXPORT_SYMBOL0x2c112836dm_block_locationdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x8caaa62erpcauth_generic_bind_credvmlinuxEXPORT_SYMBOL_GPL0x4a3a17b4skb_cow_datavmlinuxEXPORT_SYMBOL_GPL0x5232e24csnd_pcm_kernel_ioctlvmlinuxEXPORT_SYMBOL0xdfb01a80cpu_v7_dcache_clean_areavmlinuxEXPORT_SYMBOL0xa0ef1f0bmtd_erasedrivers/mtd/mtdEXPORT_SYMBOL_GPL0xd4bddf5cdm_bufio_issue_flushdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xe3553657drm_edid_block_validdrivers/gpu/drm/drmEXPORT_SYMBOL0x1879fcbdbridge_tunnel_headervmlinuxEXPORT_SYMBOL0x1759a19esnd_card_free_when_closedvmlinuxEXPORT_SYMBOL0x8dfa87e0i2c_get_adaptervmlinuxEXPORT_SYMBOL0xb5e8cc4eLCD_GPIO_releasevmlinuxEXPORT_SYMBOL0x868acba5get_optionsvmlinuxEXPORT_SYMBOL0x9759491csetup_irqvmlinuxEXPORT_SYMBOL_GPL0x4a03732bhci_connectnet/bluetooth/bluetoothEXPORT_SYMBOL0x09d11440xdr_partial_copy_from_skbvmlinuxEXPORT_SYMBOL_GPL0x5c42af68sunxi_hdmiaudio_get_clockratevmlinuxEXPORT_SYMBOL_GPL0x233c8b05input_unregister_handlervmlinuxEXPORT_SYMBOL0x81156994bh_uptodate_or_lockvmlinuxEXPORT_SYMBOL0x2ec524ad__kfifo_in_rvmlinuxEXPORT_SYMBOL0x8754fda6ieee80211_chswitch_donenet/mac80211/mac80211EXPORT_SYMBOL0xd1a78ee1spk_synth_flushdrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x0e447aadrt2x00usb_disconnectdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0xac0d62d2usbnet_set_settingsdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xa2942e16usbnet_get_settingsdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x88c86884rc_register_devicedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x51dce73bxfrm_state_walk_initvmlinuxEXPORT_SYMBOL0xf0769620rtc_read_alarmvmlinuxEXPORT_SYMBOL_GPL0x3c9d1211string_get_sizevmlinuxEXPORT_SYMBOL0x2aad901efat_fill_supervmlinuxEXPORT_SYMBOL_GPL0x313033bbdquot_initializevmlinuxEXPORT_SYMBOL0x7b03848averify_mem_not_deletedvmlinuxEXPORT_SYMBOL0xc1d4d88fregister_exec_domainvmlinuxEXPORT_SYMBOL0x16955515fl6_sock_lookupvmlinuxEXPORT_SYMBOL_GPL0x9a8ffce6USBC_Dev_EpSendStallvmlinuxEXPORT_SYMBOL0x0cdd158dsg_alloc_tablevmlinuxEXPORT_SYMBOL0xf39bd550handle_simple_irqvmlinuxEXPORT_SYMBOL_GPL0xda1be8e1async_synchronize_cookie_domainvmlinuxEXPORT_SYMBOL_GPL0x45f6f52bcall_usermodehelper_execvmlinuxEXPORT_SYMBOL0xf5f76dd4ceph_open_sessionnet/ceph/libcephEXPORT_SYMBOL0xe9c94eactransport_send_check_condition_and_sensedrivers/target/target_core_modEXPORT_SYMBOL0x1bd8be07fc_set_mfsdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xf8ac1bc5fc_disc_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x4468d3c9ath9k_hw_reset_calvaliddrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x76222253sms_get_boarddrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x9785fc30drm_gem_prime_fd_to_handledrivers/gpu/drm/drmEXPORT_SYMBOL0xe7a664c4nf_hooksvmlinuxEXPORT_SYMBOL0x472ca180snd_info_free_entryvmlinuxEXPORT_SYMBOL0xae0c87eepm_qos_remove_notifiervmlinuxEXPORT_SYMBOL_GPL0x25cbe310ieee80211_connection_lossnet/mac80211/mac80211EXPORT_SYMBOL0x24fb1947ieee80211_get_tkip_p2knet/mac80211/mac80211EXPORT_SYMBOL0x8901a29ffc_elsct_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xbc0f64f5drm_releasedrivers/gpu/drm/drmEXPORT_SYMBOL0xe4f4665bipmi_validate_addrdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xf58b50bcpower_supply_unregistervmlinuxEXPORT_SYMBOL_GPL0x74530ecdfscache_op_debug_idvmlinuxEXPORT_SYMBOL0xff1e9dd8seq_list_startvmlinuxEXPORT_SYMBOL0x3f5b1415nf_ct_port_nlattr_to_tuplenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xe0d3140eregister_ip_vs_schedulernet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0xa1eabd87drm_mode_list_concatdrivers/gpu/drm/drmEXPORT_SYMBOL0x47c5f1a8drm_mm_get_block_genericdrivers/gpu/drm/drmEXPORT_SYMBOL0xaeea3073xfrm_aead_get_bynamevmlinuxEXPORT_SYMBOL_GPL0xd33bb82ckm_state_notifyvmlinuxEXPORT_SYMBOL0xb7fee817snd_pcm_set_opsvmlinuxEXPORT_SYMBOL0x910fbfcecpuidle_enable_devicevmlinuxEXPORT_SYMBOL_GPL0x5413f231_raw_write_lockvmlinuxEXPORT_SYMBOL0x279e8316completion_donevmlinuxEXPORT_SYMBOL0x56b84bb1osd_req_decode_get_attr_listdrivers/scsi/osd/libosdEXPORT_SYMBOL0x00d2daf3rt2800_configdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x9d2b1aa7drm_connector_cleanupdrivers/gpu/drm/drmEXPORT_SYMBOL0x197a9d24USBC_Dev_ConfigEpDmavmlinuxEXPORT_SYMBOL0xb1cf44dffb_find_best_modevmlinuxEXPORT_SYMBOL0x8d676f78seq_printfvmlinuxEXPORT_SYMBOL0xf10a1e25call_usermodehelper_setfnsvmlinuxEXPORT_SYMBOL0x5c6236d0drm_mode_validate_sizedrivers/gpu/drm/drmEXPORT_SYMBOL0x03a5b93emmc_free_hostvmlinuxEXPORT_SYMBOL0xc5f14c5aotg_ulpi_createvmlinuxEXPORT_SYMBOL_GPL0x0b742fd7simple_strtolvmlinuxEXPORT_SYMBOL0xf59045bailookup5_nowaitvmlinuxEXPORT_SYMBOL0xf56e9251gpio_set_one_pin_pullvmlinuxEXPORT_SYMBOL0xd08352fdregister_cec_driverdrivers/video/hdmi-cec/hdmi-cecEXPORT_SYMBOL0x5fdf38b8lbs_disablemeshdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xfe83481bunregister_hdlc_protocoldrivers/net/wan/hdlcEXPORT_SYMBOL0x9c1158e1drm_mm_initdrivers/gpu/drm/drmEXPORT_SYMBOL0xac6855b0gen_kill_estimatorvmlinuxEXPORT_SYMBOL0x7b84b6b8blk_queue_alignment_offsetvmlinuxEXPORT_SYMBOL0x00f32deafuse_dev_operationsvmlinuxEXPORT_SYMBOL_GPL0x0036486edquot_allocvmlinuxEXPORT_SYMBOL0x2d3fe3b7unlock_supervmlinuxEXPORT_SYMBOL0x52c424f5sunxi_brom_chip_idvmlinuxEXPORT_SYMBOL0xf24f36cdfc_lport_logo_respdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x28e2fda1dibusb_pid_filter_ctrldrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x796fc5cescsi_get_sense_info_fldvmlinuxEXPORT_SYMBOL0xb0609ea5__bio_clonevmlinuxEXPORT_SYMBOL0xe03fc928vfs_statvmlinuxEXPORT_SYMBOL0xa0fbac79wake_up_bitvmlinuxEXPORT_SYMBOL0x9da70b9bnf_conntrack_flush_reportnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x6503ef71ieee80211_sta_eosp_irqsafenet/mac80211/mac80211EXPORT_SYMBOL0x48a488a0sysctl_tcp_cookie_sizevmlinuxEXPORT_SYMBOL_GPL0xcec12244snd_pcm_lib_malloc_pagesvmlinuxEXPORT_SYMBOL0x48034724zlib_deflateResetvmlinuxEXPORT_SYMBOL0xcdca3691nr_irqsvmlinuxEXPORT_SYMBOL_GPL0x7bd02a68_raw_spin_trylock_bhvmlinuxEXPORT_SYMBOL0x51e77c97pfn_validvmlinuxEXPORT_SYMBOL0x763e54a4irlmp_unregister_clientnet/irda/irdaEXPORT_SYMBOL0xc899b98fUSBC_Host_ClearRqPktCountvmlinuxEXPORT_SYMBOL0x56c8799dscsi_kunmap_atomic_sgvmlinuxEXPORT_SYMBOL0xaec3e14bscsi_block_when_processing_errorsvmlinuxEXPORT_SYMBOL0x0b27b5c9wait_for_key_constructionvmlinuxEXPORT_SYMBOL0x6b3e4a4fjbd2_journal_set_triggersvmlinuxEXPORT_SYMBOL0xdadd6651f_setownvmlinuxEXPORT_SYMBOL0x5ae28824fc_linkdowndrivers/scsi/libfc/libfcEXPORT_SYMBOL0x47a66cb8ath9k_hw_setuprxdescdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x42801d20ubi_syncdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x5f6c865edib7090_slave_resetdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x0367f66ddvb_generic_releasedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x05e807a9xdr_encode_stringvmlinuxEXPORT_SYMBOL_GPL0xd4439e1eip6_dst_hoplimitvmlinuxEXPORT_SYMBOL0x81a94903arp_invalidatevmlinuxEXPORT_SYMBOL0x424a858dmmc_can_sanitizevmlinuxEXPORT_SYMBOL0x3388f385usb_clear_haltvmlinuxEXPORT_SYMBOL_GPL0x97d4d04damba_device_unregistervmlinuxEXPORT_SYMBOL0x6d27ef64__bitmap_emptyvmlinuxEXPORT_SYMBOL0x60c6fd79elv_unregistervmlinuxEXPORT_SYMBOL_GPL0x76595332submit_bhvmlinuxEXPORT_SYMBOL0xc0165122mnt_clone_writevmlinuxEXPORT_SYMBOL_GPL0x2a525871page_mkcleanvmlinuxEXPORT_SYMBOL_GPL0x405c1144get_secondsvmlinuxEXPORT_SYMBOL0x6e8e7a3funregister_8022_clientnet/802/p8022EXPORT_SYMBOL0x23144108lbtf_cmd_copybackdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0x014797b5hostap_set_worddrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x693a13bbusb_anchor_emptyvmlinuxEXPORT_SYMBOL_GPL0xd65432a9sys_fillrectvmlinuxEXPORT_SYMBOL0xf0f1246ckvasprintfvmlinuxEXPORT_SYMBOL0xa6dcc773rb_insert_colorvmlinuxEXPORT_SYMBOL0xdd1b2fe2drm_helper_probe_single_connector_modesdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x5e3ac1a9svcauth_unix_set_clientvmlinuxEXPORT_SYMBOL_GPL0xb9909063__xfrm_init_statevmlinuxEXPORT_SYMBOL0xbc03265chid_dump_fieldvmlinuxEXPORT_SYMBOL_GPL0xeb73caf9USBC_IsIdChangevmlinuxEXPORT_SYMBOL0x8b752ac1ata_tf_to_fisvmlinuxEXPORT_SYMBOL_GPL0xb494631f__module_text_addressvmlinuxEXPORT_SYMBOL_GPL0x66d87d38symbol_put_addrvmlinuxEXPORT_SYMBOL_GPL0x3a2eb6adhrtimer_start_range_nsvmlinuxEXPORT_SYMBOL_GPL0x7c62d042cpu_possible_maskvmlinuxEXPORT_SYMBOL0xa52df1c5llc_set_station_handlernet/llc/llcEXPORT_SYMBOL0x0d82ce9cirttp_close_tsapnet/irda/irdaEXPORT_SYMBOL0xe6e54d16hashbin_remove_thisnet/irda/irdaEXPORT_SYMBOL0x75cef2b4irlmp_close_lsapnet/irda/irdaEXPORT_SYMBOL0x693631b2snd_ctl_add_vmaster_hookvmlinuxEXPORT_SYMBOL_GPL0xcda96cddi2c_smbus_read_word_datavmlinuxEXPORT_SYMBOL0x25e31bc0tty_buffer_request_roomvmlinuxEXPORT_SYMBOL_GPL0xf1e286c8d_allocvmlinuxEXPORT_SYMBOL0xd93dc5b6unuse_mmvmlinuxEXPORT_SYMBOL_GPL0x0bf83394__alloc_pages_nodemaskvmlinuxEXPORT_SYMBOL0x0aadc1c6fc_host_post_eventdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x5abef74celv_abort_queuevmlinuxEXPORT_SYMBOL0x49a6b4a1journal_extendvmlinuxEXPORT_SYMBOL0xe2755929irq_set_affinity_hintvmlinuxEXPORT_SYMBOL_GPL0xa173f339dvb_ca_en50221_camchange_irqdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x0dd2e9fcdrm_gem_object_handle_freedrivers/gpu/drm/drmEXPORT_SYMBOL0x3bcde21awiphy_unregistervmlinuxEXPORT_SYMBOL0x9efad05ddev_errvmlinuxEXPORT_SYMBOL0x34d4919dblk_execute_rq_nowaitvmlinuxEXPORT_SYMBOL_GPL0xb91043d7blk_set_stacking_limitsvmlinuxEXPORT_SYMBOL0x2845b7fdfscache_object_lookup_negativevmlinuxEXPORT_SYMBOL0x21c601c3clk_set_ratevmlinuxEXPORT_SYMBOL0x6fdf9b95clk_get_ratevmlinuxEXPORT_SYMBOL0x9f534f4dceph_buffer_releasenet/ceph/libcephEXPORT_SYMBOL0x8c8ee770ipmi_destroy_userdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xf9ceda4cudp_proc_registervmlinuxEXPORT_SYMBOL0x858e04eakernel_sendpagevmlinuxEXPORT_SYMBOL0xdd176c50ata_print_versionvmlinuxEXPORT_SYMBOL0x18e2c347dev_pm_qos_remove_global_notifiervmlinuxEXPORT_SYMBOL_GPL0x40c2e1fbdelete_from_page_cachevmlinuxEXPORT_SYMBOL0x4f631ce5wait_for_completion_killablevmlinuxEXPORT_SYMBOL0x52a3af94iscsi_complete_scsi_taskdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xcf8b77a4cx2341x_mpeg_ctrlsdrivers/media/video/cx2341xEXPORT_SYMBOL0x56974da5drm_get_usb_devdrivers/gpu/drm/drm_usbEXPORT_SYMBOL0x1ee0fc9bcfg80211_send_assoc_timeoutvmlinuxEXPORT_SYMBOL0x6d6e3c96snd_soc_dai_set_sysclkvmlinuxEXPORT_SYMBOL_GPL0x48336572uart_insert_charvmlinuxEXPORT_SYMBOL_GPL0x50c89f23__alloc_percpuvmlinuxEXPORT_SYMBOL_GPL0xd94096dekfree_call_rcuvmlinuxEXPORT_SYMBOL_GPL0x871559d1drm_helper_hpd_irq_eventdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xf7e75504tpm_get_timeoutsdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xfb1610e4fib_lookupvmlinuxEXPORT_SYMBOL_GPL0x949fa5ddled_trigger_unregistervmlinuxEXPORT_SYMBOL_GPL0x16000a3cdm_device_namevmlinuxEXPORT_SYMBOL_GPL0xa8f7c596ata_eh_qc_retryvmlinuxEXPORT_SYMBOL_GPL0xde04ca3fscsi_cmd_get_serialvmlinuxEXPORT_SYMBOL0x74daee66ceph_calc_pg_primarynet/ceph/libcephEXPORT_SYMBOL0x4898bbf2smscore_onresponsedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x920accbdump_dd_secure_id_getdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0x5b7341c4svc_close_xprtvmlinuxEXPORT_SYMBOL_GPL0xd36f9adcneigh_parms_releasevmlinuxEXPORT_SYMBOL0xfd5e994ammc_card_awakevmlinuxEXPORT_SYMBOL0x3d188d42usb_hcd_link_urb_to_epvmlinuxEXPORT_SYMBOL_GPL0xfa42f228dmam_release_declared_memoryvmlinuxEXPORT_SYMBOL0xd61e5147device_release_drivervmlinuxEXPORT_SYMBOL_GPL0x572e85d4blk_lookup_devtvmlinuxEXPORT_SYMBOL0x4e3cb59ecrypto_grab_skciphervmlinuxEXPORT_SYMBOL_GPL0xe953b21fget_next_inovmlinuxEXPORT_SYMBOL0xffb94ef0_test_and_change_bitvmlinuxEXPORT_SYMBOL0xfe05337fusb_serial_handle_dcd_changedrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xf96941c7iscsi_suspend_queuedrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xddf4ba78dib7000p_pid_filter_ctrldrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x7f14af76dib7000m_pid_filter_ctrldrivers/media/dvb/frontends/dib7000mEXPORT_SYMBOL0xce3ca308copy_from_user_toiovmlinuxEXPORT_SYMBOL0x1b35c831dm_kcopyd_copyvmlinuxEXPORT_SYMBOL0x1f30505fusb_stor_bulk_srbvmlinuxEXPORT_SYMBOL_GPL0x3f6e01f6sw_usb_disable_ehcivmlinuxEXPORT_SYMBOL0xd0c29339usb_alloc_streamsvmlinuxEXPORT_SYMBOL_GPL0x261aecccscsi_register_interfacevmlinuxEXPORT_SYMBOL0x6c1449b0vfs_setleasevmlinuxEXPORT_SYMBOL_GPL0x40d04664console_trylockvmlinuxEXPORT_SYMBOL0x2f3b418apps_eventdrivers/pps/pps_coreEXPORT_SYMBOL0x5945a51bv4l2_ctrl_add_handlervmlinuxEXPORT_SYMBOL0x6f8b3006i2c_smbus_read_block_datavmlinuxEXPORT_SYMBOL0x0d84324busb_put_intfvmlinuxEXPORT_SYMBOL_GPL0xb16f6ec6blk_queue_dma_padvmlinuxEXPORT_SYMBOL0x48d316aawait_for_completion_timeoutvmlinuxEXPORT_SYMBOL0x0521b2eeset_current_groupsvmlinuxEXPORT_SYMBOL0xeed17326core_tpg_registerdrivers/target/target_core_modEXPORT_SYMBOL0x68816785rt2800_write_tx_datadrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x1b76f0b1ar9003_hw_bb_watchdog_dbg_infodrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x2fdffe56videobuf_dma_contig_freedrivers/media/video/videobuf-dma-contigEXPORT_SYMBOL_GPL0xb9e06e0fdrm_get_platform_devdrivers/gpu/drm/drmEXPORT_SYMBOL0x1a02daa5xfrm6_input_addrvmlinuxEXPORT_SYMBOL0x6aca57d8usb_stor_probe2vmlinuxEXPORT_SYMBOL_GPL0x05e42bd2usb_stor_probe1vmlinuxEXPORT_SYMBOL_GPL0x911cf9ddupdate_regionvmlinuxEXPORT_SYMBOL0x81db6ebbxz_dec_resetvmlinuxEXPORT_SYMBOL0x661601desprint_symbolvmlinuxEXPORT_SYMBOL_GPL0xc83a6cf5hci_get_routenet/bluetooth/bluetoothEXPORT_SYMBOL0xe544811erc_g_keycode_from_tabledrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xdd44a9feblowfish_setkeycrypto/blowfish_commonEXPORT_SYMBOL_GPL0xab2001e1scm_fp_dupvmlinuxEXPORT_SYMBOL0x32d9925cmmc_card_can_sleepvmlinuxEXPORT_SYMBOL0x136c89d5devres_removevmlinuxEXPORT_SYMBOL_GPL0x71ab70d1tty_vhangupvmlinuxEXPORT_SYMBOL0x2ce98559kcrypto_wqvmlinuxEXPORT_SYMBOL_GPL0x49628fb7shrink_dcache_parentvmlinuxEXPORT_SYMBOL0xd9f308bfac97_bus_typesound/ac97_busEXPORT_SYMBOL0x4729b463fc_lport_iteratedrivers/scsi/libfc/libfcEXPORT_SYMBOL0x04bbd298rt2x00usb_regbusy_readdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x75c8a11cinet_twdr_twkill_workvmlinuxEXPORT_SYMBOL_GPL0x609f1c7esynchronize_netvmlinuxEXPORT_SYMBOL0xb77b0159v4l2_prio_initvmlinuxEXPORT_SYMBOL0x687db13eUSBC_GetPortFifoStartAddrvmlinuxEXPORT_SYMBOL0x4f1ccf7ddev_pm_qos_add_global_notifiervmlinuxEXPORT_SYMBOL_GPL0x2d3961e6bus_for_each_devvmlinuxEXPORT_SYMBOL_GPL0x4774659fbus_for_each_drvvmlinuxEXPORT_SYMBOL_GPL0xf2c5a8d0bsg_job_donevmlinuxEXPORT_SYMBOL_GPL0x6091797fsynchronize_rcuvmlinuxEXPORT_SYMBOL_GPL0x42825ce2rcu_scheduler_activevmlinuxEXPORT_SYMBOL_GPL0xe523ad75synchronize_irqvmlinuxEXPORT_SYMBOL0xc92e57adparport_negotiatedrivers/parport/parportEXPORT_SYMBOL0x0d501fb1onenand_addrdrivers/mtd/onenand/onenandEXPORT_SYMBOL0x74dcd98cdm_bufio_get_aux_datadrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xbb9b2ffdpneigh_lookupvmlinuxEXPORT_SYMBOL0xa64a4ceausb_nop_xceiv_unregistervmlinuxEXPORT_SYMBOL0x69f3dcfbkern_path_createvmlinuxEXPORT_SYMBOL0x6d09b57e_raw_write_lock_bhvmlinuxEXPORT_SYMBOL0x9e7d6bd0__udelayvmlinuxEXPORT_SYMBOL0xcd679be5transport_generic_allocate_tasksdrivers/target/target_core_modEXPORT_SYMBOL0x3960d994soc_camera_lockdrivers/media/video/soc_cameraEXPORT_SYMBOL0x038a58afdrm_mode_create_scaling_mode_propertydrivers/gpu/drm/drmEXPORT_SYMBOL0x43384bd9drm_buffer_allocdrivers/gpu/drm/drmEXPORT_SYMBOL0x5ddb33e9__serpent_encryptcrypto/serpent_genericEXPORT_SYMBOL_GPL0x1d4ff0aexdr_terminate_stringvmlinuxEXPORT_SYMBOL_GPL0x436e5a2frpc_net_nsvmlinuxEXPORT_SYMBOL_GPL0x9a1631c0snd_timer_closevmlinuxEXPORT_SYMBOL0xf5b907a7blk_queue_find_tagvmlinuxEXPORT_SYMBOL0x4bc62a81audit_enabledvmlinuxEXPORT_SYMBOL_GPL0xd8a2ab95in_egroup_pvmlinuxEXPORT_SYMBOL0xf5beb5edaf_alg_releasecrypto/af_algEXPORT_SYMBOL_GPL0x409873e3tty_termios_baud_ratevmlinuxEXPORT_SYMBOL0x07a890c8fb_alloc_cmapvmlinuxEXPORT_SYMBOL0x184e6c85radix_tree_gang_lookup_slotvmlinuxEXPORT_SYMBOL0x1c026e1anf_conntrack_broadcast_helpnet/netfilter/nf_conntrack_broadcastEXPORT_SYMBOL_GPL0x82bf4601i2400m_initdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xe7b9104fdib0090_get_wbd_targetdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x9feca203skb_append_datato_fragsvmlinuxEXPORT_SYMBOL0x83fe7b24USBC_SelectActiveEpvmlinuxEXPORT_SYMBOL0x476ac5dbrelease_firmwarevmlinuxEXPORT_SYMBOL0x9e0c711dvzalloc_nodevmlinuxEXPORT_SYMBOL0x7f24de73jiffies_to_usecsvmlinuxEXPORT_SYMBOL0x37befc70jiffies_to_msecsvmlinuxEXPORT_SYMBOL0x8f0ceb8dar9003_mci_statedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xeccc9f7ddrm_detect_hdmi_monitordrivers/gpu/drm/drmEXPORT_SYMBOL0x6d25bf82tcp_child_processvmlinuxEXPORT_SYMBOL0x26cce50csw_hcd_platform_set_modevmlinuxEXPORT_SYMBOL0x8c01501c__pm_runtime_suspendvmlinuxEXPORT_SYMBOL_GPL0xb6896671crc_t10difvmlinuxEXPORT_SYMBOL0xa250c838param_get_charpvmlinuxEXPORT_SYMBOL0xc94d8667rt2800_config_filterdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xf671979emtd_unpointdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xaa98422algs8gxx_attachdrivers/media/dvb/frontends/lgs8gxxEXPORT_SYMBOL0xffbe8619mdiobus_writevmlinuxEXPORT_SYMBOL0xe0e60090bsg_unregister_queuevmlinuxEXPORT_SYMBOL_GPL0x461e948ddquot_claim_space_nodirtyvmlinuxEXPORT_SYMBOL0xdebccefdprepare_binprmvmlinuxEXPORT_SYMBOL0x118f32f3hashbin_get_firstnet/irda/irdaEXPORT_SYMBOL0xc0a2c1c5soc_camera_host_registerdrivers/media/video/soc_cameraEXPORT_SYMBOL0x84c84966tcp_v4_destroy_sockvmlinuxEXPORT_SYMBOL0xca6082f2snd_soc_add_dai_controlsvmlinuxEXPORT_SYMBOL_GPL0xf39e56eaUSBC_INT_DisableEpvmlinuxEXPORT_SYMBOL0xc10a5da2ahci_port_resumevmlinuxEXPORT_SYMBOL_GPL0x6d6cbadcrb_lastvmlinuxEXPORT_SYMBOL0x7ab3ca18eventfd_ctx_readvmlinuxEXPORT_SYMBOL_GPL0x96ebc920mount_bdevvmlinuxEXPORT_SYMBOL0xe6fbe430can_do_mlockvmlinuxEXPORT_SYMBOL0x60a13e90rcu_barriervmlinuxEXPORT_SYMBOL_GPL0xdf60cc27__print_symbolvmlinuxEXPORT_SYMBOL0xd01a621anf_ct_helper_expectfn_find_by_symbolnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x8ff0c28fsoc_camera_host_unregisterdrivers/media/video/soc_cameraEXPORT_SYMBOL0xcb3a4439ndisc_mc_mapvmlinuxEXPORT_SYMBOL0xf052e6dbv4l2_ctrl_query_menuvmlinuxEXPORT_SYMBOL0x17683344LCD_set_panel_funsvmlinuxEXPORT_SYMBOL0x91715312sprintfvmlinuxEXPORT_SYMBOL0x5dd629fdsimple_unlinkvmlinuxEXPORT_SYMBOL0x81d1f513simple_attr_writevmlinuxEXPORT_SYMBOL_GPL0xe85a72bcgeneric_listxattrvmlinuxEXPORT_SYMBOL0x72277f27wimax_state_changenet/wimax/wimaxEXPORT_SYMBOL_GPL0x5379cea3ceph_caps_for_modenet/ceph/libcephEXPORT_SYMBOL0x7b6ea093sas_eh_bus_reset_handlerdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xf6ebc03bnet_ratelimitvmlinuxEXPORT_SYMBOL0x65fcbc98dev_addr_initvmlinuxEXPORT_SYMBOL0x79413cadmedia_device_register_entityvmlinuxEXPORT_SYMBOL_GPL0x273def9eshash_ahash_updatevmlinuxEXPORT_SYMBOL_GPL0x1ef1f75fposix_acl_validvmlinuxEXPORT_SYMBOL0xfcd24b02invalidate_inode_buffersvmlinuxEXPORT_SYMBOL0x7bc3c662cgroup_add_filesvmlinuxEXPORT_SYMBOL_GPL0xe3e2cfafraid_class_releasedrivers/scsi/raid_classEXPORT_SYMBOL0xc13ae0baunix_socket_tablevmlinuxEXPORT_SYMBOL_GPL0xb78ea13dscsi_registervmlinuxEXPORT_SYMBOL0xaa852c93regulator_register_notifiervmlinuxEXPORT_SYMBOL_GPL0x752dcbe3crypto_shash_updatevmlinuxEXPORT_SYMBOL_GPL0x81e6ec5ajournal_dirty_datavmlinuxEXPORT_SYMBOL0xb62b320dfind_vmavmlinuxEXPORT_SYMBOL0x3878f75anf_ct_extend_unregisternet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x5ba93f9draid6_gfinvlib/raid6/raid6_pqEXPORT_SYMBOL0x24e74212sas_request_addrdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xbcb07ae4can_get_echo_skbdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x380b4ec7svc_print_addrvmlinuxEXPORT_SYMBOL_GPL0x4f902b75kernel_connectvmlinuxEXPORT_SYMBOL0xbb5dcac5dquot_destroyvmlinuxEXPORT_SYMBOL0x31612b61fcoe_ctlr_recv_flogidrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0x31ca1d86nxt200x_attachdrivers/media/dvb/frontends/nxt200xEXPORT_SYMBOL0xd32b9cb9inet_stream_connectvmlinuxEXPORT_SYMBOL0xec7d9e58dma_buf_end_cpu_accessvmlinuxEXPORT_SYMBOL_GPL0x60217b73disp_set_hdmi_funcvmlinuxEXPORT_SYMBOL0xa05c03dfmempool_kmallocvmlinuxEXPORT_SYMBOL0x6f8e3bceath9k_hw_ani_monitordrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x5f3e5451rpc_mkpipe_dentryvmlinuxEXPORT_SYMBOL_GPL0xeb890d59USBC_Host_StartInTokenvmlinuxEXPORT_SYMBOL0x160dfc6dahci_stop_enginevmlinuxEXPORT_SYMBOL_GPL0x4358e74cata_eh_qc_completevmlinuxEXPORT_SYMBOL_GPL0x3d24978asplice_from_pipe_beginvmlinuxEXPORT_SYMBOL0xfd6293c2boot_tvec_basesvmlinuxEXPORT_SYMBOL0x6d662533_find_first_bit_levmlinuxEXPORT_SYMBOL0x7bf8a771rt2800_load_firmwaredrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x35925f88videobuf_reqbufsdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xb4988c30drm_prime_lookup_imported_buf_handledrivers/gpu/drm/drmEXPORT_SYMBOL0x770cf981tpm_senddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xecf9f743netdev_class_remove_filevmlinuxEXPORT_SYMBOL0xaaeeb698v4l2_queryctrlvmlinuxEXPORT_SYMBOL0xdf48a0ebflex_array_putvmlinuxEXPORT_SYMBOL0x9fbe9abeblk_queue_physical_block_sizevmlinuxEXPORT_SYMBOL0x8ae52012nlmclnt_donevmlinuxEXPORT_SYMBOL_GPL0xcec416e7dio_end_iovmlinuxEXPORT_SYMBOL_GPL0xc1e177d7relay_subbufs_consumedvmlinuxEXPORT_SYMBOL_GPL0xc0bf6eadtimecounter_cyc2timevmlinuxEXPORT_SYMBOL_GPL0x278cde08sw_get_ic_vervmlinuxEXPORT_SYMBOL0x5e06d6bfieee80211_wake_queuenet/mac80211/mac80211EXPORT_SYMBOL0x506691f1sock_diag_check_cookievmlinuxEXPORT_SYMBOL_GPL0x1c89e020v4l2_ctrl_handler_log_statusvmlinuxEXPORT_SYMBOL0xb7f77027rtc_tm_to_ktimevmlinuxEXPORT_SYMBOL_GPL0x29731b80journal_ack_errvmlinuxEXPORT_SYMBOL0x307c2fd0generic_check_addressablevmlinuxEXPORT_SYMBOL0x213d6f02perf_event_read_valuevmlinuxEXPORT_SYMBOL_GPL0x04482cdb__refrigeratorvmlinuxEXPORT_SYMBOL0x7cb1ae69cpu_downvmlinuxEXPORT_SYMBOL0xd3f2bde8ath_gen_timer_allocdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xd59e972cgspca_suspenddrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0xb2a5515cdrm_mode_parse_command_line_for_connectordrivers/gpu/drm/drmEXPORT_SYMBOL0x12c6276adrm_buffer_read_objectdrivers/gpu/drm/drmEXPORT_SYMBOL0x3550d043inet6_csk_addr2sockaddrvmlinuxEXPORT_SYMBOL_GPL0xf7df2ae2netdev_refcnt_readvmlinuxEXPORT_SYMBOL0x3005dbb4input_mt_init_slotsvmlinuxEXPORT_SYMBOL0xf6b17959ata_link_printkvmlinuxEXPORT_SYMBOL0x52b1337f__pm_wakeup_eventvmlinuxEXPORT_SYMBOL_GPL0x40f38c79devres_close_groupvmlinuxEXPORT_SYMBOL_GPL0x1e00c1db__blk_end_requestvmlinuxEXPORT_SYMBOL0x5cd7eb9bwm_hubs_dcs_donesound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0x4663f591xt_unregister_targetsnet/netfilter/x_tablesEXPORT_SYMBOL0x91f9eb8cregister_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x42e0be95drm_connector_property_set_valuedrivers/gpu/drm/drmEXPORT_SYMBOL0xfec04434drm_connector_property_get_valuedrivers/gpu/drm/drmEXPORT_SYMBOL0xc86c4e9eklist_nextvmlinuxEXPORT_SYMBOL_GPL0xc3275fcdtcp_rcv_establishedvmlinuxEXPORT_SYMBOL0x52d7ab60inet_getpeervmlinuxEXPORT_SYMBOL_GPL0x1128aec8spi_alloc_mastervmlinuxEXPORT_SYMBOL_GPL0xc15e9885ahci_set_em_messagesvmlinuxEXPORT_SYMBOL_GPL0x55ded4d2scsi_prep_fnvmlinuxEXPORT_SYMBOL0xd7e56a4esimple_strtollvmlinuxEXPORT_SYMBOL0x20000329simple_strtoulvmlinuxEXPORT_SYMBOL0x4e366c75nfs_initiate_commitvmlinuxEXPORT_SYMBOL_GPL0x9a9cbe89ieee80211_napi_completenet/mac80211/mac80211EXPORT_SYMBOL0xd83c7949pwm_enabledrivers/misc/pwm-sunxiEXPORT_SYMBOL0x401583fctda826x_attachdrivers/media/dvb/frontends/tda826xEXPORT_SYMBOL0x95334ca5drm_addmapdrivers/gpu/drm/drmEXPORT_SYMBOL0x1e2f58canf_register_afinfovmlinuxEXPORT_SYMBOL_GPL0x697f5078net_ns_type_operationsvmlinuxEXPORT_SYMBOL_GPL0x7b4859a4proc_symlinkvmlinuxEXPORT_SYMBOL0xf5a56c27ceph_copy_user_to_page_vectornet/ceph/libcephEXPORT_SYMBOL0x231d70fcencode_bchlib/bchEXPORT_SYMBOL_GPL0xe53e6d83osd_dev_finidrivers/scsi/osd/libosdEXPORT_SYMBOL0xdc69f384parport_ieee1284_ecp_write_datadrivers/parport/parportEXPORT_SYMBOL0x81be03b9parport_ieee1284_epp_write_datadrivers/parport/parportEXPORT_SYMBOL0x817d52f2ad_dpot_removedrivers/misc/ad525x_dpotEXPORT_SYMBOL0x5228fa65videobuf_qbufdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x0adc2a5f__rtnl_link_unregistervmlinuxEXPORT_SYMBOL_GPL0x9c01a511snd_soc_dai_set_tdm_slotvmlinuxEXPORT_SYMBOL_GPL0x201d8ea3encode_rs8vmlinuxEXPORT_SYMBOL_GPL0x31aedd6fblk_integrity_comparevmlinuxEXPORT_SYMBOL0xcf2c4559blk_queue_dma_alignmentvmlinuxEXPORT_SYMBOL0xa9546668remap_vmalloc_rangevmlinuxEXPORT_SYMBOL0x08210643noop_backing_dev_infovmlinuxEXPORT_SYMBOL_GPL0xd985dc99mempool_free_pagesvmlinuxEXPORT_SYMBOL0xfcec0987enable_irqvmlinuxEXPORT_SYMBOL0x1e7bbcb3kernel_restartvmlinuxEXPORT_SYMBOL_GPL0x9c7077bdenable_hltvmlinuxEXPORT_SYMBOL0x2d85592ciscsi_set_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x50d5200eata_port_printkvmlinuxEXPORT_SYMBOL0xcb130cc3__ieee80211_get_rx_led_namenet/mac80211/mac80211EXPORT_SYMBOL0x73bf4e04raid_class_attachdrivers/scsi/raid_classEXPORT_SYMBOL0xc8748cf9fc_rport_terminate_iodrivers/scsi/libfc/libfcEXPORT_SYMBOL0x4e7498dfdrm_mode_createdrivers/gpu/drm/drmEXPORT_SYMBOL0xc0edba75dev_alloc_skbvmlinuxEXPORT_SYMBOL0xfa5c9777md_ack_all_badblocksvmlinuxEXPORT_SYMBOL_GPL0xdd27fa87memchrvmlinuxEXPORT_SYMBOL0xc18ac88dnf_ct_expect_hsizenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x45318de1drm_mode_destroydrivers/gpu/drm/drmEXPORT_SYMBOL0xc7dff50binet6_releasevmlinuxEXPORT_SYMBOL0x0593fc92nfs_request_add_commit_listvmlinuxEXPORT_SYMBOL_GPL0x02e26f49vfs_kern_mountvmlinuxEXPORT_SYMBOL_GPL0x602795bedib7000pc_detectiondrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x36bc9a29gss_mech_list_pseudoflavorsvmlinuxEXPORT_SYMBOL_GPL0xaabdf949sock_diag_registervmlinuxEXPORT_SYMBOL_GPL0x8a968dbdspi_bus_typevmlinuxEXPORT_SYMBOL_GPL0x1c309d5danon_transport_class_unregistervmlinuxEXPORT_SYMBOL_GPL0x315c65fdzlib_deflateInit2vmlinuxEXPORT_SYMBOL0x179d7068submit_biovmlinuxEXPORT_SYMBOL0x8b6e736dalloc_page_buffersvmlinuxEXPORT_SYMBOL_GPL0xfbf9be5dregister_oom_notifiervmlinuxEXPORT_SYMBOL_GPL0xcfc68341synchronize_rcu_bhvmlinuxEXPORT_SYMBOL_GPL0x549525efhandle_nested_irqvmlinuxEXPORT_SYMBOL_GPL0xf676e221on_each_cpu_maskvmlinuxEXPORT_SYMBOL0xaed5133bceph_msg_dumpnet/ceph/libcephEXPORT_SYMBOL0x46450cd8fl6_update_dstvmlinuxEXPORT_SYMBOL_GPL0x882bb9b2tcp_valid_rtt_measvmlinuxEXPORT_SYMBOL0x557f888cneigh_lookupvmlinuxEXPORT_SYMBOL0xd313bf67mmc_remove_hostvmlinuxEXPORT_SYMBOL0xd67fe8c1usb_put_hcdvmlinuxEXPORT_SYMBOL_GPL0xce7727f1ata_host_resumevmlinuxEXPORT_SYMBOL_GPL0x2ef63ad6scsi_dev_info_list_del_keyedvmlinuxEXPORT_SYMBOL0x0c17edb1osd_sec_init_nosec_doall_capsdrivers/scsi/osd/libosdEXPORT_SYMBOL0xad29e091lirc_dev_fop_opendrivers/media/rc/lirc_devEXPORT_SYMBOL0xae29bbb8tcp_mtup_initvmlinuxEXPORT_SYMBOL0x5aa9e72fsw_usb_device_enablevmlinuxEXPORT_SYMBOL0x70e1b988sw_hcd_h_disablevmlinuxEXPORT_SYMBOL0x0b081798USBC_DisableUsbLineStateBypassvmlinuxEXPORT_SYMBOL0x0ea07ec7kstrtou8_from_uservmlinuxEXPORT_SYMBOL0x973d0f9ekstrtoul_from_uservmlinuxEXPORT_SYMBOL0x74037326l2tp_tunnel_createnet/l2tp/l2tp_coreEXPORT_SYMBOL_GPL0xafaa3bd2simple_map_initdrivers/mtd/maps/map_funcsEXPORT_SYMBOL0xd163cadedm_tm_commitdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x73bbccf5cache_purgevmlinuxEXPORT_SYMBOL_GPL0x47ad5d8fsnd_soc_jack_reportvmlinuxEXPORT_SYMBOL_GPL0xba1da60asnd_soc_dapm_get_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xf88c6740snd_soc_dapm_put_enum_doublevmlinuxEXPORT_SYMBOL_GPL0x813f3de4v4l2_find_nearest_formatvmlinuxEXPORT_SYMBOL_GPL0x222e7ce2sysfs_streqvmlinuxEXPORT_SYMBOL0x72808966alloc_buffer_headvmlinuxEXPORT_SYMBOL0x1cd1b0eeath9k_hw_set_tsfadjustdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x5c9c1112usbnet_get_endpointsdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x96d9c6d3cx231xx_disable656drivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x69bce06egameport_unregister_portdrivers/input/gameport/gameportEXPORT_SYMBOL0xadb985f8xdr_write_pagesvmlinuxEXPORT_SYMBOL_GPL0x1e581a1ehci_le_conn_updatenet/bluetooth/bluetoothEXPORT_SYMBOL0xa08255a2iscsi_conn_teardowndrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x4e12339fdevice_remove_filevmlinuxEXPORT_SYMBOL_GPL0x60506751unmap_kernel_range_noflushvmlinuxEXPORT_SYMBOL_GPL0x289c3714nf_ct_alloc_hashtablenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xee4eda13spk_serial_synth_probedrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0xa81a7bfcipv6_skip_exthdrvmlinuxEXPORT_SYMBOL0x3d6f757btcp_md5_hash_skb_datavmlinuxEXPORT_SYMBOL0x6ac64447ip_options_compilevmlinuxEXPORT_SYMBOL0x036c9d93sock_diag_unregistervmlinuxEXPORT_SYMBOL_GPL0xfe89b07eaio_completevmlinuxEXPORT_SYMBOL0x03bd889dparam_get_ulongvmlinuxEXPORT_SYMBOL0xcb21b259kill_pidvmlinuxEXPORT_SYMBOL0x60f7b763ceph_get_direct_page_vectornet/ceph/libcephEXPORT_SYMBOL0x43f43afcdrm_gem_mmapdrivers/gpu/drm/drmEXPORT_SYMBOL0x8abf6483rt6_lookupvmlinuxEXPORT_SYMBOL0x97e46eefunix_outq_lenvmlinuxEXPORT_SYMBOL_GPL0x12f99022inet_frags_init_netvmlinuxEXPORT_SYMBOL0xb5ca1c46slhc_freevmlinuxEXPORT_SYMBOL0x7345228cspi_bitbang_cleanupvmlinuxEXPORT_SYMBOL_GPL0x5f94be9cdevice_store_intvmlinuxEXPORT_SYMBOL_GPL0x64999478congestion_waitvmlinuxEXPORT_SYMBOL0x2fc3d5e4hci_recv_fragmentnet/bluetooth/bluetoothEXPORT_SYMBOL0x60e88d11fbtft_write_vmem16_bus9drivers/video/fbtft/fbtftEXPORT_SYMBOL0xcf9c44b1fbtft_write_vmem16_bus8drivers/video/fbtft/fbtftEXPORT_SYMBOL0xf4b30bdecpufreq_user_event_notifyvmlinuxEXPORT_SYMBOL_GPL0x40468909i2c_del_drivervmlinuxEXPORT_SYMBOL0x7da635edblk_queue_dma_drainvmlinuxEXPORT_SYMBOL_GPL0x886a8410config_item_set_namevmlinuxEXPORT_SYMBOL0x983f23c0dquot_releasevmlinuxEXPORT_SYMBOL0x77339464_raw_write_unlock_irqrestorevmlinuxEXPORT_SYMBOL0xc3584339__atomic_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x82a84408ieee80211_beacon_lossnet/mac80211/mac80211EXPORT_SYMBOL0x1ea792f0sas_slave_configuredrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x057ce975hex_dump_to_buffervmlinuxEXPORT_SYMBOL0x00dfa8a9inode_add_rsv_spacevmlinuxEXPORT_SYMBOL0x668077c0file_ra_state_initvmlinuxEXPORT_SYMBOL_GPL0x39e6286aosd_req_list_partition_objectsdrivers/scsi/osd/libosdEXPORT_SYMBOL0xadf0565evb2_prepare_bufdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x98c042b9media_entity_cleanupvmlinuxEXPORT_SYMBOL_GPL0x0ade3c39usb_alloc_coherentvmlinuxEXPORT_SYMBOL_GPL0xa731be57crypto_larval_killvmlinuxEXPORT_SYMBOL_GPL0xfdbc5198sas_tlr_supporteddrivers/scsi/scsi_transport_sasEXPORT_SYMBOL_GPL0x9a61969esas_change_queue_typedrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xdc89602axfrm_register_modevmlinuxEXPORT_SYMBOL0x926120dbinet_csk_get_portvmlinuxEXPORT_SYMBOL_GPL0x12857e29snd_rawmidi_kernel_releasevmlinuxEXPORT_SYMBOL0x582f72dcmmc_flush_cachevmlinuxEXPORT_SYMBOL0xefbc964bi2c_clients_commandvmlinuxEXPORT_SYMBOL0x4a0719c6hostap_init_ap_procdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xd77c0bc8klist_removevmlinuxEXPORT_SYMBOL_GPL0x3a0f9871dev_get_flagsvmlinuxEXPORT_SYMBOL0xf026721csw_hcd_hub_controlvmlinuxEXPORT_SYMBOL0xd9ea045aUSBC_DisableHoscvmlinuxEXPORT_SYMBOL0x96c2e67fusb_get_statusvmlinuxEXPORT_SYMBOL_GPL0x5fc8b0ce__wait_on_bit_lockvmlinuxEXPORT_SYMBOL0xdcd849ebqt1010_attachdrivers/media/common/tuners/qt1010EXPORT_SYMBOL0xfab817ebsvc_auth_registervmlinuxEXPORT_SYMBOL_GPL0xe5122890flow_cache_genidvmlinuxEXPORT_SYMBOL0x39ae4435gen_new_estimatorvmlinuxEXPORT_SYMBOL0x54f6dd4finput_classvmlinuxEXPORT_SYMBOL_GPL0xbd91f65chdmi_edid_receivedvmlinuxEXPORT_SYMBOL0x40f71d6bcrypto_alg_mod_lookupvmlinuxEXPORT_SYMBOL_GPL0xe5e3173ffreeze_supervmlinuxEXPORT_SYMBOL0x234d9e46__devm_request_regionvmlinuxEXPORT_SYMBOL0xdddea4ddcx231xx_unmute_audiodrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x25fd5f1eflexcop_pass_dmx_datadrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0xc8308bd8__cfg80211_send_disassocvmlinuxEXPORT_SYMBOL0x6cda23a6hid_connectvmlinuxEXPORT_SYMBOL_GPL0x90a4704dmmc_set_data_timeoutvmlinuxEXPORT_SYMBOL0xf5ef842ev4l_bound_align_imagevmlinuxEXPORT_SYMBOL_GPL0x3e8d5c50usb_set_device_statevmlinuxEXPORT_SYMBOL_GPL0x74465165scsi_autopm_get_devicevmlinuxEXPORT_SYMBOL_GPL0xe92d8892scsi_autopm_put_devicevmlinuxEXPORT_SYMBOL_GPL0xe4f8739escsi_eh_finish_cmdvmlinuxEXPORT_SYMBOL0xe607e940vc_consvmlinuxEXPORT_SYMBOL0xf90c5c39transport_free_sessiondrivers/target/target_core_modEXPORT_SYMBOL0xd714257cath9k_hw_bstuck_nfcaldrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x9bacc4c4drm_add_edid_modesdrivers/gpu/drm/drmEXPORT_SYMBOL0xe503a09emmc_can_resetvmlinuxEXPORT_SYMBOL0xc210a8f9v4l2_ctrl_new_std_menuvmlinuxEXPORT_SYMBOL0xaf4bb0c8ata_common_sdev_attrsvmlinuxEXPORT_SYMBOL_GPL0x5bc4f32ccpu_rmap_updatevmlinuxEXPORT_SYMBOL0xdd0a2ba2strlcatvmlinuxEXPORT_SYMBOL0xd627480bstrncatvmlinuxEXPORT_SYMBOL0xcfeb0be9rb_augment_erase_beginvmlinuxEXPORT_SYMBOL0xb3735c4dblk_queue_max_discard_sectorsvmlinuxEXPORT_SYMBOL0x49c867b0inode_claim_rsv_spacevmlinuxEXPORT_SYMBOL0xd2965f6fkthread_should_stopvmlinuxEXPORT_SYMBOL0x5953933fsnd_ac97_bussound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x9710417bnfnetlink_set_errnet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0xc87dccbbmtd_lock_user_prot_regdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xfe9f7dd5netdev_noticevmlinuxEXPORT_SYMBOL0x89109295mddev_initvmlinuxEXPORT_SYMBOL_GPL0xeccf640fpm_generic_freeze_noirqvmlinuxEXPORT_SYMBOL_GPL0xff3137fablk_rq_map_kernvmlinuxEXPORT_SYMBOL0x0fe4582async_mapping_buffersvmlinuxEXPORT_SYMBOL0xb7babb80sunxi_sc_chip_idvmlinuxEXPORT_SYMBOL0xe245de2dirias_delete_objectnet/irda/irdaEXPORT_SYMBOL0xa54cd5e0ceph_auth_is_authenticatednet/ceph/libcephEXPORT_SYMBOL0x9585be61bt_sock_registernet/bluetooth/bluetoothEXPORT_SYMBOL0x2c489760usb_serial_handle_breakdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x2dc1ad1amwifiex_disable_auto_dsdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0x276fbc64__scsi_add_devicevmlinuxEXPORT_SYMBOL0xd61d13c3fat_scanvmlinuxEXPORT_SYMBOL_GPL0x869a2998inode_change_okvmlinuxEXPORT_SYMBOL0xbcd3ef13irias_object_change_attributenet/irda/irdaEXPORT_SYMBOL0xfc76f44ert2x00queue_flush_queuedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x66c7f2d8datagram_pollvmlinuxEXPORT_SYMBOL0xf449698bsnd_pcm_hw_constraint_minmaxvmlinuxEXPORT_SYMBOL0x000ab59eUSBC_Host_SetFunctionAddress_DeafultvmlinuxEXPORT_SYMBOL0x69d38ed9__scsi_print_sensevmlinuxEXPORT_SYMBOL0x7ead138ablk_queue_end_tagvmlinuxEXPORT_SYMBOL0x1e9edfb7seq_hlist_start_head_rcuvmlinuxEXPORT_SYMBOL0xc85e6899lbtf_debugdrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xb00b793ci2400m_bm_cmd_preparedrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x2694d803drm_gem_object_allocdrivers/gpu/drm/drmEXPORT_SYMBOL0x2edfd8a5dev_mc_flushvmlinuxEXPORT_SYMBOL0x80f05818dev_uc_flushvmlinuxEXPORT_SYMBOL0x7609d8c4media_device_registervmlinuxEXPORT_SYMBOL_GPL0x80c25aa6usb_stor_Bulk_transportvmlinuxEXPORT_SYMBOL_GPL0xc702b791jbd2_journal_check_available_featuresvmlinuxEXPORT_SYMBOL0x9db2f5b9flush_old_execvmlinuxEXPORT_SYMBOL0x00c4dc87timecounter_initvmlinuxEXPORT_SYMBOL_GPL0x49fdf398ieee80211_free_txskbnet/mac80211/mac80211EXPORT_SYMBOL0x6011d453llc_sap_closenet/llc/llcEXPORT_SYMBOL0xb29cb917garp_request_leavenet/802/garpEXPORT_SYMBOL_GPL0x5fc48609osduld_unregister_testdrivers/scsi/osd/osdEXPORT_SYMBOL0x3ccd7facad714x_probedrivers/input/misc/ad714xEXPORT_SYMBOL0x639399b9ump_dd_phys_block_count_getdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0x57043b90tcp_init_cgroupvmlinuxEXPORT_SYMBOL0x8e708c96inet_addr_typevmlinuxEXPORT_SYMBOL0x4a153170inet_recvmsgvmlinuxEXPORT_SYMBOL0x307d922esnd_ctl_sync_vmaster_hookvmlinuxEXPORT_SYMBOL_GPL0xec17bc02sw_hcd_urb_dequeuevmlinuxEXPORT_SYMBOL0x802015d8mdiobus_unregistervmlinuxEXPORT_SYMBOL0xa4701e9etimekeeping_inject_offsetvmlinuxEXPORT_SYMBOL0xc7734221do_trace_rcu_torture_readvmlinuxEXPORT_SYMBOL_GPL0xf6ee6329ceph_auth_update_authorizernet/ceph/libcephEXPORT_SYMBOL0x2a45f041phy_detachvmlinuxEXPORT_SYMBOL0x5d56d3e1mii_link_okvmlinuxEXPORT_SYMBOL0xec8a7c39nfs_commitdata_allocvmlinuxEXPORT_SYMBOL_GPL0x26b698b5wimax_msg_data_lennet/wimax/wimaxEXPORT_SYMBOL_GPL0xf848fad0nf_conntrack_l4proto_udp6net/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x31f54448transport_deregister_sessiondrivers/target/target_core_modEXPORT_SYMBOL0x21e36bf2smscore_registry_getmodedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x5372b787cfg80211_inform_bss_framevmlinuxEXPORT_SYMBOL0xa705b719tcp_proc_registervmlinuxEXPORT_SYMBOL0xeaf822f0wakeup_source_removevmlinuxEXPORT_SYMBOL_GPL0xb54b4811stop_ttyvmlinuxEXPORT_SYMBOL0x2c81ec75__irq_regsvmlinuxEXPORT_SYMBOL0x8f6fbc47fscache_fsdef_indexvmlinuxEXPORT_SYMBOL0x5189517adquot_get_dqblkvmlinuxEXPORT_SYMBOL0x8caaab68generic_write_syncvmlinuxEXPORT_SYMBOL0x845dca9ewl1251_alloc_hwdrivers/net/wireless/wl1251/wl1251EXPORT_SYMBOL_GPL0x4db3ac33rt2x00mac_txdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x73f39b9fsdio_writelvmlinuxEXPORT_SYMBOL_GPL0x17e95dd8nfs_pageio_reset_write_mdsvmlinuxEXPORT_SYMBOL_GPL0xbed60566sub_preempt_countvmlinuxEXPORT_SYMBOL0xa5459b48nand_bch_correct_datadrivers/mtd/nand/nand_bchEXPORT_SYMBOL0x7730f22ddrbd_conn_strdrivers/block/drbd/drbdEXPORT_SYMBOL0x93eed252xfrm_policy_destroyvmlinuxEXPORT_SYMBOL0x5c1ed948sdio_memcpy_toiovmlinuxEXPORT_SYMBOL_GPL0x0bb98d42hcd0_set_vbusvmlinuxEXPORT_SYMBOL0xe2f59985jbd2_journal_stopvmlinuxEXPORT_SYMBOL0x197effcbceph_osdc_release_requestnet/ceph/libcephEXPORT_SYMBOL0x60d72f5acfi_fixupdrivers/mtd/chips/cfi_utilEXPORT_SYMBOL0x5fcdcc05ipmi_get_my_LUNdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x82796323neigh_ifdownvmlinuxEXPORT_SYMBOL0x335d7246snd_pcm_hw_constraint_ratnumsvmlinuxEXPORT_SYMBOL0x67ab3c90snd_ctl_replacevmlinuxEXPORT_SYMBOL0x6c1ce5cestrcspnvmlinuxEXPORT_SYMBOL0x60d3889ctwofish_setkeyvmlinuxEXPORT_SYMBOL_GPL0x193e6150md_allow_writevmlinuxEXPORT_SYMBOL_GPL0x36c7412bthermal_zone_unbind_cooling_devicevmlinuxEXPORT_SYMBOL0x7b213fecata_cable_ignorevmlinuxEXPORT_SYMBOL_GPL0xcd79d5b9LCD_GPIO_set_attrvmlinuxEXPORT_SYMBOL0x667d0c00jbd2_journal_extendvmlinuxEXPORT_SYMBOL0xd7fc82f7bio_integrity_clonevmlinuxEXPORT_SYMBOL0x6583d7dcnf_conntrack_l3proto_registernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xeb56c4e6nf_conntrack_l4proto_registernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xbdf512defree_bchlib/bchEXPORT_SYMBOL_GPL0x445e4590usb_serial_resumedrivers/usb/serial/usbserialEXPORT_SYMBOL0x53074c37sirdev_write_completedrivers/net/irda/sir-devEXPORT_SYMBOL0xbdca326ehid_parse_reportvmlinuxEXPORT_SYMBOL_GPL0xeec8d11cblkdev_aio_writevmlinuxEXPORT_SYMBOL_GPL0x03296f50seq_bitmap_listvmlinuxEXPORT_SYMBOL0xaec655c7alloc_pages_exactvmlinuxEXPORT_SYMBOL0x9bcb76a0nf_nat_sdp_media_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x7b41a4c2ieee80211_rx_irqsafenet/mac80211/mac80211EXPORT_SYMBOL0xc8480242ieee80211_rxnet/mac80211/mac80211EXPORT_SYMBOL0x8881282bceph_msg_newnet/ceph/libcephEXPORT_SYMBOL0x80da186dsirdev_receivedrivers/net/irda/sir-devEXPORT_SYMBOL0x498dcb5edrm_ut_debug_printkdrivers/gpu/drm/drmEXPORT_SYMBOL0xf0e41694drm_rmmapdrivers/gpu/drm/drmEXPORT_SYMBOL0x29120095sw_hcd_load_testpacketvmlinuxEXPORT_SYMBOL0x8e1ad16bata_timing_computevmlinuxEXPORT_SYMBOL_GPL0x9f7b5644devm_regulator_bulk_getvmlinuxEXPORT_SYMBOL_GPL0x95c578a0ioremap_page_rangevmlinuxEXPORT_SYMBOL_GPL0x7ee171f5parport_unregister_devicedrivers/parport/parportEXPORT_SYMBOL0x2b03a1a8usbnet_skb_returndrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x71a08fdbgss_svc_to_pseudoflavorvmlinuxEXPORT_SYMBOL_GPL0xe23ecc32svc_find_xprtvmlinuxEXPORT_SYMBOL_GPL0xb8737d71svc_processvmlinuxEXPORT_SYMBOL_GPL0xf85e79e2rpc_force_rebindvmlinuxEXPORT_SYMBOL_GPL0x7b6a9051register_sound_specialvmlinuxEXPORT_SYMBOL0x0f7e3400__nla_reservevmlinuxEXPORT_SYMBOL0x29537c9ealloc_chrdev_regionvmlinuxEXPORT_SYMBOL0x09b5bd00inc_zone_page_statevmlinuxEXPORT_SYMBOL0x42b84425rxrpc_kernel_data_deliverednet/rxrpc/af-rxrpcEXPORT_SYMBOL0x5cedbf2bnf_ct_iterate_cleanupnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xeb3fb43dlbs_suspenddrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xdfe86124deregister_mtd_blktransdrivers/mtd/mtd_blkdevsEXPORT_SYMBOL_GPL0xc58122b9tpm_show_capsdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x105a6472rpc_killall_tasksvmlinuxEXPORT_SYMBOL_GPL0x5c69e804arp_findvmlinuxEXPORT_SYMBOL0x769923f6skb_checksumvmlinuxEXPORT_SYMBOL0xbdf5c25crb_nextvmlinuxEXPORT_SYMBOL0xf9773f2dinode_permissionvmlinuxEXPORT_SYMBOL0x3523c31dbuffer_migrate_pagevmlinuxEXPORT_SYMBOL0xf83178bdfinish_waitvmlinuxEXPORT_SYMBOL0x52d7b2fdllc_sap_listnet/llc/llcEXPORT_SYMBOL0x60300e69dvb_unregister_adapterdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x564f1dcaklist_add_aftervmlinuxEXPORT_SYMBOL_GPL0x9d04e885svc_xprt_initvmlinuxEXPORT_SYMBOL_GPL0x7949dbbdphy_start_anegvmlinuxEXPORT_SYMBOL0x3ef42fefscsi_print_resultvmlinuxEXPORT_SYMBOL0x4cbbd171__bitmap_weightvmlinuxEXPORT_SYMBOL0x61b7b126simple_strtoullvmlinuxEXPORT_SYMBOL0x528c709dsimple_read_from_buffervmlinuxEXPORT_SYMBOL0xe0ddab6firq_domain_simple_opsvmlinuxEXPORT_SYMBOL_GPL0x8453b145clockevent_delta2nsvmlinuxEXPORT_SYMBOL_GPL0xa9bd6c1earmpmu_get_pmu_idvmlinuxEXPORT_SYMBOL_GPL0x6eb85693nf_defrag_ipv6_enablenet/ipv6/netfilter/nf_defrag_ipv6EXPORT_SYMBOL_GPL0x6b6c3d10nf_defrag_ipv4_enablenet/ipv4/netfilter/nf_defrag_ipv4EXPORT_SYMBOL_GPL0xd43ef92clc_index_oflib/lru_cacheEXPORT_SYMBOL0x35b7fdddosd_dev_initdrivers/scsi/osd/libosdEXPORT_SYMBOL0xa681fe88generate_random_uuidvmlinuxEXPORT_SYMBOL0x3147857ddefault_redvmlinuxEXPORT_SYMBOL0xff9ca065fb_edid_to_monspecsvmlinuxEXPORT_SYMBOL0xe89485c3rxrpc_kernel_accept_callnet/rxrpc/af-rxrpcEXPORT_SYMBOL0xad1bb027nf_ct_free_hashtablenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xcd6aa29crtl2830_get_tuner_i2c_adapterdrivers/media/dvb/frontends/rtl2830EXPORT_SYMBOL0xaa27f367get_net_ns_by_pidvmlinuxEXPORT_SYMBOL_GPL0x31efcec2mmc_power_save_hostvmlinuxEXPORT_SYMBOL0x83682f70USBC_Host_ConfigEpDmavmlinuxEXPORT_SYMBOL0x7480188efb_deferred_io_cleanupvmlinuxEXPORT_SYMBOL_GPL0x93f7fe23vfs_statfsvmlinuxEXPORT_SYMBOL0x189171c2fbtft_write_gpio16_wr_latcheddrivers/video/fbtft/fbtftEXPORT_SYMBOL0xfeb5af35target_submit_cmddrivers/target/target_core_modEXPORT_SYMBOL0xf1831ed3af_alg_register_typecrypto/af_algEXPORT_SYMBOL_GPL0x2cb0b89aieee80211_iterate_active_interfaces_atomicnet/mac80211/mac80211EXPORT_SYMBOL_GPL0xbc1cc4ddath9k_hw_initdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x766adebecfi_cmdset_0020drivers/mtd/chips/cfi_cmdset_0020EXPORT_SYMBOL_GPL0x2d125278cfi_cmdset_0006drivers/mtd/chips/cfi_cmdset_0002EXPORT_SYMBOL_GPL0x92da6712cfi_cmdset_0002drivers/mtd/chips/cfi_cmdset_0002EXPORT_SYMBOL_GPL0x7dd50a69cfi_cmdset_0701drivers/mtd/chips/cfi_cmdset_0002EXPORT_SYMBOL_GPL0x0f74f3ddcfi_cmdset_0001drivers/mtd/chips/cfi_cmdset_0001EXPORT_SYMBOL_GPL0x5090e968cfi_cmdset_0003drivers/mtd/chips/cfi_cmdset_0001EXPORT_SYMBOL_GPL0xa9ee81c4cfi_cmdset_0200drivers/mtd/chips/cfi_cmdset_0001EXPORT_SYMBOL_GPL0xb7db4718pmbus_write_bytedrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x5a5a6808async_xor_valcrypto/async_tx/async_xorEXPORT_SYMBOL_GPL0x07055ae0udp_ioctlvmlinuxEXPORT_SYMBOL0xb0501541i2c_new_probed_devicevmlinuxEXPORT_SYMBOL_GPL0x3cf99bbb__nla_reserve_nohdrvmlinuxEXPORT_SYMBOL0x164c667a__get_page_tailvmlinuxEXPORT_SYMBOL0xbc5fe7c1dm_sm_disk_createdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x8544811frtnetlink_put_metricsvmlinuxEXPORT_SYMBOL0xe93dfd79v4l2_spi_new_subdevvmlinuxEXPORT_SYMBOL_GPL0x5ac218aev4l2_ctrl_handler_setupvmlinuxEXPORT_SYMBOL0xea10212aint_to_scsilunvmlinuxEXPORT_SYMBOL0x6fd90dfcmay_umountvmlinuxEXPORT_SYMBOL0xc445b44dwl1273_get_formatsound/soc/codecs/snd-soc-wl1273EXPORT_SYMBOL_GPL0x3263c644iscsi_tcp_r2tpool_allocdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x1beddf15md_integrity_add_rdevvmlinuxEXPORT_SYMBOL0x58af0af4block_read_full_pagevmlinuxEXPORT_SYMBOL0x42ec8dbcconsole_driversvmlinuxEXPORT_SYMBOL_GPL0xbe33025crt2800_get_tkip_seqdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xeb711ae7snd_soc_params_to_bclkvmlinuxEXPORT_SYMBOL_GPL0x759425f9mmc_hw_resetvmlinuxEXPORT_SYMBOL0xd821497e__scsi_alloc_queuevmlinuxEXPORT_SYMBOL0xe50f3d2abus_sort_breadthfirstvmlinuxEXPORT_SYMBOL_GPL0xb2bf05d8ct_sip_get_headernet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x4dd2487chashbin_findnet/irda/irdaEXPORT_SYMBOL0x8bc61f3fipt_alloc_initial_tablenet/ipv4/netfilter/ip_tablesEXPORT_SYMBOL_GPL0x7e14f301sas_port_deletedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x289bedecrc_free_devicedrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0x7e752578dvb_net_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x9135201dtcp_v4_connectvmlinuxEXPORT_SYMBOL0xfa42b302tcp_sync_mssvmlinuxEXPORT_SYMBOL0x5ff4e2dfUSBC_GetStatus_DpvmlinuxEXPORT_SYMBOL0xbc52a749regmap_raw_writevmlinuxEXPORT_SYMBOL_GPL0xada38534regulator_bulk_disablevmlinuxEXPORT_SYMBOL_GPL0xf99ba6dbjbd2_journal_ack_errvmlinuxEXPORT_SYMBOL0xd0c05159emergency_restartvmlinuxEXPORT_SYMBOL_GPL0x3ff62317local_bh_disablevmlinuxEXPORT_SYMBOL0x1e3f728ddm_block_datadrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x4b77ffa4tcp_death_rowvmlinuxEXPORT_SYMBOL_GPL0xca254e2bsnd_rawmidi_input_paramsvmlinuxEXPORT_SYMBOL0x835574eemd_errorvmlinuxEXPORT_SYMBOL0xd24c6d09serio_rescanvmlinuxEXPORT_SYMBOL0x5a4c4058USBC_close_otgvmlinuxEXPORT_SYMBOL0x06f035deframebuffer_allocvmlinuxEXPORT_SYMBOL0xe187693ckstrtouint_from_uservmlinuxEXPORT_SYMBOL0x9aaf1680bio_get_nr_vecsvmlinuxEXPORT_SYMBOL0x825dfb79mtd_panic_writedrivers/mtd/mtdEXPORT_SYMBOL_GPL0x38efaf5adm_region_hash_destroydrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xef0e1792xfrm_policy_byidvmlinuxEXPORT_SYMBOL0x4b56cd2enet_prio_subsys_idvmlinuxEXPORT_SYMBOL_GPL0x58cef905cpufreq_driver_targetvmlinuxEXPORT_SYMBOL_GPL0xe6a55cc6ahash_register_instancevmlinuxEXPORT_SYMBOL_GPL0x7e0aff61load_nls_defaultvmlinuxEXPORT_SYMBOL0xd38972fdnonseekable_openvmlinuxEXPORT_SYMBOL0xc768038ckmem_cache_createvmlinuxEXPORT_SYMBOL0xf3b93a97cgroup_lock_is_heldvmlinuxEXPORT_SYMBOL_GPL0x1c276d07ath9k_hw_btcoex_bt_stompdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x53d1cba3ath9k_hw_txstartdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xacda0844ath9k_cmn_get_hw_crypto_keytypedrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0xcab63c3ddm_rh_get_statedrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x475100c2inet_get_local_port_rangevmlinuxEXPORT_SYMBOL0x8f23258f__seq_open_privatevmlinuxEXPORT_SYMBOL0x714ae781seq_escapevmlinuxEXPORT_SYMBOL0xe89c167fopen_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x86ac0878ubi_open_volumedrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x3108ea46xfrm_ealg_get_bynamevmlinuxEXPORT_SYMBOL_GPL0x5eb24829dm_shift_argvmlinuxEXPORT_SYMBOL0xebfe084fusb_stor_resumevmlinuxEXPORT_SYMBOL_GPL0x6e9aae76page_addressvmlinuxEXPORT_SYMBOL0xd403d61dosd_req_create_partitiondrivers/scsi/osd/libosdEXPORT_SYMBOL0x09953e3cfc_exch_mgr_adddrivers/scsi/libfc/libfcEXPORT_SYMBOL0x22b90986fc_exch_mgr_deldrivers/scsi/libfc/libfcEXPORT_SYMBOL0xa43b0ba0ath_reg_notifier_applydrivers/net/wireless/ath/athEXPORT_SYMBOL0x822222dbeeprom_93cx6_writedrivers/misc/eeprom/eeprom_93cx6EXPORT_SYMBOL_GPL0xbb8ff678xfrm_lookupvmlinuxEXPORT_SYMBOL0xe7744f05skb_store_bitsvmlinuxEXPORT_SYMBOL0xecfdab82ata_sas_scsi_ioctlvmlinuxEXPORT_SYMBOL_GPL0xb13d5071page_cache_sync_readaheadvmlinuxEXPORT_SYMBOL_GPL0x6892088cunregister_pm_notifiervmlinuxEXPORT_SYMBOL_GPL0x505b3fa6unregister_ip_vs_penet/netfilter/ipvs/ip_vsEXPORT_SYMBOL_GPL0x43deecd5ieee80211_enable_rssi_reportsnet/mac80211/mac80211EXPORT_SYMBOL0xb6b987ddfbtft_write_vmem16_bus16drivers/video/fbtft/fbtftEXPORT_SYMBOL0x8dd8a46fusb_wwan_resumedrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x1270dd4ffc_get_pr_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0x957a7467iscsi_scan_finisheddrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x2b3024a2dibx000_reset_i2c_masterdrivers/media/dvb/frontends/dibx000_commonEXPORT_SYMBOL0xe004ee92dm_bufio_newdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0xa3dc3093inet_unregister_protoswvmlinuxEXPORT_SYMBOL0x6207143dsnd_soc_get_volswvmlinuxEXPORT_SYMBOL_GPL0x3c1dd9e4snd_soc_put_volswvmlinuxEXPORT_SYMBOL_GPL0x5af0430di2c_probe_func_quick_readvmlinuxEXPORT_SYMBOL_GPL0xa9a9e77ai2c_smbus_read_bytevmlinuxEXPORT_SYMBOL0x06a106ecplatform_create_bundlevmlinuxEXPORT_SYMBOL_GPL0x678461c0_dev_infovmlinuxEXPORT_SYMBOL0x85e51a11icq_get_changedvmlinuxEXPORT_SYMBOL0x02c3aa3fmb_cache_entry_freevmlinuxEXPORT_SYMBOL0x1a77a9fdsvc_xprt_putvmlinuxEXPORT_SYMBOL_GPL0x27b5691cblkcipher_walk_physvmlinuxEXPORT_SYMBOL_GPL0x3dfc897cseq_hlist_start_headvmlinuxEXPORT_SYMBOL0xc34ff0bbclocksource_change_ratingvmlinuxEXPORT_SYMBOL0x0c845f6chci_conn_check_link_modenet/bluetooth/bluetoothEXPORT_SYMBOL0x8e0eaeb8__ieee80211_get_channelvmlinuxEXPORT_SYMBOL0x931fedeesdio_set_block_sizevmlinuxEXPORT_SYMBOL_GPL0x82658ffbUSBC_ReadPacketvmlinuxEXPORT_SYMBOL0x559bc7d8usb_stor_post_resetvmlinuxEXPORT_SYMBOL_GPL0x9924c496__usb_get_extra_descriptorvmlinuxEXPORT_SYMBOL_GPL0xf335c3b1__nf_conntrack_helper_findnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x30014dc7lbs_notify_command_responsedrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0x7a181e90ppp_input_errorvmlinuxEXPORT_SYMBOL0x67b9fae2ppp_unit_numbervmlinuxEXPORT_SYMBOL0xb9fd858enfs_generic_pg_testvmlinuxEXPORT_SYMBOL_GPL0x86f8894ffscache_object_statesvmlinuxEXPORT_SYMBOL0xad466018quota_send_warningvmlinuxEXPORT_SYMBOL0x7a1d835d__dquot_transfervmlinuxEXPORT_SYMBOL0x5460c8d8fsnotify_get_cookievmlinuxEXPORT_SYMBOL_GPL0x871ec5eeusb_serial_generic_opendrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x2c4c68eafc_exch_initdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x80e3832ddvb_filter_get_ac3infodrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x4636a5afregister_netdevicevmlinuxEXPORT_SYMBOL0xf2931977v4l2_device_disconnectvmlinuxEXPORT_SYMBOL_GPL0xcb76f0d5ps2_initvmlinuxEXPORT_SYMBOL0xd003c038ahci_reset_emvmlinuxEXPORT_SYMBOL_GPL0x13f58a85scsi_finish_commandvmlinuxEXPORT_SYMBOL0x11f447ce__gpio_to_irqvmlinuxEXPORT_SYMBOL_GPL0x3d9445fauser_describevmlinuxEXPORT_SYMBOL_GPL0x1a74b6e4blkdev_putvmlinuxEXPORT_SYMBOL0x1bff828fblkdev_getvmlinuxEXPORT_SYMBOL0x895c33daip_set_type_unregisternet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x12f74cc0ebt_do_tablenet/bridge/netfilter/ebtablesEXPORT_SYMBOL0xfbc27ab6hci_unregister_cbnet/bluetooth/bluetoothEXPORT_SYMBOL0x4631798dbuild_skbvmlinuxEXPORT_SYMBOL0x0a6c4a1fmd_wait_for_blocked_rdevvmlinuxEXPORT_SYMBOL0x43019c0efscache_enqueue_operationvmlinuxEXPORT_SYMBOL0x2deb24fdtcp_get_infovmlinuxEXPORT_SYMBOL_GPL0xf7f7cc6d__alloc_skbvmlinuxEXPORT_SYMBOL0xc7a5e09fsnd_soc_cache_writevmlinuxEXPORT_SYMBOL_GPL0xe9047f26snd_soc_dai_set_fmtvmlinuxEXPORT_SYMBOL_GPL0x326daeb7USBC_Host_SetHubAddressvmlinuxEXPORT_SYMBOL0x85794921regmap_get_val_bytesvmlinuxEXPORT_SYMBOL_GPL0x8226642f__gpio_cansleepvmlinuxEXPORT_SYMBOL_GPL0xe39a7d36jbd2_journal_begin_ordered_truncatevmlinuxEXPORT_SYMBOL0xbf98770djbd2_trans_will_send_data_barriervmlinuxEXPORT_SYMBOL0xff69815emutex_trylockvmlinuxEXPORT_SYMBOL0xe24d3a97jiffies_64vmlinuxEXPORT_SYMBOL0xcebc87fdiscsi_tcp_segment_donedrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x8cbd0526svc_createvmlinuxEXPORT_SYMBOL_GPL0xa0e421b5rpc_lookup_machine_credvmlinuxEXPORT_SYMBOL_GPL0x672a3ee9videobuf_queue_is_busydrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x6def2db2half_md4_transformvmlinuxEXPORT_SYMBOL0xb835b3e4radix_tree_prev_holevmlinuxEXPORT_SYMBOL0x91dd464bdcache_readdirvmlinuxEXPORT_SYMBOL0x4e4fc01ainode_add_bytesvmlinuxEXPORT_SYMBOL0xcb0fe73dthaw_supervmlinuxEXPORT_SYMBOL0x943c983egeneric_file_mmapvmlinuxEXPORT_SYMBOL0x56ee0eacabort_credsvmlinuxEXPORT_SYMBOL0x48a5b067__machine_arch_typevmlinuxEXPORT_SYMBOL0x41a9fc7bieee80211_alloc_hwnet/mac80211/mac80211EXPORT_SYMBOL0x38b92846llc_remove_packnet/llc/llcEXPORT_SYMBOL0x3eae08cbdrm_mode_create_dvi_i_propertiesdrivers/gpu/drm/drmEXPORT_SYMBOL0x3eb37b9ddrm_ht_createdrivers/gpu/drm/drmEXPORT_SYMBOL0x939ada9dtcp_alloc_md5sig_poolvmlinuxEXPORT_SYMBOL0x4188d439neigh_rand_reach_timevmlinuxEXPORT_SYMBOL0xed31aa74dev_forward_skbvmlinuxEXPORT_SYMBOL_GPL0xc4047549sock_common_getsockoptvmlinuxEXPORT_SYMBOL0x1be045d7sock_common_setsockoptvmlinuxEXPORT_SYMBOL0x4e7ab93an_tty_inherit_opsvmlinuxEXPORT_SYMBOL_GPL0x65d6d0f0gpio_direction_inputvmlinuxEXPORT_SYMBOL_GPL0x65408378zlib_inflate_blobvmlinuxEXPORT_SYMBOL0xf60fdde3idr_findvmlinuxEXPORT_SYMBOL0xeb386df5vfs_mknodvmlinuxEXPORT_SYMBOL0xaaf9a526rt2x00queue_flush_queuesdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xe76eafe7dvb_register_adapterdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x169e2fdctpm_readdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xd1c035e1cfg80211_disconnectedvmlinuxEXPORT_SYMBOL0x2892c493cfg80211_send_rx_authvmlinuxEXPORT_SYMBOL0x6d6c673bskb_dequeuevmlinuxEXPORT_SYMBOL0x0848771cvsc824x_add_skewvmlinuxEXPORT_SYMBOL0x450ae001filemap_write_and_waitvmlinuxEXPORT_SYMBOL0x27bbf221disable_irq_nosyncvmlinuxEXPORT_SYMBOL0x945701ebcall_usermodehelper_freeinfovmlinuxEXPORT_SYMBOL0x00000000softirq_work_listvmlinuxEXPORT_SYMBOL0x4ce5e093g2d_startvmlinuxEXPORT_SYMBOL0x0a503f55irda_notify_initnet/irda/irdaEXPORT_SYMBOL0x407f00befc_get_pr_transport_id_lendrivers/target/target_core_modEXPORT_SYMBOL0x64169f85osduld_info_lookupdrivers/scsi/osd/osdEXPORT_SYMBOL0xac6c7b76rt2800_config_antdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x4659e9dedma_buf_kunmap_atomicvmlinuxEXPORT_SYMBOL_GPL0xb287734f__pm_relaxvmlinuxEXPORT_SYMBOL_GPL0xf7584a9cfind_fontvmlinuxEXPORT_SYMBOL0x14e7ca7calloc_cpu_rmapvmlinuxEXPORT_SYMBOL0xa7f92105add_uevent_varvmlinuxEXPORT_SYMBOL_GPL0xce68d244ipmi_smi_watcher_unregisterdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x5fda15fcnetdev_features_changevmlinuxEXPORT_SYMBOL0x67971078platform_get_resource_bynamevmlinuxEXPORT_SYMBOL_GPL0x7272c3c8cpu_online_maskvmlinuxEXPORT_SYMBOL0x62813e5cnf_ct_port_nlattr_tuple_sizenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x55028836drm_mode_probed_adddrivers/gpu/drm/drmEXPORT_SYMBOL0x5b437654phy_startvmlinuxEXPORT_SYMBOL0x2f5d78aedevres_findvmlinuxEXPORT_SYMBOL_GPL0x8f57cc53proc_dostringvmlinuxEXPORT_SYMBOL0xb54533f7usecs_to_jiffiesvmlinuxEXPORT_SYMBOL0x413f1632xt_hook_linknet/netfilter/x_tablesEXPORT_SYMBOL_GPL0x56aad65ffc_fc4_register_providerdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xbf5d5c3cgenlmsg_putvmlinuxEXPORT_SYMBOL0x9a269ec4sysfs_schedule_callbackvmlinuxEXPORT_SYMBOL_GPL0xabcaa577free_anon_bdevvmlinuxEXPORT_SYMBOL0xfb7d26f4files_lglock_lock_initvmlinuxEXPORT_SYMBOL0xa14a067bircomm_connect_requestnet/irda/ircomm/ircommEXPORT_SYMBOL0xb4b77c8bhostap_80211_get_hdrlendrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x8d07ca95ath9k_hw_resetdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x4f851aearaw_hash_skvmlinuxEXPORT_SYMBOL_GPL0xa2ef34d7rps_sock_flow_tablevmlinuxEXPORT_SYMBOL0x854a05caskb_insertvmlinuxEXPORT_SYMBOL0x5501a89cw1_reset_busvmlinuxEXPORT_SYMBOL_GPL0xe0958f33USBC_Dev_WriteDataStatusvmlinuxEXPORT_SYMBOL0x70a26379usb_stor_control_msgvmlinuxEXPORT_SYMBOL_GPL0xace553ffdev_emergvmlinuxEXPORT_SYMBOL0x7f78ef61journal_force_commit_nestedvmlinuxEXPORT_SYMBOL0x1c132024request_any_context_irqvmlinuxEXPORT_SYMBOL_GPL0xfacd2e14pgprot_uservmlinuxEXPORT_SYMBOL0x5de6f971uio_unregister_devicedrivers/uio/uioEXPORT_SYMBOL_GPL0x31fee782hostap_set_auth_algsdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xeed9b855tcp_destroy_cgroupvmlinuxEXPORT_SYMBOL0x007bd848udplite_tablevmlinuxEXPORT_SYMBOL0xc883e7aeblkiocg_lookup_groupvmlinuxEXPORT_SYMBOL_GPL0xd4ce750cblk_queue_max_segment_sizevmlinuxEXPORT_SYMBOL0xd8d02440kill_mtd_superdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x8dfb019ddrm_buffer_freedrivers/gpu/drm/drmEXPORT_SYMBOL0x87a9f7cfklist_add_tailvmlinuxEXPORT_SYMBOL_GPL0xfb85e082dev_kfree_skb_irqvmlinuxEXPORT_SYMBOL0x40a2d1dddm_table_get_sizevmlinuxEXPORT_SYMBOL0x744ed4caUSBC_Host_ConfigEp_DefaultvmlinuxEXPORT_SYMBOL0xca4f08bbusb_gadget_unmap_requestvmlinuxEXPORT_SYMBOL_GPL0x6769cb3eahci_shost_attrsvmlinuxEXPORT_SYMBOL_GPL0x600683d3do_unblank_screenvmlinuxEXPORT_SYMBOL0x2775224bjbd2_journal_file_inodevmlinuxEXPORT_SYMBOL0x2db212c5log_wait_commitvmlinuxEXPORT_SYMBOL0x6e9dd606__symbol_putvmlinuxEXPORT_SYMBOL0xa51c04b9snd_ac97_get_short_namesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0xf1b40799ssb_dma_translationdrivers/ssb/ssbEXPORT_SYMBOL0x4a8ca685lbs_cmd_copybackdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xa42092c2vb2_streamondrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x73e7662dcx231xx_init_isocdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x5779a78dnetpoll_send_udpvmlinuxEXPORT_SYMBOL0x683b52f6genphy_restart_anegvmlinuxEXPORT_SYMBOL0x9b388444get_zeroed_pagevmlinuxEXPORT_SYMBOL0xfabc3747oslec_updatedrivers/staging/echo/echoEXPORT_SYMBOL_GPL0x0fc267calbs_host_to_card_donedrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xb15cad93snd_pcm_lib_readvmlinuxEXPORT_SYMBOL0xa3284076input_close_devicevmlinuxEXPORT_SYMBOL0x996bedb4key_validatevmlinuxEXPORT_SYMBOL0x173901c4iscsi_eh_recover_targetdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x9f992008drm_mode_connector_update_edid_propertydrivers/gpu/drm/drmEXPORT_SYMBOL0xb8fc1abdtcp_vegas_initvmlinuxEXPORT_SYMBOL_GPL0xdfade9a5rtnl_create_linkvmlinuxEXPORT_SYMBOL0x650f8603snd_pcm_format_silence_64vmlinuxEXPORT_SYMBOL0xfda4b1c8md_stopvmlinuxEXPORT_SYMBOL_GPL0x96c5aecav4l2_device_unregistervmlinuxEXPORT_SYMBOL_GPL0x7a3bc9e1USBC_EnableHoscvmlinuxEXPORT_SYMBOL0x9687b74fphy_connect_directvmlinuxEXPORT_SYMBOL0xde7d0ea5ata_std_error_handlervmlinuxEXPORT_SYMBOL_GPL0xc41ab4datty_insert_flip_string_flagsvmlinuxEXPORT_SYMBOL0xe43d3feeaddress_space_init_oncevmlinuxEXPORT_SYMBOL0x264cb558prepare_to_wait_exclusivevmlinuxEXPORT_SYMBOL0x4299123ebt_sock_ioctlnet/bluetooth/bluetoothEXPORT_SYMBOL0xa72b5bfcubi_open_volume_nmdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xfd6f0ef9ubi_unregister_volume_notifierdrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x45504103drm_mode_heightdrivers/gpu/drm/drmEXPORT_SYMBOL0x8f4f11acinet_dev_addr_typevmlinuxEXPORT_SYMBOL0x608c5b0csnd_soc_register_codecvmlinuxEXPORT_SYMBOL_GPL0xd60f5d07platform_device_addvmlinuxEXPORT_SYMBOL_GPL0xe7db413fdebugfs_create_size_tvmlinuxEXPORT_SYMBOL_GPL0x8ce332bcremove_proc_entryvmlinuxEXPORT_SYMBOL0xa681ae89arpt_register_tablenet/ipv4/netfilter/arp_tablesEXPORT_SYMBOL0x3158173eceph_pagelist_releasenet/ceph/libcephEXPORT_SYMBOL0x467f884bssb_bus_powerupdrivers/ssb/ssbEXPORT_SYMBOL0x44d74cc9drm_connector_unplug_alldrivers/gpu/drm/drmEXPORT_SYMBOL0x9797d1fdipv6_opt_acceptedvmlinuxEXPORT_SYMBOL_GPL0x83d4077dxfrm_spd_getinfovmlinuxEXPORT_SYMBOL0x33c93301dm_kobject_releasevmlinuxEXPORT_SYMBOL0xb0ebbe67block_is_partially_uptodatevmlinuxEXPORT_SYMBOL0x78551bceiio_st_read_channel_scaledrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xcee467f3xprt_load_transportvmlinuxEXPORT_SYMBOL_GPL0x8c11a52ealloc_etherdev_mqsvmlinuxEXPORT_SYMBOL0x39bf9301_snd_pcm_hw_param_setemptyvmlinuxEXPORT_SYMBOL0x70415474uart_resume_portvmlinuxEXPORT_SYMBOL0x00e85fcbparport_ieee1284_ecp_read_datadrivers/parport/parportEXPORT_SYMBOL0xbcd44005parport_ieee1284_epp_read_datadrivers/parport/parportEXPORT_SYMBOL0x5bd1263ert2800_sta_adddrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xc527ce4eps2_handle_ackvmlinuxEXPORT_SYMBOL0xe2da0a86pm_relaxvmlinuxEXPORT_SYMBOL_GPL0xc787e87dahash_free_instancevmlinuxEXPORT_SYMBOL_GPL0xf16e56edjbd2_journal_errnovmlinuxEXPORT_SYMBOL0x8e275c17dquot_transfervmlinuxEXPORT_SYMBOL0xcf8a7179bdi_register_devvmlinuxEXPORT_SYMBOL0xb8b3679fxt_rateest_lookupnet/netfilter/xt_RATEESTEXPORT_SYMBOL_GPL0xca196a17fc_elsct_senddrivers/scsi/libfc/libfcEXPORT_SYMBOL0xa72accf6drm_clflush_pagesdrivers/gpu/drm/drmEXPORT_SYMBOL0x8aadc08bmd_wakeup_threadvmlinuxEXPORT_SYMBOL0xf1910901ata_std_bios_paramvmlinuxEXPORT_SYMBOL_GPL0x769f15efnfs_commit_clear_lockvmlinuxEXPORT_SYMBOL_GPL0x22fde20fpagecache_write_endvmlinuxEXPORT_SYMBOL0xf37cc8fairda_device_set_media_busynet/irda/irdaEXPORT_SYMBOL0x74b54b3brndis_tx_fixupdrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x12448328drm_readdrivers/gpu/drm/drmEXPORT_SYMBOL0x098c2952rpc_clone_clientvmlinuxEXPORT_SYMBOL_GPL0xb9da2997snmp_fold_field64vmlinuxEXPORT_SYMBOL_GPL0xd5718728hidinput_get_led_fieldvmlinuxEXPORT_SYMBOL_GPL0x1a7a9c6ahid_resolv_usagevmlinuxEXPORT_SYMBOL_GPL0xf22de159sdio_f0_readbvmlinuxEXPORT_SYMBOL_GPL0x872b4a80dm_ratelimit_statevmlinuxEXPORT_SYMBOL0xa7072a7cv4l2_subdev_try_ext_ctrlsvmlinuxEXPORT_SYMBOL0x5712b749spi_register_mastervmlinuxEXPORT_SYMBOL_GPL0xcc36f32efb_unregister_clientvmlinuxEXPORT_SYMBOL0x87925ca6kstrtoint_from_uservmlinuxEXPORT_SYMBOL0xfde0b92ccrypto_larval_errorvmlinuxEXPORT_SYMBOL_GPL0xb230c717__nf_ct_l4proto_findnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xca4ec619ip_vs_conn_out_getnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x64cefdc7fcoe_transport_detachdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0xe4794c65ath6kl_stop_txrxdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x9709881bdrm_fb_helper_debug_enterdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x226972c8xfrm_inner_extract_outputvmlinuxEXPORT_SYMBOL_GPL0xf63070cfinet_csk_init_xmit_timersvmlinuxEXPORT_SYMBOL0x1b52db1cprobe_kernel_readvmlinuxEXPORT_SYMBOL_GPL0xa47a1f55ceph_con_opennet/ceph/libcephEXPORT_SYMBOL0x816e7af6dvb_ca_en50221_camready_irqdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x325c3b45drm_mode_prune_invaliddrivers/gpu/drm/drmEXPORT_SYMBOL0x43993a58sw_hcd_platform_suspendvmlinuxEXPORT_SYMBOL0xd5811a85dev_pm_get_subsys_datavmlinuxEXPORT_SYMBOL_GPL0xb1c15854dev_pm_put_subsys_datavmlinuxEXPORT_SYMBOL_GPL0x5a415edftransport_add_devicevmlinuxEXPORT_SYMBOL_GPL0x51917f64vfs_readlinkvmlinuxEXPORT_SYMBOL0x307f7776timecompare_offsetvmlinuxEXPORT_SYMBOL_GPL0x0d4fab16complete_and_exitvmlinuxEXPORT_SYMBOL0xfbeadf82em28xx_unregister_extensiondrivers/media/video/em28xx/em28xxEXPORT_SYMBOL0xc66eaa04xc2028_attachdrivers/media/common/tuners/tuner-xc2028EXPORT_SYMBOL0xd1cd9539inet6_lookupvmlinuxEXPORT_SYMBOL_GPL0x60ec0d73scsi_nl_sockvmlinuxEXPORT_SYMBOL_GPL0xff6878cffb_default_cmapvmlinuxEXPORT_SYMBOL0xf519fe73sysfs_remove_groupvmlinuxEXPORT_SYMBOL_GPL0xc345990csysfs_remove_file_from_groupvmlinuxEXPORT_SYMBOL_GPL0x9aca444bget_monotonic_boottimevmlinuxEXPORT_SYMBOL_GPL0x130faa62down_read_trylockvmlinuxEXPORT_SYMBOL0xc3b062dbip_set_nfnl_get_byindexnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x6b6049ebrt2x00lib_rxdonedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x7f8bd3afcpufreq_register_drivervmlinuxEXPORT_SYMBOL_GPL0xa4dd5271serial8250_handle_irqvmlinuxEXPORT_SYMBOL_GPL0x4ecc76e0nf_nat_set_seq_adjustnet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0xcbb738benfs4_acl_posix_to_nfsv4fs/nfsd/nfsdEXPORT_SYMBOL0x46e37e6bnf_setsockoptvmlinuxEXPORT_SYMBOL0xc22ccb00nf_getsockoptvmlinuxEXPORT_SYMBOL0x579e0bf5rtnl_unregister_allvmlinuxEXPORT_SYMBOL_GPL0x5360bc64netif_rx_nivmlinuxEXPORT_SYMBOL0x4b4a8931i2c_smbus_xfervmlinuxEXPORT_SYMBOL0xabbdebd3ps2_begin_commandvmlinuxEXPORT_SYMBOL0x29475fd5dev_pm_qos_remove_notifiervmlinuxEXPORT_SYMBOL_GPL0x0a9f513cdevice_attachvmlinuxEXPORT_SYMBOL_GPL0xfcab5941tty_port_openvmlinuxEXPORT_SYMBOL0x6110e031alloc_diskvmlinuxEXPORT_SYMBOL0x4f523c15blk_rq_map_user_iovvmlinuxEXPORT_SYMBOL0xec588a4dioc_lookup_icqvmlinuxEXPORT_SYMBOL0x7b003f1bdquot_commit_infovmlinuxEXPORT_SYMBOL0xfbd0a35aseq_putcvmlinuxEXPORT_SYMBOL0x80177c92seq_putsvmlinuxEXPORT_SYMBOL0x792f4a86fbtft_register_backlightdrivers/video/fbtft/fbtftEXPORT_SYMBOL0xa638429eath9k_hw_cfg_gpio_inputdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xb15ab970snd_pcm_hw_param_lastvmlinuxEXPORT_SYMBOL0xfd0f117eusb_create_shared_hcdvmlinuxEXPORT_SYMBOL_GPL0x0c16161cata_dev_disablevmlinuxEXPORT_SYMBOL_GPL0x6dca07e0uart_update_timeoutvmlinuxEXPORT_SYMBOL0x293025f7part_round_statsvmlinuxEXPORT_SYMBOL_GPL0x5df295f0d_genocidevmlinuxEXPORT_SYMBOL0xe16a0b9c__module_put_and_exitvmlinuxEXPORT_SYMBOL0x43a53735__alloc_workqueue_keyvmlinuxEXPORT_SYMBOL_GPL0xbd1ead83ceph_monc_stopnet/ceph/libcephEXPORT_SYMBOL0xc31f3f91register_cec_devicedrivers/video/hdmi-cec/hdmi-cecEXPORT_SYMBOL0xcabffb02i2400m_cmd_enter_powersavedrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xf373c147cfg80211_report_obss_beaconvmlinuxEXPORT_SYMBOL0xe86921e1snd_soc_put_value_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xc95dc42esnd_soc_get_value_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xcffa2affspi_populate_width_msgvmlinuxEXPORT_SYMBOL_GPL0xfa89fad4tcp_vegas_cwnd_eventvmlinuxEXPORT_SYMBOL_GPL0x81b69e41snd_ctl_enum_infovmlinuxEXPORT_SYMBOL0xb2b94674__crc32c_levmlinuxEXPORT_SYMBOL0x5c08f48felv_dispatch_add_tailvmlinuxEXPORT_SYMBOL0x407ac805end_buffer_write_syncvmlinuxEXPORT_SYMBOL0x2a398d99d_dropvmlinuxEXPORT_SYMBOL0x9a161c7ed_rehashvmlinuxEXPORT_SYMBOL0xb2713dbdfile_open_rootvmlinuxEXPORT_SYMBOL0x33572e23flush_kthread_workvmlinuxEXPORT_SYMBOL_GPL0x40f07981__ashldi3vmlinuxEXPORT_SYMBOL0x2ea9edd9__mmc_claim_hostvmlinuxEXPORT_SYMBOL0x4cf1fb11usb_poison_urbvmlinuxEXPORT_SYMBOL_GPL0x6b1b67d3__bdevnamevmlinuxEXPORT_SYMBOL0x23ac1d56vfs_writevmlinuxEXPORT_SYMBOL0xca2bde4ddm_tm_open_with_smdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x3292680enetif_rxvmlinuxEXPORT_SYMBOL0x9729c46bsnd_pcm_hw_refinevmlinuxEXPORT_SYMBOL0x1b60cbc2dm_set_device_limitsvmlinuxEXPORT_SYMBOL_GPL0x67673d2eUSBC_Host_IsReqPktSetvmlinuxEXPORT_SYMBOL0x955b0e2ekthread_worker_fnvmlinuxEXPORT_SYMBOL_GPL0xdc85e7acunregister_ip_vs_appnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0xf65e2231rt2x00lib_probe_devdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x40297e88dib0090_fw_registerdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xe4448140iw_handler_set_spyvmlinuxEXPORT_SYMBOL0x9486f1cdxfrm_stateonly_findvmlinuxEXPORT_SYMBOL0x836c3305usb_create_hcdvmlinuxEXPORT_SYMBOL_GPL0x72ea7b2dscsi_device_typevmlinuxEXPORT_SYMBOL0x6c461961blk_integrity_is_initializedvmlinuxEXPORT_SYMBOL0x62dd4f3btransport_generic_handle_datadrivers/target/target_core_modEXPORT_SYMBOL0x854a34d6can_bus_offdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x318cadb1reciprocal_valuevmlinuxEXPORT_SYMBOL0x3f1312cerpc_get_sb_netvmlinuxEXPORT_SYMBOL_GPL0xa1698c0cunregister_binfmtvmlinuxEXPORT_SYMBOL0x8d4e8df2alloc_vm_areavmlinuxEXPORT_SYMBOL_GPL0xf24a0c26_raw_read_trylockvmlinuxEXPORT_SYMBOL0x55cc058ausb_serial_register_driversdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0x233bf03acryptd_ahash_childcrypto/cryptdEXPORT_SYMBOL_GPL0x71f52465xdr_init_encodevmlinuxEXPORT_SYMBOL_GPL0x3f470d97netdev_bonding_changevmlinuxEXPORT_SYMBOL0x21833f50sk_reset_txqvmlinuxEXPORT_SYMBOL0x498059b3sock_no_acceptvmlinuxEXPORT_SYMBOL0x46775e04set_groupsvmlinuxEXPORT_SYMBOL0xd27a8fb9dvb_dmxdev_releasedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xec25f967klist_delvmlinuxEXPORT_SYMBOL_GPL0x829e73ddsock_diag_register_inet_compatvmlinuxEXPORT_SYMBOL_GPL0xd25fb6e8skb_dst_set_norefvmlinuxEXPORT_SYMBOL0x6dab4d20mmc_unregister_drivervmlinuxEXPORT_SYMBOL0x66dd2324elevator_exitvmlinuxEXPORT_SYMBOL0x53621af8__lock_buffervmlinuxEXPORT_SYMBOL0x1be92d68snd_ac97_writesound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x7f07b481osd_req_get_attributesdrivers/scsi/osd/libosdEXPORT_SYMBOL0xdbb4bdb9osd_req_set_attributesdrivers/scsi/osd/libosdEXPORT_SYMBOL0x4fd76f87brcmu_pktq_pflushdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x627648b9ar9003_paprd_populate_single_tabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x37c048c0USBC_Host_SetHPortAddressvmlinuxEXPORT_SYMBOL0xbb0ab47bdebug_locksvmlinuxEXPORT_SYMBOL_GPL0xa912987cablkcipher_walk_donevmlinuxEXPORT_SYMBOL_GPL0xa320ecacablkcipher_walk_physvmlinuxEXPORT_SYMBOL_GPL0x11fd38a9aead_geniv_allocvmlinuxEXPORT_SYMBOL_GPL0x7924b6deip_set_hostmask_mapnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xa1e19afcaxp_gpio_set_iovmlinuxEXPORT_SYMBOL_GPL0x85b950e7axp_gpio_get_iovmlinuxEXPORT_SYMBOL_GPL0xe1b9543edma_release_declared_memoryvmlinuxEXPORT_SYMBOL0x20a789acirq_set_chip_datavmlinuxEXPORT_SYMBOL0x45e7eeefregister_ip_vs_penet/netfilter/ipvs/ip_vsEXPORT_SYMBOL_GPL0x4beda4dbsirdev_set_dtr_rtsdrivers/net/irda/sir-devEXPORT_SYMBOL0xe42e79fevideobuf_alloc_vbdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x77cee524dm_unregister_path_selectordrivers/md/dm-multipathEXPORT_SYMBOL_GPL0x0cab8d2dcfg80211_scan_donevmlinuxEXPORT_SYMBOL0x2c4950b9inet6_csk_xmitvmlinuxEXPORT_SYMBOL_GPL0xcb718e71tcp_ioctlvmlinuxEXPORT_SYMBOL0xb9bae849USBC_DisableIdChangevmlinuxEXPORT_SYMBOL0x4fba256data_eh_analyze_ncq_errorvmlinuxEXPORT_SYMBOL_GPL0x915a6b29registered_fbvmlinuxEXPORT_SYMBOL0x47b11434vfs_symlinkvmlinuxEXPORT_SYMBOL0x8b4c9f59find_vpidvmlinuxEXPORT_SYMBOL_GPL0xd273b1b1__round_jiffies_up_relativevmlinuxEXPORT_SYMBOL_GPL0xa0c71dacspi_populate_sync_msgvmlinuxEXPORT_SYMBOL_GPL0xf64a2455unmap_mapping_rangevmlinuxEXPORT_SYMBOL0x8b618d08overflowuidvmlinuxEXPORT_SYMBOL0x7171121coverflowgidvmlinuxEXPORT_SYMBOL0xc4f0f01afc_change_queue_depthdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x0998195btpm_show_caps_1_2drivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x50f58a08ping_unhashvmlinuxEXPORT_SYMBOL_GPL0x7b98e497inet_select_addrvmlinuxEXPORT_SYMBOL0x5c81d2f2dev_getbyhwaddr_rcuvmlinuxEXPORT_SYMBOL0x81dd731eskb_flow_dissectvmlinuxEXPORT_SYMBOL0xc86a546acpu_present_maskvmlinuxEXPORT_SYMBOL0x05688873ieee80211_proberesp_getnet/mac80211/mac80211EXPORT_SYMBOL0xbd383ab8wireless_send_eventvmlinuxEXPORT_SYMBOL0x959840ecxprt_release_xprt_congvmlinuxEXPORT_SYMBOL_GPL0xba057557snd_soc_get_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xc737a09bsnd_soc_put_enum_doublevmlinuxEXPORT_SYMBOL_GPL0xfa3d0480v4l2_subdev_g_ctrlvmlinuxEXPORT_SYMBOL0x5fb35b85v4l2_subdev_s_ctrlvmlinuxEXPORT_SYMBOL0x849f336cget_task_io_contextvmlinuxEXPORT_SYMBOL0x8eeb5379dcache_dir_closevmlinuxEXPORT_SYMBOL0x3e884f4bvm_get_page_protvmlinuxEXPORT_SYMBOL0x43f351a6unregister_snap_clientnet/802/psnapEXPORT_SYMBOL0x03ced457dm_btree_lookupdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xf94794bcrpc_wake_up_queued_taskvmlinuxEXPORT_SYMBOL_GPL0x6186b0a6sock_diag_nlskvmlinuxEXPORT_SYMBOL_GPL0x4b394eeartc_irq_set_statevmlinuxEXPORT_SYMBOL_GPL0xbfb90d13phy_driver_registervmlinuxEXPORT_SYMBOL0x567adc60scsi_dma_unmapvmlinuxEXPORT_SYMBOL0x09078b80relay_resetvmlinuxEXPORT_SYMBOL_GPL0xe672fc78script_parser_mainkey_get_gpio_countvmlinuxEXPORT_SYMBOL0xfbc74f64__copy_from_uservmlinuxEXPORT_SYMBOL0x86b23206nf_conntrack_register_notifiernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x20451461rt2800_config_intfdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xc944e6f7ath6kl_hif_intr_bh_handlerdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x91cfb84aath6kl_hif_rw_comp_handlerdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0x3fe0cde9dm_exception_store_type_registerdrivers/md/dm-snapshotEXPORT_SYMBOL0x0f440ca3inet_put_portvmlinuxEXPORT_SYMBOL0xb77c31a5sock_no_connectvmlinuxEXPORT_SYMBOL0x4565941bphy_print_statusvmlinuxEXPORT_SYMBOL0x9ed53e8cfscache_withdraw_cachevmlinuxEXPORT_SYMBOL0x496bfefedquot_mark_dquot_dirtyvmlinuxEXPORT_SYMBOL0xe85a9fd3cpu_cluster_pm_exitvmlinuxEXPORT_SYMBOL_GPL0x4ddb2462wait_for_completion_killable_timeoutvmlinuxEXPORT_SYMBOL0xb3305d52send_remote_softirqvmlinuxEXPORT_SYMBOL0x34f6252bfbtft_write_gpio16_wrdrivers/video/fbtft/fbtftEXPORT_SYMBOL0xec9a31faiscsi_boot_create_targetdrivers/scsi/iscsi_boot_sysfsEXPORT_SYMBOL_GPL0xb1077497itd1000_attachdrivers/media/dvb/frontends/itd1000EXPORT_SYMBOL0x97582d23w1_write_blockvmlinuxEXPORT_SYMBOL_GPL0xe81e9b1fskcipher_geniv_allocvmlinuxEXPORT_SYMBOL_GPL0xc92671adwm8962_mic_detectsound/soc/codecs/snd-soc-wm8962EXPORT_SYMBOL_GPL0x6e224a7aneed_conntracknet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc196f612tm6000_unregister_extensiondrivers/media/video/tm6000/tm6000EXPORT_SYMBOL0x4a2d80c5flexcop_device_kmallocdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x4a358252__bitmap_subsetvmlinuxEXPORT_SYMBOL0x0e6da44aset_normalized_timespecvmlinuxEXPORT_SYMBOL0xf826deb0dvb_filter_pes2tsdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x87e006d6eth_type_transvmlinuxEXPORT_SYMBOL0x2317e746debugfs_create_blobvmlinuxEXPORT_SYMBOL_GPL0x27b181b4mb_cache_entry_getvmlinuxEXPORT_SYMBOL0x8182bebebioset_integrity_freevmlinuxEXPORT_SYMBOL0x60ec57afvm_insert_mixedvmlinuxEXPORT_SYMBOL0xc1c89a8asend_sigvmlinuxEXPORT_SYMBOL0x2036ad06irda_param_insertnet/irda/irdaEXPORT_SYMBOL0x55547a98usbnet_change_mtudrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0xff69fa56drm_vblank_countdrivers/gpu/drm/drmEXPORT_SYMBOL0xa69cb1b1tcp_shutdownvmlinuxEXPORT_SYMBOL0x602c96f0copy_to_user_fromiovmlinuxEXPORT_SYMBOL0x0c10d266usb_stor_set_xfer_bufvmlinuxEXPORT_SYMBOL_GPL0x68c51599scsi_nonblockable_ioctlvmlinuxEXPORT_SYMBOL0xefb1cfbadown_write_trylockvmlinuxEXPORT_SYMBOL0x8bfe8c57param_set_uintvmlinuxEXPORT_SYMBOL0x03acfee9enclosure_for_each_devicedrivers/misc/enclosureEXPORT_SYMBOL_GPL0xdd03eacerpc_init_wait_queuevmlinuxEXPORT_SYMBOL_GPL0xf389fe60__hw_addr_initvmlinuxEXPORT_SYMBOL0x199ed0cdnet_disable_timestampvmlinuxEXPORT_SYMBOL0x7a61e7f9sdio_set_host_pm_flagsvmlinuxEXPORT_SYMBOL_GPL0xd588fd23usb_stor_ctrl_transfervmlinuxEXPORT_SYMBOL_GPL0x7cf0799dcdrom_openvmlinuxEXPORT_SYMBOL0x67f9094eosd_req_list_partition_collectionsdrivers/scsi/osd/libosdEXPORT_SYMBOL0x69e9a2cbata_scsi_slave_configvmlinuxEXPORT_SYMBOL_GPL0x4afe9a77scsi_partsizevmlinuxEXPORT_SYMBOL0xfeee94f1dquot_set_dqinfovmlinuxEXPORT_SYMBOL0x358b055eiscsi_conn_error_eventdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x14448420vb2_streamoffdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xc84751c1drm_pci_allocdrivers/gpu/drm/drmEXPORT_SYMBOL0xa75fa4c5cryptd_alloc_ahashcrypto/cryptdEXPORT_SYMBOL_GPL0x4aaab2b1groups_allocvmlinuxEXPORT_SYMBOL0xf338d4c3netlink_unregister_notifiervmlinuxEXPORT_SYMBOL0xfd47c5a0dapm_regulator_eventvmlinuxEXPORT_SYMBOL_GPL0x1390c0c8__dynamic_dev_dbgvmlinuxEXPORT_SYMBOL0xc30a3b8csimple_release_fsvmlinuxEXPORT_SYMBOL0x609a1f02downvmlinuxEXPORT_SYMBOL0x5fa32a89gpio_set_one_pin_io_statusvmlinuxEXPORT_SYMBOL0x6533cb6discsi_change_queue_depthdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xb3bc19dadrm_sysfs_connector_adddrivers/gpu/drm/drmEXPORT_SYMBOL0x423b776aipmi_create_userdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xffe143f9xts_cryptcrypto/xtsEXPORT_SYMBOL_GPL0x1d1591cfblk_end_requestvmlinuxEXPORT_SYMBOL0x76cf47f6__aeabi_llslvmlinuxEXPORT_SYMBOL0xe9a550bainet_diag_dump_icsknet/ipv4/inet_diagEXPORT_SYMBOL_GPL0xcf6e7a4fath9k_hw_namedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x52ff2f96ubi_leb_writedrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0x3ea76643mtd_concat_createdrivers/mtd/mtdEXPORT_SYMBOL0x47803faavideobuf_dvb_find_frontenddrivers/media/video/videobuf-dvbEXPORT_SYMBOL0x11625a9bskb_putvmlinuxEXPORT_SYMBOL0xff152e77scsi_host_putvmlinuxEXPORT_SYMBOL0x3895cd7anfnl_unlocknet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x37386cacnf_conntrack_hash_rndnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x3de64deenf_nat_proto_in_rangenet/ipv4/netfilter/nf_natEXPORT_SYMBOL_GPL0x1711fb79usb_ftdi_elan_read_pcimemdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0xabe202d8core_tpg_set_initiator_node_queue_depthdrivers/target/target_core_modEXPORT_SYMBOL0x950e439esas_domain_release_transportdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xc08fad68w1_next_pullupvmlinuxEXPORT_SYMBOL_GPL0xa8715bd4sw_hcd_hub_status_datavmlinuxEXPORT_SYMBOL0x428cda88configfs_depend_itemvmlinuxEXPORT_SYMBOL0xdcb8cb46generic_block_fiemapvmlinuxEXPORT_SYMBOL0x3fdacc6fadd_wait_queuevmlinuxEXPORT_SYMBOL0x046c1f16param_ops_invboolvmlinuxEXPORT_SYMBOL0x20fd0cbbgpio_write_one_pin_valuevmlinuxEXPORT_SYMBOL0x527b47d8brcmu_pktq_flushdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x973a2cbavb2_polldrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x9cb1fcbcdrm_helper_connector_dpmsdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xb8adf723tpm_opendrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x5d8c61c9dev_add_packvmlinuxEXPORT_SYMBOL0x12137f76usb_hub_clear_tt_buffervmlinuxEXPORT_SYMBOL_GPL0x81b24632ahci_sdev_attrsvmlinuxEXPORT_SYMBOL_GPL0x0a3131f6strnchrvmlinuxEXPORT_SYMBOL0xd67dd99ebalance_dirty_pages_ratelimited_nrvmlinuxEXPORT_SYMBOL0x5e42b1a8arm_dma_opsvmlinuxEXPORT_SYMBOL0x9f984513strrchrvmlinuxEXPORT_SYMBOL0xd0870585usbip_event_happeneddrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x217c3ea4i2400m_pre_resetdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x50f97feabio_alloc_mddevvmlinuxEXPORT_SYMBOL_GPL0x7afa89fcvsnprintfvmlinuxEXPORT_SYMBOL0x44b911c3rb_replace_nodevmlinuxEXPORT_SYMBOL0x6ff607b6crypto_get_default_rngvmlinuxEXPORT_SYMBOL_GPL0x668402aacrypto_put_default_rngvmlinuxEXPORT_SYMBOL_GPL0x3eebab71crypto_mod_putvmlinuxEXPORT_SYMBOL_GPL0x75784ae7journal_clear_errvmlinuxEXPORT_SYMBOL0x704a767e__fscache_uncache_pagevmlinuxEXPORT_SYMBOL0x082a970bmount_pseudovmlinuxEXPORT_SYMBOL0x657af540_raw_write_trylockvmlinuxEXPORT_SYMBOL0x4205ad24cancel_work_syncvmlinuxEXPORT_SYMBOL_GPL0xa88f24c4nf_ct_gre_keymap_flushnet/netfilter/nf_conntrack_proto_greEXPORT_SYMBOL0xbe5d3a96ssb_set_devtypedatadrivers/ssb/ssbEXPORT_SYMBOL0x010defd8dib0090_registerdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0xffc8c06fdrm_gem_free_mmap_offsetdrivers/gpu/drm/drmEXPORT_SYMBOL0x469a717apingv6_opsvmlinuxEXPORT_SYMBOL_GPL0x99cdc86bsysctl_tcp_reorderingvmlinuxEXPORT_SYMBOL0x8e4c28efdapm_reg_eventvmlinuxEXPORT_SYMBOL_GPL0xba25d4d6snd_pcm_hw_constraint_pow2vmlinuxEXPORT_SYMBOL0x832c27e9input_set_keycodevmlinuxEXPORT_SYMBOL0x9754ec10radix_tree_preloadvmlinuxEXPORT_SYMBOL0xed61b3bdblkdev_ioctlvmlinuxEXPORT_SYMBOL_GPL0x3f5ed832__quota_errorvmlinuxEXPORT_SYMBOL0xd11c0dc1__kernel_param_unlockvmlinuxEXPORT_SYMBOL0x5e3a3912parport_irq_handlerdrivers/parport/parportEXPORT_SYMBOL0xac673917rt2800_get_surveydrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x86782fe7lbtf_add_carddrivers/net/wireless/libertas_tf/libertas_tfEXPORT_SYMBOL_GPL0xaf0caa65__i2c_board_lockvmlinuxEXPORT_SYMBOL_GPL0x57e1651dtty_ldisc_flushvmlinuxEXPORT_SYMBOL_GPL0xa10ee1cb__dynamic_netdev_dbgvmlinuxEXPORT_SYMBOL0x74dac3c1crypto_register_instancevmlinuxEXPORT_SYMBOL_GPL0x2b72da99crypto_alloc_tfmvmlinuxEXPORT_SYMBOL_GPL0xc6d65fe5bdi_destroyvmlinuxEXPORT_SYMBOL0xd499ebbfrt2800_vco_calibrationdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x37e59edeath_hw_keyresetdrivers/net/wireless/ath/athEXPORT_SYMBOL0x84262703__videobuf_mmap_setupdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x265483abskb_tstamp_txvmlinuxEXPORT_SYMBOL_GPL0xe13269e2tty_set_operationsvmlinuxEXPORT_SYMBOL0xe66452abdql_initvmlinuxEXPORT_SYMBOL0x69e27c7abitmap_copy_levmlinuxEXPORT_SYMBOL0x4dec6038memscanvmlinuxEXPORT_SYMBOL0xdb1cf8e7mark_buffer_dirtyvmlinuxEXPORT_SYMBOL0x3d5e4a15get_supervmlinuxEXPORT_SYMBOL0x00801678flush_scheduled_workvmlinuxEXPORT_SYMBOL0x7c2b2d31usb_wwan_dtr_rtsdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0xf39825e2srp_attach_transportdrivers/scsi/scsi_transport_srpEXPORT_SYMBOL_GPL0xbc25aac9ump_dd_phys_blocks_getdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0xaf27bebfdrbd_disk_strdrivers/block/drbd/drbdEXPORT_SYMBOL0xea61f409write_bytes_to_xdr_bufvmlinuxEXPORT_SYMBOL_GPL0xe0c1018bskb_copy_and_csum_bitsvmlinuxEXPORT_SYMBOL0xc29b75e9ahci_check_readyvmlinuxEXPORT_SYMBOL_GPL0x6306ed67ll_rw_blockvmlinuxEXPORT_SYMBOL0x6ef89dabblock_write_beginvmlinuxEXPORT_SYMBOL0x294e840bsas_rphy_freedrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xc911e04cfc_release_transportdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xba25a5b4v4l2_ctrl_handler_initvmlinuxEXPORT_SYMBOL0x879fd668ps2_sendbytevmlinuxEXPORT_SYMBOL0xbe1887e4ata_unpack_xfermaskvmlinuxEXPORT_SYMBOL_GPL0x2ca0c978fb_deferred_io_fsyncvmlinuxEXPORT_SYMBOL_GPL0x1268f357resume_device_irqsvmlinuxEXPORT_SYMBOL_GPL0x43e458f6ceph_file_partnet/ceph/libcephEXPORT_SYMBOL0x35b85807rts5139_usb_idsdrivers/staging/rts5139/rts5139EXPORT_SYMBOL_GPL0x4bde7321fc_lport_flogi_respdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xbe2e3b75kstrtos8vmlinuxEXPORT_SYMBOL0x124f2056crypto_get_attr_typevmlinuxEXPORT_SYMBOL_GPL0x0ec10951nfnetlink_sendnet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0xa29b21c4svc_proc_unregistervmlinuxEXPORT_SYMBOL_GPL0xff065d1fsnd_soc_info_volsw_s8vmlinuxEXPORT_SYMBOL_GPL0xe853ebe4USBC_GetStatus_DpDmvmlinuxEXPORT_SYMBOL0x26c90ea4scsi_eh_get_sensevmlinuxEXPORT_SYMBOL_GPL0x400ae32edevice_create_bin_filevmlinuxEXPORT_SYMBOL_GPL0xa6e1edbccrypto_alloc_aeadvmlinuxEXPORT_SYMBOL_GPL0x97b563aacrypto_spawn_tfm2vmlinuxEXPORT_SYMBOL_GPL0x50fad434round_jiffies_upvmlinuxEXPORT_SYMBOL_GPL0xb7c79172fbtft_dbg_hexdrivers/video/fbtft/fbtftEXPORT_SYMBOL0xf857c546cx24113_attachdrivers/media/dvb/frontends/cx24113EXPORT_SYMBOL0xa53387c7dm_rh_flushdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xdf4357ccdev_set_mac_addressvmlinuxEXPORT_SYMBOL0x3425a5fask_receive_skbvmlinuxEXPORT_SYMBOL0x5a61f3fcserio_openvmlinuxEXPORT_SYMBOL0xa9a18737spi_master_suspendvmlinuxEXPORT_SYMBOL_GPL0x22b325d5kd_mksoundvmlinuxEXPORT_SYMBOL0xf5c05914generic_segment_checksvmlinuxEXPORT_SYMBOL0xd0f36f0daudit_log_formatvmlinuxEXPORT_SYMBOL0xae6af6aeceph_osdc_build_requestnet/ceph/libcephEXPORT_SYMBOL0xa25272fbiscsi_get_pr_transport_iddrivers/target/target_core_modEXPORT_SYMBOL0xec15f00atcp_cookie_generatorvmlinuxEXPORT_SYMBOL0x6d2fc5a6net_namespace_listvmlinuxEXPORT_SYMBOL_GPL0xa14850b9sock_registervmlinuxEXPORT_SYMBOL0x4c603cd7serio_closevmlinuxEXPORT_SYMBOL0x4fb02dc1ata_link_nextvmlinuxEXPORT_SYMBOL_GPL0x89de2639loop_register_transfervmlinuxEXPORT_SYMBOL0xad002400device_set_wakeup_enablevmlinuxEXPORT_SYMBOL_GPL0x1f58e71bnfnl_locknet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x305cb7eart2x00usb_suspenddrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x6bf8e343hdlc_opendrivers/net/wan/hdlcEXPORT_SYMBOL0x6ae64e8eregister_mtd_blktransdrivers/mtd/mtd_blkdevsEXPORT_SYMBOL_GPL0xccfa3960drm_mm_insert_node_in_rangedrivers/gpu/drm/drmEXPORT_SYMBOL0xaa24c57a__cfg80211_send_deauthvmlinuxEXPORT_SYMBOL0x0ecfcaefinet6_register_protoswvmlinuxEXPORT_SYMBOL0x0e7c77bfnetif_set_real_num_tx_queuesvmlinuxEXPORT_SYMBOL0x1b7cfc84netif_set_real_num_rx_queuesvmlinuxEXPORT_SYMBOL0x88aedab4dev_set_groupvmlinuxEXPORT_SYMBOL0x052d9f79md_is_badblockvmlinuxEXPORT_SYMBOL_GPL0x586cfb55v4l2_ctrl_add_eventvmlinuxEXPORT_SYMBOL0x478fc978phy_register_fixup_for_uidvmlinuxEXPORT_SYMBOL0xb4709322scsi_dev_info_add_listvmlinuxEXPORT_SYMBOL0x11182399end_buffer_async_writevmlinuxEXPORT_SYMBOL0x69b18f43rfc1042_headervmlinuxEXPORT_SYMBOL0x2e829943ip_nat_decode_sessionvmlinuxEXPORT_SYMBOL0xc85149a6sdio_get_host_pm_capsvmlinuxEXPORT_SYMBOL_GPL0x2ca1e1afvfs_writevvmlinuxEXPORT_SYMBOL0xa94da9ffsndspdif_daisound/soc/sunxi/spdif/sndspdifEXPORT_SYMBOL0xfb8a1475iscsi_tcp_conn_get_statsdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0x243d6768videobuf_next_fielddrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x8fac8a15af9005_rc_decodedrivers/media/dvb/dvb-usb/dvb-usb-af9005-remoteEXPORT_SYMBOL0x8e1b2610svc_rpcb_cleanupvmlinuxEXPORT_SYMBOL_GPL0x1c5b1f28irq_free_descsvmlinuxEXPORT_SYMBOL_GPL0x4631e02ccgroup_unload_subsysvmlinuxEXPORT_SYMBOL_GPL0xed99911dproc_dointvecvmlinuxEXPORT_SYMBOL0x2d12f0fascsi_host_put_commanddrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0x1ce130abhostap_set_hostapd_stadrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xa2a5fd77inet_ehash_secretvmlinuxEXPORT_SYMBOL0x1ac4b467__inet_lookup_establishedvmlinuxEXPORT_SYMBOL_GPL0xe0c12382netdev_alertvmlinuxEXPORT_SYMBOL0x43f7f5aerpc_print_iostatsvmlinuxEXPORT_SYMBOL_GPL0x4195fa98svc_rpcb_setupvmlinuxEXPORT_SYMBOL_GPL0x249e4a63udp_lib_rehashvmlinuxEXPORT_SYMBOL0xdf896fc8udp_lib_unhashvmlinuxEXPORT_SYMBOL0x05495392hid_debugvmlinuxEXPORT_SYMBOL_GPL0x4f0b7365pm_stay_awakevmlinuxEXPORT_SYMBOL_GPL0x5b1060f6device_show_ulongvmlinuxEXPORT_SYMBOL_GPL0x79df9c12cpumask_next_andvmlinuxEXPORT_SYMBOL0xb0d4a27fset_ras_addr_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x460b8a0blirc_register_driverdrivers/media/rc/lirc_devEXPORT_SYMBOL0xc016193bdrm_opendrivers/gpu/drm/drmEXPORT_SYMBOL0xcadb94cfnf_hook_slowvmlinuxEXPORT_SYMBOL0xbbcb193dv4l2_chip_ident_i2c_clientvmlinuxEXPORT_SYMBOL0xce5ac24fzlib_inflate_workspacesizevmlinuxEXPORT_SYMBOL0x98ce43fawimax_report_rfkill_hwnet/wimax/wimaxEXPORT_SYMBOL_GPL0x83f97dcaceph_osdc_syncnet/ceph/libcephEXPORT_SYMBOL0xe108fae6usb_cypress_load_firmwaredrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0x0f6d8813dm_dirty_log_type_registerdrivers/md/dm-logEXPORT_SYMBOL0x18aa0d38tcp_recvmsgvmlinuxEXPORT_SYMBOL0x84ecd095snd_pcm_limit_hw_ratesvmlinuxEXPORT_SYMBOL0xace5c0fcusb_bus_listvmlinuxEXPORT_SYMBOL_GPL0xa4098f29bio_integrity_splitvmlinuxEXPORT_SYMBOL0xdc9d7398ieee80211_napi_schedulenet/mac80211/mac80211EXPORT_SYMBOL0x9b8decb4fcoe_ctlr_initdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL0xe3c50786dvb_ringbuffer_availdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x7f4cfa5ddrm_detect_monitor_audiodrivers/gpu/drm/drmEXPORT_SYMBOL0x03e3686cata_timing_cycle2modevmlinuxEXPORT_SYMBOL_GPL0x96dc84c7ata_scsi_queuecmdvmlinuxEXPORT_SYMBOL_GPL0xe8b63aceradix_tree_range_tag_if_taggedvmlinuxEXPORT_SYMBOL0x71981f8dproc_dointvec_userhz_jiffiesvmlinuxEXPORT_SYMBOL0xffb7e5ffconsole_startvmlinuxEXPORT_SYMBOL0xffd291fdxt_register_matchnet/netfilter/x_tablesEXPORT_SYMBOL0x7025a724parport_unregister_driverdrivers/parport/parportEXPORT_SYMBOL0x59dddb40ump_dd_reference_adddrivers/gpu/mali/ump/umpEXPORT_SYMBOL0xa5645960tcp_simple_retransmitvmlinuxEXPORT_SYMBOL0xc5d06acbinet_csk_bind_conflictvmlinuxEXPORT_SYMBOL_GPL0xcd479025anon_inode_getfilevmlinuxEXPORT_SYMBOL_GPL0xeca8d074simple_dir_inode_operationsvmlinuxEXPORT_SYMBOL0xb19a8c12irq_domain_xlate_onetwocellvmlinuxEXPORT_SYMBOL_GPL0x2d4e2293can_ioctlnet/can/canEXPORT_SYMBOL0x4b1081f8sas_get_local_phydrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xb6791d08vb2_mmapdrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0xd9525c36snd_soc_codec_set_cache_iovmlinuxEXPORT_SYMBOL_GPL0x83f71705ahci_do_softresetvmlinuxEXPORT_SYMBOL_GPL0x94f292ffdmam_pool_createvmlinuxEXPORT_SYMBOL0x1fb30f37iscsi_host_allocdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x7da92325USBC_Host_ClearResetPortFlagvmlinuxEXPORT_SYMBOL0x7607137fgenphy_suspendvmlinuxEXPORT_SYMBOL0xc8e417a6subsys_system_registervmlinuxEXPORT_SYMBOL_GPL0x15bb026b__find_get_blockvmlinuxEXPORT_SYMBOL0xf34284a2dcache_dir_openvmlinuxEXPORT_SYMBOL0x3f4547a7put_unused_fdvmlinuxEXPORT_SYMBOL0xd2555f19jiffies_64_to_clock_tvmlinuxEXPORT_SYMBOL0xcad382d3lc_setlib/lru_cacheEXPORT_SYMBOL0xb5b61efflc_putlib/lru_cacheEXPORT_SYMBOL0x4441dc36lc_getlib/lru_cacheEXPORT_SYMBOL0x9779e819inet6_lookup_listenervmlinuxEXPORT_SYMBOL_GPL0xb382eaccdev_pm_qos_expose_latency_limitvmlinuxEXPORT_SYMBOL_GPL0xfbe27a1crb_firstvmlinuxEXPORT_SYMBOL0x3ca31f35nfs_net_idvmlinuxEXPORT_SYMBOL_GPL0x7c904dedunregister_module_notifiervmlinuxEXPORT_SYMBOL0xe49775f9flush_delayed_workvmlinuxEXPORT_SYMBOL0xab6e7eaenf_conntrack_hash_check_insertnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd2c107bbceph_flags_to_modenet/ceph/libcephEXPORT_SYMBOL0x7cb04798sas_change_queue_depthdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x17692363mmc_switchvmlinuxEXPORT_SYMBOL_GPL0x9d9f0f97ata_dummy_port_opsvmlinuxEXPORT_SYMBOL_GPL0xdcba6776scsi_cmd_print_sense_hdrvmlinuxEXPORT_SYMBOL0x53b35639zero_fill_biovmlinuxEXPORT_SYMBOL0xb628f715files_lglock_local_lockvmlinuxEXPORT_SYMBOL0x659ad30fiio_read_const_attrdrivers/staging/iio/industrialioEXPORT_SYMBOL0x26d4b832ath9k_hw_cfg_outputdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x2d91c889videobuf_dvb_register_busdrivers/media/video/videobuf-dvbEXPORT_SYMBOL0xfdb72162unix_peer_getvmlinuxEXPORT_SYMBOL_GPL0x97076b49mmc_resume_hostvmlinuxEXPORT_SYMBOL0x75180067v4l2_spi_subdev_initvmlinuxEXPORT_SYMBOL_GPL0x22558213videobuf_iolockdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x7c1e43e6tcp_syn_ack_timeoutvmlinuxEXPORT_SYMBOL0xb816df03nf_log_unregistervmlinuxEXPORT_SYMBOL0xaabf5bf9mmc_alloc_hostvmlinuxEXPORT_SYMBOL0x8bec300fscsi_eh_ready_devsvmlinuxEXPORT_SYMBOL_GPL0x986e6135fb_pad_unaligned_buffervmlinuxEXPORT_SYMBOL0x1216db41generic_file_buffered_writevmlinuxEXPORT_SYMBOL0xc0178900drm_fb_helper_single_add_all_connectorsdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xc1c2dd09__hw_addr_flushvmlinuxEXPORT_SYMBOL0x69461216snd_rawmidi_drain_inputvmlinuxEXPORT_SYMBOL0x53daf410snd_register_device_for_devvmlinuxEXPORT_SYMBOL0x1fa1a58cthermal_cooling_device_registervmlinuxEXPORT_SYMBOL0x9542508cinput_open_devicevmlinuxEXPORT_SYMBOL0xfe990052gpio_freevmlinuxEXPORT_SYMBOL_GPL0xea054b22nla_policy_lenvmlinuxEXPORT_SYMBOL0xd92afabebitmap_clearvmlinuxEXPORT_SYMBOL0xf454ba14fsync_bdevvmlinuxEXPORT_SYMBOL0x4c5e5942iio_push_eventdrivers/staging/iio/industrialioEXPORT_SYMBOL0x55785373osduld_path_lookupdrivers/scsi/osd/osdEXPORT_SYMBOL0xf64277delbs_debugdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xf3f8aba2ath6kl_core_initdrivers/net/wireless/ath/ath6kl/ath6kl_coreEXPORT_SYMBOL0xe6589341drm_mode_set_namedrivers/gpu/drm/drmEXPORT_SYMBOL0x5a31fa17cfg80211_wext_giwrangevmlinuxEXPORT_SYMBOL_GPL0x9a328c1bxprt_set_retrans_timeout_defvmlinuxEXPORT_SYMBOL_GPL0xfa194113ip6_dst_lookupvmlinuxEXPORT_SYMBOL_GPL0x924d1744i2c_new_devicevmlinuxEXPORT_SYMBOL_GPL0x94766598device_for_each_childvmlinuxEXPORT_SYMBOL_GPL0x40a9b349vzallocvmlinuxEXPORT_SYMBOL0xc2f9c045timespec_to_jiffiesvmlinuxEXPORT_SYMBOL0x7e16c89bieee80211_free_hwnet/mac80211/mac80211EXPORT_SYMBOL0xc2ed757bhci_resume_devnet/bluetooth/bluetoothEXPORT_SYMBOL0x0fa40063mwifiex_remove_carddrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0xc7e3ae5apmbus_set_pagedrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0x8894aa12media_device_unregistervmlinuxEXPORT_SYMBOL_GPL0x07d9b783scsi_nl_send_vendor_msgvmlinuxEXPORT_SYMBOL0x02fc9f29pm_generic_poweroff_latevmlinuxEXPORT_SYMBOL_GPL0x552a9dd2unregister_key_typevmlinuxEXPORT_SYMBOL0x5f421f63transport_generic_new_cmddrivers/target/target_core_modEXPORT_SYMBOL0x44b1940di2c_dp_aux_add_busdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x0932c132rpc_shutdown_clientvmlinuxEXPORT_SYMBOL_GPL0x98d01c66USBC_Host_IsWriteDataReadyvmlinuxEXPORT_SYMBOL0x2e5fe35eusb_add_gadget_udcvmlinuxEXPORT_SYMBOL_GPL0x825091ecpppox_ioctlvmlinuxEXPORT_SYMBOL0x11089ac7_ctypevmlinuxEXPORT_SYMBOL0xeffb9691blk_get_queuevmlinuxEXPORT_SYMBOL0xf6878cd8bd_set_sizevmlinuxEXPORT_SYMBOL0xca7d8764kthread_freezable_should_stopvmlinuxEXPORT_SYMBOL_GPL0xef5ef127iio_st_get_channel_typedrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0x25b168b3mtd_device_unregisterdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x4713a50cudp_proc_unregistervmlinuxEXPORT_SYMBOL0x9c9d4f88power_supply_get_by_namevmlinuxEXPORT_SYMBOL_GPL0x37f614b7__kfifo_len_rvmlinuxEXPORT_SYMBOL0x912baa1cclose_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x4e667788svc_xprt_namesvmlinuxEXPORT_SYMBOL_GPL0xf28da28finet_sk_rebuild_headervmlinuxEXPORT_SYMBOL0x41d56dedskb_copyvmlinuxEXPORT_SYMBOL0x1c422278snd_pcm_stopvmlinuxEXPORT_SYMBOL0x380a95c3input_inject_eventvmlinuxEXPORT_SYMBOL0x7593d385div64_s64vmlinuxEXPORT_SYMBOL0x27864d57memparsevmlinuxEXPORT_SYMBOL0xb075895eblock_truncate_pagevmlinuxEXPORT_SYMBOL0x2b8420fbgeneric_write_checksvmlinuxEXPORT_SYMBOL0x4f68e5c9do_gettimeofdayvmlinuxEXPORT_SYMBOL0xa6715115do_settimeofdayvmlinuxEXPORT_SYMBOL0x6775ba1dsas_rphy_unlinkdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x62d5e434iscsi_session_get_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x2ff16219em28xx_write_ac97drivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0x0c58a8cdnetdev_increment_featuresvmlinuxEXPORT_SYMBOL0xabe3740buart_match_portvmlinuxEXPORT_SYMBOL0x7f2cab63iscsi_host_get_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0xe5ae8707intlog10drivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xa57e4efccfg80211_pmksa_candidate_notifyvmlinuxEXPORT_SYMBOL0x404a4bd5svc_shutdown_netvmlinuxEXPORT_SYMBOL_GPL0x1264e30cflow_cache_lookupvmlinuxEXPORT_SYMBOL0x1a06973eaxp_set_bitsvmlinuxEXPORT_SYMBOL_GPL0x6fba930d__splice_from_pipevmlinuxEXPORT_SYMBOL0x0099d2b0__nf_ct_ext_destroynet/netfilter/nf_conntrackEXPORT_SYMBOL0xcf0bd3f2scsi_is_sas_phydrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x1e5e71b0rt2x00usb_resumedrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x8ee7279aump_dd_size_getdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0x03ca7a57unregister_net_sysctl_tablevmlinuxEXPORT_SYMBOL_GPL0xa197b1ffieee80211_get_mesh_hdrlenvmlinuxEXPORT_SYMBOL0xa5b7c429sdio_align_sizevmlinuxEXPORT_SYMBOL_GPL0x77e53ed7cpufreq_register_governorvmlinuxEXPORT_SYMBOL_GPL0xf9ca3160ata_id_xfermaskvmlinuxEXPORT_SYMBOL_GPL0x18afd367tty_write_roomvmlinuxEXPORT_SYMBOL0x45859408sysfs_add_file_to_groupvmlinuxEXPORT_SYMBOL_GPL0x487d9343param_ops_ushortvmlinuxEXPORT_SYMBOL0x39bc195dlib80211_get_crypto_opsnet/wireless/lib80211EXPORT_SYMBOL0x1f6bb68bieee80211_pspoll_getnet/mac80211/mac80211EXPORT_SYMBOL0x8e2b6e38usbip_start_ehdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x738e918fstv0900_attachdrivers/media/dvb/frontends/stv0900EXPORT_SYMBOL0x0abe0fc0stb6100_attachdrivers/media/dvb/frontends/stb6100EXPORT_SYMBOL0xaaff65d4stb6000_attachdrivers/media/dvb/frontends/stb6000EXPORT_SYMBOL0xfb5ecafblnbp21_attachdrivers/media/dvb/frontends/lnbp21EXPORT_SYMBOL0x24f0a75cdev_trans_startvmlinuxEXPORT_SYMBOL0x5db7dc9bACE_InitvmlinuxEXPORT_SYMBOL_GPL0x10ee20bbdefault_bluvmlinuxEXPORT_SYMBOL0xa381944fdql_resetvmlinuxEXPORT_SYMBOL0x4d0da079blk_register_regionvmlinuxEXPORT_SYMBOL0x790458d1bio_putvmlinuxEXPORT_SYMBOL0xb7408c9ftask_tgid_nr_nsvmlinuxEXPORT_SYMBOL0x190975f5ieee80211_rts_getnet/mac80211/mac80211EXPORT_SYMBOL0xcd661a34smscore_get_device_modedrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x7e46b31bdib0090_update_tuning_table_7090drivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x507a2ff5tpm_store_canceldrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xbbe913dbw1_read_blockvmlinuxEXPORT_SYMBOL_GPL0xeb008c21video_ioctl2vmlinuxEXPORT_SYMBOL0x8ca98a0einput_alloc_absinfovmlinuxEXPORT_SYMBOL0x48186222scsi_is_target_devicevmlinuxEXPORT_SYMBOL0x81d659bdjournal_force_commitvmlinuxEXPORT_SYMBOL0xdb5d34e0rcu_batches_completed_preemptvmlinuxEXPORT_SYMBOL_GPL0xd1ad0ce5each_symbol_sectionvmlinuxEXPORT_SYMBOL_GPL0x8bdccc17cx231xx_set_modedrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0x0588e722ping_bindvmlinuxEXPORT_SYMBOL_GPL0xeb5db7e9sk_dst_checkvmlinuxEXPORT_SYMBOL0x50766d69v4l2_ctrl_query_menu_valid_itemsvmlinuxEXPORT_SYMBOL0x6a76f3acblk_iopoll_enablevmlinuxEXPORT_SYMBOL0x13038213inode_needs_syncvmlinuxEXPORT_SYMBOL0xfcc9cdbagrab_cache_page_nowaitvmlinuxEXPORT_SYMBOL0xc4922cde__wake_up_sync_keyvmlinuxEXPORT_SYMBOL_GPL0x5e22e937irttp_connect_requestnet/irda/irdaEXPORT_SYMBOL0x725ad6d2irlmp_connect_requestnet/irda/irdaEXPORT_SYMBOL0xebeb869bssb_pmu_set_ldo_voltagedrivers/ssb/ssbEXPORT_SYMBOL0xf302350edev_getfirstbyhwtypevmlinuxEXPORT_SYMBOL0x3b5b5b51snd_rawmidi_receivevmlinuxEXPORT_SYMBOL0x56cbd32fahci_print_infovmlinuxEXPORT_SYMBOL_GPL0x5a7c4e67scsi_internal_device_blockvmlinuxEXPORT_SYMBOL_GPL0xc0efedd4wake_up_processvmlinuxEXPORT_SYMBOL0x25820c64fs_overflowuidvmlinuxEXPORT_SYMBOL0x636d34f3__nf_ct_refresh_acctnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x0984c269scsi_is_sas_portdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xed778a17flexcop_device_exitdrivers/media/dvb/b2c2/b2c2-flexcopEXPORT_SYMBOL0x892d76b2cma3000_resumedrivers/input/misc/cma3000_d0xEXPORT_SYMBOL0xf78d048askb_dequeue_tailvmlinuxEXPORT_SYMBOL0x894165f1hidinput_count_ledsvmlinuxEXPORT_SYMBOL_GPL0x0d95cf63input_ff_erasevmlinuxEXPORT_SYMBOL_GPL0x4f476e96init_cdrom_commandvmlinuxEXPORT_SYMBOL0xea418e0fatapi_cmd_typevmlinuxEXPORT_SYMBOL_GPL0x90b21b00scsi_target_resumevmlinuxEXPORT_SYMBOL0xfa9c2b62nfs_initiate_readvmlinuxEXPORT_SYMBOL_GPL0xa3cff44f__get_user_pagesvmlinuxEXPORT_SYMBOL0xb88e5f8dfree_css_idvmlinuxEXPORT_SYMBOL_GPL0xa01d4cab__module_addressvmlinuxEXPORT_SYMBOL_GPL0xbfa7ce5cnf_ct_timeout_find_get_hooknet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xdeebfb06pwm_configdrivers/misc/pwm-sunxiEXPORT_SYMBOL0x448a9801inet_stream_opsvmlinuxEXPORT_SYMBOL0x88417696qdisc_resetvmlinuxEXPORT_SYMBOL0x63ecad53register_netdevice_notifiervmlinuxEXPORT_SYMBOL0x097937ceblk_complete_requestvmlinuxEXPORT_SYMBOL0x808ec1a3crypto_alg_testedvmlinuxEXPORT_SYMBOL_GPL0xc12939a4bio_unmap_uservmlinuxEXPORT_SYMBOL0x416a0f7bem28xx_audio_setupdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xa0aca161dm_rh_bio_to_regiondrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x6c72f675udp_seq_openvmlinuxEXPORT_SYMBOL0xd712cb6eidr_get_nextvmlinuxEXPORT_SYMBOL0x111d677ffail_migrate_pagevmlinuxEXPORT_SYMBOL0x4cdb3178ns_to_timevalvmlinuxEXPORT_SYMBOL0x4bef40fbnf_ct_expect_register_notifiernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd80c3603crc7_syndrome_tablelib/crc7EXPORT_SYMBOL0x721b1851skip_spacesvmlinuxEXPORT_SYMBOL0xdc2adb35add_taintvmlinuxEXPORT_SYMBOL0x60a32ea9pm_power_offvmlinuxEXPORT_SYMBOL0xf7a48077osd_req_add_get_attr_pagedrivers/scsi/osd/libosdEXPORT_SYMBOL0x0db54641__neigh_for_each_releasevmlinuxEXPORT_SYMBOL0x35f5e335USBC_Dev_Ctrl_IsSetupEndvmlinuxEXPORT_SYMBOL0x59fb5a6bspi_busnum_to_mastervmlinuxEXPORT_SYMBOL_GPL0xe862c4b7dpm_suspend_startvmlinuxEXPORT_SYMBOL_GPL0x4432579adevice_initializevmlinuxEXPORT_SYMBOL_GPL0x41fd142cblk_queue_init_tagsvmlinuxEXPORT_SYMBOL0xa0d906bauser_destroyvmlinuxEXPORT_SYMBOL_GPL0x1d959601dquot_alloc_inodevmlinuxEXPORT_SYMBOL0xfff3e8cabdgetvmlinuxEXPORT_SYMBOL0xc035db5fbdputvmlinuxEXPORT_SYMBOL0xd9b1eb8ffsstack_copy_inode_sizevmlinuxEXPORT_SYMBOL_GPL0xdd2c27e7nf_conntrack_untrackednet/netfilter/nf_conntrackEXPORT_SYMBOL0x846bcc01dm_table_getvmlinuxEXPORT_SYMBOL0xc1b30660USBC_GetLastFrameNumbervmlinuxEXPORT_SYMBOL0x52bf1239usb_usual_ignore_devicevmlinuxEXPORT_SYMBOL_GPL0xed9f8e6dkstrtos16vmlinuxEXPORT_SYMBOL0xa81fb87aieee80211_request_smpsnet/mac80211/mac80211EXPORT_SYMBOL_GPL0x0ff2ddc0scsi_tgt_cmd_to_hostdrivers/scsi/scsi_tgtEXPORT_SYMBOL_GPL0xba6d43bdsnd_soc_cache_readvmlinuxEXPORT_SYMBOL_GPL0x9aff9a05snd_soc_info_volsw_extvmlinuxEXPORT_SYMBOL_GPL0x796c2d48dm_get_mdvmlinuxEXPORT_SYMBOL_GPL0xadcac4a3vfsmount_lock_local_unlock_cpuvmlinuxEXPORT_SYMBOL0x7e7c2273fs_kobjvmlinuxEXPORT_SYMBOL_GPL0xf8fbb4f0__bad_xchgvmlinuxEXPORT_SYMBOL0x78c84c7el3_writesound/soc/codecs/snd-soc-l3EXPORT_SYMBOL_GPL0x2b1d05a5rt2800_set_rts_thresholddrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x705e633dlirc_dev_fop_closedrivers/media/rc/lirc_devEXPORT_SYMBOL0x69e97209drm_mode_debug_printmodelinedrivers/gpu/drm/drmEXPORT_SYMBOL0x3682865bcdrom_ioctlvmlinuxEXPORT_SYMBOL0xf868b95dsata_link_scr_lpmvmlinuxEXPORT_SYMBOL_GPL0xe8d7e236crypto_alloc_ablkciphervmlinuxEXPORT_SYMBOL_GPL0x6736815bbio_initvmlinuxEXPORT_SYMBOL0x7278d328all_vm_eventsvmlinuxEXPORT_SYMBOL_GPL0x41814cb8dirty_writeback_intervalvmlinuxEXPORT_SYMBOL_GPL0x706fc943mali_pmu_powerupdrivers/gpu/mali/mali/maliEXPORT_SYMBOL0x975a8244gss_mech_putvmlinuxEXPORT_SYMBOL_GPL0xccf542fbrpc_max_payloadvmlinuxEXPORT_SYMBOL_GPL0x4ebc422binet6_hash_connectvmlinuxEXPORT_SYMBOL_GPL0x7cbb0798gnet_stats_copy_rate_estvmlinuxEXPORT_SYMBOL0x9c9ae065skb_partial_csum_setvmlinuxEXPORT_SYMBOL_GPL0x603ffb7asdio_enable_funcvmlinuxEXPORT_SYMBOL_GPL0x66ea1085sw_hcd_generic_disablevmlinuxEXPORT_SYMBOL0x47a72c40pm_runtime_no_callbacksvmlinuxEXPORT_SYMBOL_GPL0xb523333bsubsys_dev_iter_nextvmlinuxEXPORT_SYMBOL_GPL0x93ec8045LCD_get_reg_basesvmlinuxEXPORT_SYMBOL0x6f73c399create_empty_buffersvmlinuxEXPORT_SYMBOL0x4d7935bcinit_special_inodevmlinuxEXPORT_SYMBOL0xd0720a17on_each_cpu_condvmlinuxEXPORT_SYMBOL0xac820ef6nfnl_acct_updatenet/netfilter/nfnetlink_acctEXPORT_SYMBOL_GPL0x6fe52a18srp_release_transportdrivers/scsi/scsi_transport_srpEXPORT_SYMBOL_GPL0x4f2ef4bfcfi_qry_presentdrivers/mtd/chips/cfi_utilEXPORT_SYMBOL_GPL0xce2c8a4bvideobuf_read_stopdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xa7dd8c46ump_dd_phys_block_getdrivers/gpu/mali/ump/umpEXPORT_SYMBOL0xd01e4c90cfg80211_mgmt_tx_statusvmlinuxEXPORT_SYMBOL0x4dd2cd4dinet_frag_destroyvmlinuxEXPORT_SYMBOL0xe587910askb_make_writablevmlinuxEXPORT_SYMBOL0x2eeceb42sk_chk_filtervmlinuxEXPORT_SYMBOL0x8f595b11snd_majorvmlinuxEXPORT_SYMBOL0xc79bcd36dm_vcallocvmlinuxEXPORT_SYMBOL0x43d231d4pipe_to_filevmlinuxEXPORT_SYMBOL0x93dfbbb1__dec_zone_page_statevmlinuxEXPORT_SYMBOL0xd6ce8e32__inc_zone_page_statevmlinuxEXPORT_SYMBOL0xfd9bcc0a__mod_zone_page_statevmlinuxEXPORT_SYMBOL0xab6babafpm_qos_requestvmlinuxEXPORT_SYMBOL_GPL0x5b511c02flush_kthread_workervmlinuxEXPORT_SYMBOL_GPL0xa5cef8adrelease_resourcevmlinuxEXPORT_SYMBOL0xe5ee7832videobuf_waitondrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xb6a467b1drm_edid_is_validdrivers/gpu/drm/drmEXPORT_SYMBOL0x06203a6fbrioctl_setvmlinuxEXPORT_SYMBOL0xfb844a9finput_set_abs_paramsvmlinuxEXPORT_SYMBOL0xaf538ce9ppp_register_compressorvmlinuxEXPORT_SYMBOL0x18d90f00spi_bus_unlockvmlinuxEXPORT_SYMBOL_GPL0xb45a62cadevice_schedule_callback_ownervmlinuxEXPORT_SYMBOL_GPL0x6f717008vm_insert_pfnvmlinuxEXPORT_SYMBOL0xfcaa04a0out_of_line_wait_on_bit_lockvmlinuxEXPORT_SYMBOL0x376f1f95hci_le_start_encnet/bluetooth/bluetoothEXPORT_SYMBOL0x2edf3e52atbm8830_attachdrivers/media/dvb/frontends/atbm8830EXPORT_SYMBOL0x2e140905register_net_sysctl_tablevmlinuxEXPORT_SYMBOL_GPL0x3939f8f0rfkill_pause_pollingvmlinuxEXPORT_SYMBOL0x808d7035xfrm_state_allocvmlinuxEXPORT_SYMBOL0x85670f1drtnl_is_lockedvmlinuxEXPORT_SYMBOL0x8fb156b2fat_remove_entriesvmlinuxEXPORT_SYMBOL_GPL0x97e9591fpage_symlinkvmlinuxEXPORT_SYMBOL0xbc6f931bworkqueue_congestedvmlinuxEXPORT_SYMBOL_GPL0x8fa1ea90tda10045_attachdrivers/media/dvb/frontends/tda1004xEXPORT_SYMBOL0xef98a31ftda10046_attachdrivers/media/dvb/frontends/tda1004xEXPORT_SYMBOL0x42c6e110tda10048_attachdrivers/media/dvb/frontends/tda10048EXPORT_SYMBOL0x79ed831ffreq_reg_infovmlinuxEXPORT_SYMBOL0x665aa9b3__xfrm_route_forwardvmlinuxEXPORT_SYMBOL0x9bf05e30skb_gso_transport_seglenvmlinuxEXPORT_SYMBOL_GPL0x81cbd97dsnd_soc_put_volsw_s8vmlinuxEXPORT_SYMBOL_GPL0x80a587e5snd_soc_get_volsw_s8vmlinuxEXPORT_SYMBOL_GPL0xb147c4d6nfsacl_decodevmlinuxEXPORT_SYMBOL_GPL0x4e1ca491nfsacl_encodevmlinuxEXPORT_SYMBOL_GPL0x388bd7d9fc_get_host_port_statedrivers/scsi/libfc/libfcEXPORT_SYMBOL0x8a147dc7gen_replace_estimatorvmlinuxEXPORT_SYMBOL0xb485f733spi_bitbang_setupvmlinuxEXPORT_SYMBOL_GPL0xfcbf6fdbscsi_target_unblockvmlinuxEXPORT_SYMBOL_GPL0xc22b50adparam_set_bintvmlinuxEXPORT_SYMBOL0x21315700param_get_boolvmlinuxEXPORT_SYMBOL0x3eae292fparam_set_bytevmlinuxEXPORT_SYMBOL0x0104a77cfc_exch_mgr_allocdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xc86896dfbrcmf_sdio_removedrivers/net/wireless/brcm80211/brcmfmac/brcmfmacEXPORT_SYMBOL0x31a4dad5drm_platform_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x49aab20bdrm_platform_exitdrivers/gpu/drm/drmEXPORT_SYMBOL0x082fcc11tpm_do_selftestdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x12ac7b27rpc_call_nullvmlinuxEXPORT_SYMBOL_GPL0x9fdecc31unregister_netdevice_manyvmlinuxEXPORT_SYMBOL0x3e3edecertc_device_unregistervmlinuxEXPORT_SYMBOL_GPL0xa870b5efblk_abort_queuevmlinuxEXPORT_SYMBOL_GPL0x2c5716aablk_queue_logical_block_sizevmlinuxEXPORT_SYMBOL0x6e54eaa2init_srcu_structvmlinuxEXPORT_SYMBOL_GPL0x4d2a941bparport_ieee1284_interruptdrivers/parport/parportEXPORT_SYMBOL0x69b297c5af9013_attachdrivers/media/dvb/frontends/af9013EXPORT_SYMBOL0xb797a2e1sunrpc_cache_lookupvmlinuxEXPORT_SYMBOL_GPL0x1ce3831aarp_tblvmlinuxEXPORT_SYMBOL0x5924cda7__skb_recv_datagramvmlinuxEXPORT_SYMBOL0x2d283529v4l2_ctrl_add_ctrlvmlinuxEXPORT_SYMBOL0xaf46581bset_hcd0_connect_statusvmlinuxEXPORT_SYMBOL0xd0016434USBC_initvmlinuxEXPORT_SYMBOL0x7fa39a12phy_attachvmlinuxEXPORT_SYMBOL0x47ea1cbaLCD_CLOSE_FUNCvmlinuxEXPORT_SYMBOL0xfe7c4287nr_cpu_idsvmlinuxEXPORT_SYMBOL0x5c9284a0processor_idvmlinuxEXPORT_SYMBOL0x25ae17ecxt_unregister_matchnet/netfilter/x_tablesEXPORT_SYMBOL0x0a965b31net_vs_ctl_pathnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL_GPL0x065994f1xdr_encode_opaque_fixedvmlinuxEXPORT_SYMBOL_GPL0x4d18c9d0tcp_splice_readvmlinuxEXPORT_SYMBOL0xd3a7c8f1ip_vs_conn_in_get_protonet/netfilter/ipvs/ip_vsEXPORT_SYMBOL_GPL0xca97d957iscsi_prep_data_out_pdudrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x7fc8652cem28xx_tuner_callbackdrivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0xa0c62e0ddrm_master_getdrivers/gpu/drm/drmEXPORT_SYMBOL0xa841dd7ddevm_regmap_init_spivmlinuxEXPORT_SYMBOL_GPL0x831267e9devm_regmap_init_i2cvmlinuxEXPORT_SYMBOL_GPL0x62341d66css_depthvmlinuxEXPORT_SYMBOL_GPL0xef055b08ceph_osdc_cancel_eventnet/ceph/libcephEXPORT_SYMBOL0x9b08a8fblirc_dev_fop_readdrivers/media/rc/lirc_devEXPORT_SYMBOL0x35131b36drbd_role_strdrivers/block/drbd/drbdEXPORT_SYMBOL0x82fa953alrw_cryptcrypto/lrwEXPORT_SYMBOL_GPL0x36e360e3__hw_addr_add_multiplevmlinuxEXPORT_SYMBOL0xf0e6ecd5snd_soc_jack_add_gpiosvmlinuxEXPORT_SYMBOL_GPL0xcbc9557funregister_sysrq_keyvmlinuxEXPORT_SYMBOL0xd85ac634regulator_putvmlinuxEXPORT_SYMBOL_GPL0x39d9f3b7crypto_unregister_algsvmlinuxEXPORT_SYMBOL_GPL0xc76d8923simple_transaction_setvmlinuxEXPORT_SYMBOL0x882d0335simple_transaction_getvmlinuxEXPORT_SYMBOL0xaa973421find_pid_nsvmlinuxEXPORT_SYMBOL_GPL0x224e4974wm8996_detectsound/soc/codecs/snd-soc-wm8996EXPORT_SYMBOL_GPL0x100333d7__nf_conntrack_findnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x5df6c03cusbnet_cdc_binddrivers/net/usb/cdc_etherEXPORT_SYMBOL_GPL0xf4032703rtl2830_attachdrivers/media/dvb/frontends/rtl2830EXPORT_SYMBOL0x56e75d47klist_node_attachedvmlinuxEXPORT_SYMBOL_GPL0x26fd4794rfkill_allocvmlinuxEXPORT_SYMBOL0x6a6b3e5f__nlmsg_putvmlinuxEXPORT_SYMBOL0x5e9298f8lock_sock_nestedvmlinuxEXPORT_SYMBOL0x19e464eahid_add_devicevmlinuxEXPORT_SYMBOL_GPL0x4233f9fasdio_disable_funcvmlinuxEXPORT_SYMBOL_GPL0x16175c02scsi_free_commandvmlinuxEXPORT_SYMBOL0xc12371deplatform_add_devicesvmlinuxEXPORT_SYMBOL_GPL0x92b57248flush_workvmlinuxEXPORT_SYMBOL_GPL0xb967690adm_btree_removedrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xc1e677eddrm_mm_dump_tabledrivers/gpu/drm/drmEXPORT_SYMBOL0x26c315aebitmap_close_syncvmlinuxEXPORT_SYMBOL0x7006f5fdsw_hcd_platform_resumevmlinuxEXPORT_SYMBOL0x3d77c2f5usb_deregistervmlinuxEXPORT_SYMBOL_GPL0x1068004bgf128mul_bbevmlinuxEXPORT_SYMBOL0x1a83c811p54_parse_firmwaredrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0xaa312179hostap_master_start_xmitdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x20e73917videobuf_dvb_dealloc_frontendsdrivers/media/video/videobuf-dvbEXPORT_SYMBOL0xe1f10488drm_mm_remove_nodedrivers/gpu/drm/drmEXPORT_SYMBOL0x04cda566snd_interval_refinevmlinuxEXPORT_SYMBOL0xa5eda1e8USBC_INT_ClearEpPendingvmlinuxEXPORT_SYMBOL0x74502054rdev_get_drvdatavmlinuxEXPORT_SYMBOL_GPL0x72860b20crypto_alloc_instancevmlinuxEXPORT_SYMBOL_GPL0xf8904047mpage_writepagevmlinuxEXPORT_SYMBOL0x3e13945aset_security_overridevmlinuxEXPORT_SYMBOL0x6b2dc060dump_stackvmlinuxEXPORT_SYMBOL0xbd7e1bc3nfnetlink_subsys_unregisternet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x5f00b0c0scsi_dh_activatedrivers/scsi/device_handler/scsi_dhEXPORT_SYMBOL_GPL0x3231e3ddhdlc_change_mtudrivers/net/wan/hdlcEXPORT_SYMBOL0x1248f308ir_raw_event_store_with_filterdrivers/media/rc/rc-coreEXPORT_SYMBOL_GPL0xb0c89ff6raw_seq_startvmlinuxEXPORT_SYMBOL_GPL0xba4cab04dst_cow_metrics_genericvmlinuxEXPORT_SYMBOL0xcf1a4602rtc_read_timevmlinuxEXPORT_SYMBOL_GPL0x69b70614USBC_Host_ClearEpStallvmlinuxEXPORT_SYMBOL0xc8d09237ata_dev_pairvmlinuxEXPORT_SYMBOL_GPL0x10c29701mount_nsvmlinuxEXPORT_SYMBOL0x63d2ff63eeprom_93cx6_wrendrivers/misc/eeprom/eeprom_93cx6EXPORT_SYMBOL_GPL0x0fc8b8c3drm_core_reclaim_buffersdrivers/gpu/drm/drmEXPORT_SYMBOL0x7ea6ac44kobject_delvmlinuxEXPORT_SYMBOL0xf0c098dccrypto_unregister_shashvmlinuxEXPORT_SYMBOL_GPL0xb7bdd50bcrypto_unregister_ahashvmlinuxEXPORT_SYMBOL_GPL0x6b176fd3nat_callforwarding_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0x47a3ba5fwl1271_set_partitiondrivers/net/wireless/wl12xx/wl12xxEXPORT_SYMBOL_GPL0xfcb0f070vb2_get_vmadrivers/media/video/videobuf2-memopsEXPORT_SYMBOL_GPL0x38a4f7aedrm_format_num_planesdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xc414c422drm_vblank_offdelaydrivers/gpu/drm/drmEXPORT_SYMBOL0xff74bc31snd_ctl_find_numidvmlinuxEXPORT_SYMBOL0x15a8b06busb_reset_endpointvmlinuxEXPORT_SYMBOL_GPL0x13b2a946register_keyboard_notifiervmlinuxEXPORT_SYMBOL_GPL0xb6a68816find_last_bitvmlinuxEXPORT_SYMBOL0x70e91b58inode_dio_donevmlinuxEXPORT_SYMBOL0x1155a1b9poll_initwaitvmlinuxEXPORT_SYMBOL0x662404d2unregister_consolevmlinuxEXPORT_SYMBOL0x3a8dd6b3nf_ct_helper_ext_addnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xe4bb87f0led_trigger_unregister_simplevmlinuxEXPORT_SYMBOL_GPL0x789fc705usb_stor_reset_resumevmlinuxEXPORT_SYMBOL_GPL0xdb037dd8phy_disconnectvmlinuxEXPORT_SYMBOL0xebbf1fb9regmap_update_bitsvmlinuxEXPORT_SYMBOL_GPL0x04eea648aead_geniv_freevmlinuxEXPORT_SYMBOL_GPL0xd8e484f0register_chrdev_regionvmlinuxEXPORT_SYMBOL0x7e186671rate_control_send_lownet/mac80211/mac80211EXPORT_SYMBOL0xc63f1b81ieee80211_radiotap_iterator_nextvmlinuxEXPORT_SYMBOL0x98500995inet_csk_reqsk_queue_prunevmlinuxEXPORT_SYMBOL_GPL0x20a40a3enetdev_state_changevmlinuxEXPORT_SYMBOL0x54a0d785bio_clone_mddevvmlinuxEXPORT_SYMBOL_GPL0x310917fesortvmlinuxEXPORT_SYMBOL0x1a185d20nfs4_reset_readvmlinuxEXPORT_SYMBOL_GPL0x541bd60airq_work_runvmlinuxEXPORT_SYMBOL_GPL0x6c49c4f2clockevents_notifyvmlinuxEXPORT_SYMBOL_GPL0xa3b24cb2hci_recv_stream_fragmentnet/bluetooth/bluetoothEXPORT_SYMBOL0x79efb932iscsi_host_removedrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x0b5e27afsnd_rawmidi_kernel_readvmlinuxEXPORT_SYMBOL0xc5722e24usb_sg_cancelvmlinuxEXPORT_SYMBOL_GPL0x0b9aaae9LCD_POWER_ENvmlinuxEXPORT_SYMBOL0x0d4d6779LCD_CPU_AUTO_FLUSHvmlinuxEXPORT_SYMBOL0xe6c68334ddebug_remove_modulevmlinuxEXPORT_SYMBOL_GPL0x9b585850fscache_io_errorvmlinuxEXPORT_SYMBOL0xac9b4546kern_pathvmlinuxEXPORT_SYMBOL0xe49762bdiscsi_destroy_conndrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xd48feb78nf_register_queue_handlervmlinuxEXPORT_SYMBOL0xff16f12anetpoll_print_optionsvmlinuxEXPORT_SYMBOL0x5576b57fsnd_soc_dai_set_tristatevmlinuxEXPORT_SYMBOL_GPL0x26f6e925dma_alloc_from_coherentvmlinuxEXPORT_SYMBOL0xe4309905syscore_resumevmlinuxEXPORT_SYMBOL_GPL0x81003ee2__sg_alloc_tablevmlinuxEXPORT_SYMBOL0x73c351f9shrink_dcache_sbvmlinuxEXPORT_SYMBOL0x15692c87param_ops_intvmlinuxEXPORT_SYMBOL0x5e80f37cipmi_unregister_for_cmddrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x3d4222cdUSBC_EnableIdChangevmlinuxEXPORT_SYMBOL0x011cf028regulator_suspend_finishvmlinuxEXPORT_SYMBOL_GPL0x223a3b3eblkdev_issue_flushvmlinuxEXPORT_SYMBOL0x499043d3crypto_init_queuevmlinuxEXPORT_SYMBOL_GPL0x87b694bedefault_backing_dev_infovmlinuxEXPORT_SYMBOL_GPL0xf328300cdrm_gem_object_initdrivers/gpu/drm/drmEXPORT_SYMBOL0xbdbe7378cookie_check_timestampvmlinuxEXPORT_SYMBOL0x79d59dadfind_inode_numbervmlinuxEXPORT_SYMBOL0xb2d307deparam_ops_shortvmlinuxEXPORT_SYMBOL0x07070bf1hci_unregister_devnet/bluetooth/bluetoothEXPORT_SYMBOL0x388321c9unregister_cec_driverdrivers/video/hdmi-cec/hdmi-cecEXPORT_SYMBOL0xc33c950ciio_allocate_devicedrivers/staging/iio/industrialioEXPORT_SYMBOL0xaad6d92frfkill_init_sw_statevmlinuxEXPORT_SYMBOL0x1d9ea2bdrpcb_getport_asyncvmlinuxEXPORT_SYMBOL_GPL0xcaa082dcip_route_input_commonvmlinuxEXPORT_SYMBOL0x23c8f257slhc_uncompressvmlinuxEXPORT_SYMBOL0xe5fdebf0unregister_con_drivervmlinuxEXPORT_SYMBOL0x3e624fbfamba_device_putvmlinuxEXPORT_SYMBOL_GPL0x346cc0a5amba_device_addvmlinuxEXPORT_SYMBOL_GPL0xa6970398__kfifo_to_user_rvmlinuxEXPORT_SYMBOL0xf31af3efrt2x00mac_configure_filterdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x63b2ff62dm_btree_insertdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xd9c100desoftnet_datavmlinuxEXPORT_SYMBOL0x00f42699files_lglock_global_unlockvmlinuxEXPORT_SYMBOL0x311b7963_raw_spin_unlockvmlinuxEXPORT_SYMBOL0x24e1307eflush_work_syncvmlinuxEXPORT_SYMBOL_GPL0xfe5d4bb2sys_tzvmlinuxEXPORT_SYMBOL0x0fb51275fcoe_queue_timerdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0x26760f9dcx231xx_set_alt_settingdrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xa6aae3eadm_btree_find_highest_keydrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xbbce1666__skb_tx_hashvmlinuxEXPORT_SYMBOL0x3c2e37c9LCD_CPU_register_irqvmlinuxEXPORT_SYMBOL0x6fa2802block_fb_infovmlinuxEXPORT_SYMBOL0x81739e3eblk_integrity_registervmlinuxEXPORT_SYMBOL0x0aa94710blk_init_queuevmlinuxEXPORT_SYMBOL0xb38dd5efunlock_pagevmlinuxEXPORT_SYMBOL0x2a5748c9cpu_pm_unregister_notifiervmlinuxEXPORT_SYMBOL_GPL0xb6d50993lcd_device_registerdrivers/video/backlight/lcdEXPORT_SYMBOL0x811b0cf7cx24116_attachdrivers/media/dvb/frontends/cx24116EXPORT_SYMBOL0xe4586827adxl34x_resumedrivers/input/misc/adxl34xEXPORT_SYMBOL_GPL0x5c0042cadrm_sysfs_hotplug_eventdrivers/gpu/drm/drmEXPORT_SYMBOL0x181f0b9frpc_pipefs_notifier_registervmlinuxEXPORT_SYMBOL_GPL0xae897f70sdio_memcpy_fromiovmlinuxEXPORT_SYMBOL_GPL0x11e2ec12flex_array_free_partsvmlinuxEXPORT_SYMBOL0xb88a1864tpm_show_pubekdrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x0f668ba9svc_auth_unregistervmlinuxEXPORT_SYMBOL_GPL0x6131e575xfrm_unregister_typevmlinuxEXPORT_SYMBOL0x6d1c7715nf_ip_checksumvmlinuxEXPORT_SYMBOL0xd14bc4d9sock_diag_save_cookievmlinuxEXPORT_SYMBOL_GPL0x03032eafsnd_info_registervmlinuxEXPORT_SYMBOL0x773a9c94blk_iopoll_enabledvmlinuxEXPORT_SYMBOL0x42558d57jbd2_log_wait_commitvmlinuxEXPORT_SYMBOL0x2e02b9d2hrtimer_init_sleepervmlinuxEXPORT_SYMBOL_GPL0x11b6960beth_rebuild_headervmlinuxEXPORT_SYMBOL0x5df8edacneigh_compat_outputvmlinuxEXPORT_SYMBOL0x0283dfe3_snd_pcm_hw_params_anyvmlinuxEXPORT_SYMBOL0x0caf58a0dquot_disablevmlinuxEXPORT_SYMBOL0x056f29aduser_path_atvmlinuxEXPORT_SYMBOL0x6cf8ce54module_putvmlinuxEXPORT_SYMBOL0x2459bbccconsole_set_on_cmdlinevmlinuxEXPORT_SYMBOL0x519ca491osd_req_write_sg_kerndrivers/scsi/osd/libosdEXPORT_SYMBOL0x60327885fc_change_queue_typedrivers/scsi/libfc/libfcEXPORT_SYMBOL0x26f511b7rt2x00mac_stopdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xd26a6adfvideobuf_dqbufdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0xa8813ad6dm_rh_region_to_sectordrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xf44adec5drm_mm_debug_tabledrivers/gpu/drm/drmEXPORT_SYMBOL0xe0fa83f2ipmi_register_for_cmddrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0x2bfddbc2usb_get_from_anchorvmlinuxEXPORT_SYMBOL_GPL0xcce33053genphy_resumevmlinuxEXPORT_SYMBOL0x9fc122a0sata_link_hardresetvmlinuxEXPORT_SYMBOL_GPL0x4e36bb1ainode_get_bytesvmlinuxEXPORT_SYMBOL0x72542c85__wake_upvmlinuxEXPORT_SYMBOL0x082bfd1cnf_conntrack_helper_unregisternet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xad495cd5irias_new_objectnet/irda/irdaEXPORT_SYMBOL0xf388e79aar9003_mci_setupdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xdff8e89dtm6000_tuner_callbackdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0x74d03fe4i2c_for_each_devvmlinuxEXPORT_SYMBOL_GPL0x8ebccb9dUSBC_Host_ClearEpErrorvmlinuxEXPORT_SYMBOL0xd06febdcUSBC_WritePacketvmlinuxEXPORT_SYMBOL0x10493dc8dev_driver_stringvmlinuxEXPORT_SYMBOL0xc7a1840ellist_add_batchvmlinuxEXPORT_SYMBOL_GPL0xa9e2b09avfs_mkdirvmlinuxEXPORT_SYMBOL0x3bbfd8daosd_start_requestdrivers/scsi/osd/libosdEXPORT_SYMBOL0xea838ae2drm_gem_prime_handle_to_fddrivers/gpu/drm/drmEXPORT_SYMBOL0x62e04ca0drm_sysfs_connector_removedrivers/gpu/drm/drmEXPORT_SYMBOL0x156ee669cryptd_free_ahashcrypto/cryptdEXPORT_SYMBOL_GPL0xa66d5060mmc_cd_gpio_requestvmlinuxEXPORT_SYMBOL0x10710ff4usb_driver_claim_interfacevmlinuxEXPORT_SYMBOL_GPL0x9cfd56c5scsi_print_statusvmlinuxEXPORT_SYMBOL0xe265c3cdeventfd_ctx_filegetvmlinuxEXPORT_SYMBOL_GPL0x01139ffcmax_mapnrvmlinuxEXPORT_SYMBOL0x8c81c0b6iscsi_conn_failuredrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x36fe4283drm_mm_search_free_in_rangedrivers/gpu/drm/drmEXPORT_SYMBOL0x9d1b18bcrpc_pipe_generic_upcallvmlinuxEXPORT_SYMBOL_GPL0xf67bae70xprt_unregister_transportvmlinuxEXPORT_SYMBOL_GPL0xf6f0ae31led_trigger_setvmlinuxEXPORT_SYMBOL_GPL0x960857d8__ata_change_queue_depthvmlinuxEXPORT_SYMBOL_GPL0x53c4a188eventfd_fgetvmlinuxEXPORT_SYMBOL_GPL0xfe65761ddget_parentvmlinuxEXPORT_SYMBOL0xe87a640bwl1251_init_ieee80211drivers/net/wireless/wl1251/wl1251EXPORT_SYMBOL_GPL0xff273291wiphy_newvmlinuxEXPORT_SYMBOL0x44c3ee50snd_pcm_mmap_datavmlinuxEXPORT_SYMBOL0x434d8badhid_dump_inputvmlinuxEXPORT_SYMBOL_GPL0x27343b04dm_requeue_unmapped_requestvmlinuxEXPORT_SYMBOL_GPL0x6805afecv4l2_int_ioctl_1vmlinuxEXPORT_SYMBOL_GPL0x0ee28262usb_get_devvmlinuxEXPORT_SYMBOL_GPL0xc986c872securityfs_create_dirvmlinuxEXPORT_SYMBOL_GPL0x258ebb73mb_cache_createvmlinuxEXPORT_SYMBOL0xe99b08e9iuniquevmlinuxEXPORT_SYMBOL0x01a4ea6dunregister_die_notifiervmlinuxEXPORT_SYMBOL_GPL0x58b78dbbsnd_ac97_tune_hardwaresound/pci/ac97/snd-ac97-codecEXPORT_SYMBOL0x619b2953rt2x00queue_start_queuedrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xe0ee48a7ath9k_hw_btcoex_init_mcidrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x5614b010xfrm_policy_walk_donevmlinuxEXPORT_SYMBOL0xb792a6a0inet_dgram_opsvmlinuxEXPORT_SYMBOL0xe6baa0c2w1_write_8vmlinuxEXPORT_SYMBOL_GPL0x766d7236input_release_devicevmlinuxEXPORT_SYMBOL0xddd599c0ata_dev_nextvmlinuxEXPORT_SYMBOL_GPL0x5fd7d87bscsi_put_commandvmlinuxEXPORT_SYMBOL0xcf37154ablk_alloc_queuevmlinuxEXPORT_SYMBOL0x7cb980ffnfs4_schedule_stateid_recoveryvmlinuxEXPORT_SYMBOL_GPL0xed692c0dmb_cache_destroyvmlinuxEXPORT_SYMBOL0x80ee118cip_set_nfnl_getnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x7762965eip_set_nfnl_putnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x050ec8cdiio_free_devicedrivers/staging/iio/industrialioEXPORT_SYMBOL0xfd26f924dm_bufio_client_createdrivers/md/dm-bufioEXPORT_SYMBOL_GPL0x0903c239vid_from_regdrivers/hwmon/hwmon-vidEXPORT_SYMBOL0x6b8bb85bsnd_soc_unregister_cardvmlinuxEXPORT_SYMBOL_GPL0x41da3565get_gendiskvmlinuxEXPORT_SYMBOL0x99bfbe39get_unused_fdvmlinuxEXPORT_SYMBOL0x7a50a315files_lglock_global_unlock_onlinevmlinuxEXPORT_SYMBOL0x8a720226proc_doulongvec_minmaxvmlinuxEXPORT_SYMBOL0xa11aefb0rt2x00mac_set_timdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xd49ceabeath9k_hw_set_txq_propsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x50a169ffath9k_hw_get_txq_propsdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xf3a5efaedrm_fb_helper_blankdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x4dadd4d0drm_connector_attach_propertydrivers/gpu/drm/drmEXPORT_SYMBOL0xc33b5eb0drm_vblank_post_modesetdrivers/gpu/drm/drmEXPORT_SYMBOL0x93382fa6ieee80211_bss_get_ievmlinuxEXPORT_SYMBOL0xab1c6acetcp_proc_unregistervmlinuxEXPORT_SYMBOL0x909a8b04hwmon_device_registervmlinuxEXPORT_SYMBOL_GPL0xe8a2ce28usb_store_new_idvmlinuxEXPORT_SYMBOL_GPL0xf8ce6072sdev_evt_send_simplevmlinuxEXPORT_SYMBOL_GPL0x4fb38a02simple_attr_openvmlinuxEXPORT_SYMBOL_GPL0x56e9103bcpu_pm_entervmlinuxEXPORT_SYMBOL_GPL0x05fb14e5__wake_up_locked_keyvmlinuxEXPORT_SYMBOL_GPL0x2d1b02d2usermodehelper_read_lock_waitvmlinuxEXPORT_SYMBOL_GPL0x33e3f37bsas_ssp_task_responsedrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0xf4d5a0d4dvb_usb_generic_rwdrivers/media/dvb/dvb-usb/dvb-usbEXPORT_SYMBOL0x7074a52fusb_root_hub_lost_powervmlinuxEXPORT_SYMBOL_GPL0x85c10896rcu_batches_completed_bhvmlinuxEXPORT_SYMBOL_GPL0x9116586fcgroup_pathvmlinuxEXPORT_SYMBOL_GPL0x4578f528__kfifo_to_uservmlinuxEXPORT_SYMBOL0xcc7fa952local_bh_enable_ipvmlinuxEXPORT_SYMBOL0xbdf94507gpio_read_one_pin_valuevmlinuxEXPORT_SYMBOL0x47dc5bceceph_con_closenet/ceph/libcephEXPORT_SYMBOL0x7667dd41dibusb_pid_filterdrivers/media/dvb/dvb-usb/dvb-usb-dibusb-commonEXPORT_SYMBOL0x5983341cxfrm4_rcv_encapvmlinuxEXPORT_SYMBOL0xd8d1c977udp_pollvmlinuxEXPORT_SYMBOL0xc12077b8skb_copy_ubufsvmlinuxEXPORT_SYMBOL_GPL0x8642117dUSBC_Host_WriteDataStatusvmlinuxEXPORT_SYMBOL0x49d2ce41USBC_Dev_SetAddress_defaultvmlinuxEXPORT_SYMBOL0xfd6b3d0cposix_acl_from_modevmlinuxEXPORT_SYMBOL0x51ef33b8kstrndupvmlinuxEXPORT_SYMBOL0xa5194a0cirq_set_chipvmlinuxEXPORT_SYMBOL0xa8279536console_stopvmlinuxEXPORT_SYMBOL0x5a64c2bbwm_hubs_handle_analogue_pdatasound/soc/codecs/snd-soc-wm-hubsEXPORT_SYMBOL_GPL0xc398942anf_conntrack_tuple_takennet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x40d7b3admfd_add_devicesdrivers/mfd/mfd-coreEXPORT_SYMBOL0x8a1a99ad__serpent_decryptcrypto/serpent_genericEXPORT_SYMBOL_GPL0x40505b01inet6_getnamevmlinuxEXPORT_SYMBOL0x01793f95snd_device_registervmlinuxEXPORT_SYMBOL0xaf62f424sata_pmp_port_opsvmlinuxEXPORT_SYMBOL_GPL0x9c9f8c48__sunxi_gpio_pull_getvmlinuxEXPORT_SYMBOL_GPL0xd4fab45a__sunxi_gpio_pull_setvmlinuxEXPORT_SYMBOL_GPL0x19347fdegpio_get_all_pin_statusvmlinuxEXPORT_SYMBOL0xa2d623f3ip_set_range_to_cidrnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xcaa72f1busb_wwan_ioctldrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x74795e4eregister_mtd_userdrivers/mtd/mtdEXPORT_SYMBOL_GPL0xd7a9c0fbdrm_mode_config_resetdrivers/gpu/drm/drmEXPORT_SYMBOL0x0b99f7a2sunrpc_init_cache_detailvmlinuxEXPORT_SYMBOL_GPL0x1e6af3a3xdr_encode_wordvmlinuxEXPORT_SYMBOL_GPL0xa29cb5ffauth_domain_findvmlinuxEXPORT_SYMBOL_GPL0x4fdc945dsata_deb_timing_normalvmlinuxEXPORT_SYMBOL_GPL0xa50e865ddebugfs_create_filevmlinuxEXPORT_SYMBOL_GPL0x9c965784new_inodevmlinuxEXPORT_SYMBOL0x9d1d73f7__uio_register_devicedrivers/uio/uioEXPORT_SYMBOL_GPL0x53ab9a7drpc_restart_call_preparevmlinuxEXPORT_SYMBOL_GPL0x8c404876snd_ctl_find_idvmlinuxEXPORT_SYMBOL0x28a2ed02scsi_build_sense_buffervmlinuxEXPORT_SYMBOL0xa190b534tty_port_closevmlinuxEXPORT_SYMBOL0x65dccf13xz_dec_endvmlinuxEXPORT_SYMBOL0xf9348cbcxz_dec_runvmlinuxEXPORT_SYMBOL0x966fdf08idr_get_newvmlinuxEXPORT_SYMBOL0xf04c2f83ida_get_newvmlinuxEXPORT_SYMBOL0xe0b13336argv_freevmlinuxEXPORT_SYMBOL0x3bfa0d4ajbd2_journal_clear_errvmlinuxEXPORT_SYMBOL0x3240c65bfiles_lglock_global_lock_onlinevmlinuxEXPORT_SYMBOL0xa2a98b91ipmi_get_maintenance_modedrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xb3353dbfgenl_unregister_familyvmlinuxEXPORT_SYMBOL0xfe769456unregister_netdevice_notifiervmlinuxEXPORT_SYMBOL0xf2e2995cmmc_suspend_hostvmlinuxEXPORT_SYMBOL0x9b76b335tty_register_drivervmlinuxEXPORT_SYMBOL0xae5d4ba5ceph_auth_destroy_authorizernet/ceph/libcephEXPORT_SYMBOL0x2eec6d43sdio_release_hostvmlinuxEXPORT_SYMBOL_GPL0x890123c5axp_register_notifiervmlinuxEXPORT_SYMBOL_GPL0x58d5f96dv4l2_fh_initvmlinuxEXPORT_SYMBOL_GPL0xdf4fc76fv4l2_fh_exitvmlinuxEXPORT_SYMBOL_GPL0x6f814e86driver_remove_filevmlinuxEXPORT_SYMBOL_GPL0x7a51c050kset_unregistervmlinuxEXPORT_SYMBOL0xda241871debugfs_create_u32vmlinuxEXPORT_SYMBOL_GPL0x630b5787llc_build_and_send_ui_pktnet/llc/llcEXPORT_SYMBOL0xbdcb92bfcore_tpg_del_initiator_node_acldrivers/target/target_core_modEXPORT_SYMBOL0x35af1d00hostap_remove_interfacedrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x8914bcc8register_net_sysctl_rotablevmlinuxEXPORT_SYMBOL_GPL0xd22475d8netdev_rx_handler_registervmlinuxEXPORT_SYMBOL_GPL0x0ef06974spi_populate_ppr_msgvmlinuxEXPORT_SYMBOL_GPL0x65d8a163jbd2_journal_release_jbd_inodevmlinuxEXPORT_SYMBOL0x44b79e6crt2800_get_tsfdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x12b56fcainet_csk_reset_keepalive_timervmlinuxEXPORT_SYMBOL0x0bf1115asw_hcd_stopvmlinuxEXPORT_SYMBOL0x8fddad63user_readvmlinuxEXPORT_SYMBOL_GPL0x53326531mempool_alloc_pagesvmlinuxEXPORT_SYMBOL0x47939e0d__tasklet_hi_schedulevmlinuxEXPORT_SYMBOL0x029c287ext_register_matchesnet/netfilter/x_tablesEXPORT_SYMBOL0x845a590dfcoe_fc_crcdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0x2859f1cbcx24123_get_tuner_i2c_adapterdrivers/media/dvb/frontends/cx24123EXPORT_SYMBOL0x3c207a2cread_bytes_from_xdr_bufvmlinuxEXPORT_SYMBOL_GPL0x2e10f171arp_sendvmlinuxEXPORT_SYMBOL0x8c4181ecroccat_report_eventvmlinuxEXPORT_SYMBOL_GPL0x3ed63055zlib_inflateResetvmlinuxEXPORT_SYMBOL0xb19760c3bitmap_ontovmlinuxEXPORT_SYMBOL0xd58356ddblkio_root_cgroupvmlinuxEXPORT_SYMBOL_GPL0x30b47213cdev_delvmlinuxEXPORT_SYMBOL0x281823c5__kfifo_out_peekvmlinuxEXPORT_SYMBOL0x71b34b7bssb_driver_unregisterdrivers/ssb/ssbEXPORT_SYMBOL0x57264f5craid_component_adddrivers/scsi/raid_classEXPORT_SYMBOL0x0c9772b6ar9003_paprd_setup_gain_tabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xf44bc3acasync_xorcrypto/async_tx/async_xorEXPORT_SYMBOL_GPL0xbb0eba98tcp_seq_openvmlinuxEXPORT_SYMBOL0x1b42d505pneigh_enqueuevmlinuxEXPORT_SYMBOL0x01ee8397dev_alloc_namevmlinuxEXPORT_SYMBOL0x1310254eUSBC_exitvmlinuxEXPORT_SYMBOL0xcc6ef184soft_cursorvmlinuxEXPORT_SYMBOL0x186af0a9iov_iter_copy_from_uservmlinuxEXPORT_SYMBOL0x89d8df0ausbip_recvdrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x4535764fi2400m_releasedrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0xb9a6ecf8dm_tm_decdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x09472122dm_rh_decdrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x2222fd85generic_fh_to_dentryvmlinuxEXPORT_SYMBOL_GPL0x70d053fdtry_to_del_timer_syncvmlinuxEXPORT_SYMBOL0x4ffe00b6nf_ct_expect_related_reportnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xb4b94377__nand_correct_datadrivers/mtd/nand/nand_eccEXPORT_SYMBOL0x352c3a9dsvc_addsockvmlinuxEXPORT_SYMBOL_GPL0x72b8d082ipcomp_outputvmlinuxEXPORT_SYMBOL_GPL0x2fa8d4d5__pskb_copyvmlinuxEXPORT_SYMBOL0xb60d0148dm_unregister_targetvmlinuxEXPORT_SYMBOL0xe9a1efe0usb_stor_bulk_transfer_bufvmlinuxEXPORT_SYMBOL_GPL0xb4b554bftty_init_termiosvmlinuxEXPORT_SYMBOL_GPL0xd3dcab0bflex_array_allocvmlinuxEXPORT_SYMBOL0xdad6a502blk_queue_bouncevmlinuxEXPORT_SYMBOL0x97b13dad__clocksource_register_scalevmlinuxEXPORT_SYMBOL_GPL0x2f2959c9iio_st_channel_getdrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0xf1844b80mtd_readdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x3c240c75dvb_dmx_releasedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x0dbee91atcp_get_md5sig_poolvmlinuxEXPORT_SYMBOL0xfc3d8b6etimed_output_dev_unregistervmlinuxEXPORT_SYMBOL_GPL0x827fc1e4mmc_pm_powervmlinuxEXPORT_SYMBOL0x813ae682ata_sas_port_destroyvmlinuxEXPORT_SYMBOL_GPL0xae162dceread_dev_sectorvmlinuxEXPORT_SYMBOL0x4de4f089scsi_cmd_blk_ioctlvmlinuxEXPORT_SYMBOL0x098914d5crypto_alloc_instance2vmlinuxEXPORT_SYMBOL_GPL0x61bf479fjbd2_journal_revokevmlinuxEXPORT_SYMBOL0x038520a5config_group_find_itemvmlinuxEXPORT_SYMBOL0x14db9530pm_disable_watchdogvmlinuxEXPORT_SYMBOL0x2dceb02aceph_monc_do_statfsnet/ceph/libcephEXPORT_SYMBOL0xebe37deabrcmu_pkt_buf_free_skbdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x7b7dda07sms_board_powerdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xb8abf0a6usb_ifnum_to_ifvmlinuxEXPORT_SYMBOL_GPL0xda59a874debugfs_create_x16vmlinuxEXPORT_SYMBOL_GPL0x8df1ca8djournal_createvmlinuxEXPORT_SYMBOL0xdceaa027hashbin_lock_findnet/irda/irdaEXPORT_SYMBOL0xd292c86ciscsi_tcp_cleanup_taskdrivers/scsi/libiscsi_tcpEXPORT_SYMBOL_GPL0xa76f826fenclosure_finddrivers/misc/enclosureEXPORT_SYMBOL_GPL0x1ccc4786af_alg_unregister_typecrypto/af_algEXPORT_SYMBOL_GPL0x842f7090inet6_destroy_sockvmlinuxEXPORT_SYMBOL_GPL0xc4bd15cbsnd_rawmidi_transmitvmlinuxEXPORT_SYMBOL0x0bccb93acdrom_mode_sensevmlinuxEXPORT_SYMBOL0x061651bestrcatvmlinuxEXPORT_SYMBOL0xfea1042dqtree_delete_dquotvmlinuxEXPORT_SYMBOL0xc3a66bf1dqstatsvmlinuxEXPORT_SYMBOL0xc4f0c21cmb_cache_entry_releasevmlinuxEXPORT_SYMBOL0x94db5883bio_integrity_set_tagvmlinuxEXPORT_SYMBOL0x229736fbbio_integrity_get_tagvmlinuxEXPORT_SYMBOL0x74c97f9c_raw_spin_unlock_irqrestorevmlinuxEXPORT_SYMBOL0x8c4e37e4iscsi_conn_send_pdudrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x967d4265v4l2_ctrl_log_statusvmlinuxEXPORT_SYMBOL0xf9cd0d0cusb_gadget_unregister_drivervmlinuxEXPORT_SYMBOL_GPL0x905ee2cedma_buf_kunmapvmlinuxEXPORT_SYMBOL_GPL0x7f4b3e20crypto_register_shashvmlinuxEXPORT_SYMBOL_GPL0x689462ebjbd2_journal_get_write_accessvmlinuxEXPORT_SYMBOL0xa8155e08jbd2_journal_invalidatepagevmlinuxEXPORT_SYMBOL0xa1dbc2d8ip_vs_proto_namenet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0x800ce70agre_add_protocolnet/ipv4/greEXPORT_SYMBOL_GPL0xf8c67725fc_fabric_logindrivers/scsi/libfc/libfcEXPORT_SYMBOL0x134e81a8inet6_unregister_protoswvmlinuxEXPORT_SYMBOL0x66310fecnf_register_hooksvmlinuxEXPORT_SYMBOL0x7880c781dm_kcopyd_prepare_callbackvmlinuxEXPORT_SYMBOL0xf202c5cbradix_tree_insertvmlinuxEXPORT_SYMBOL0x84d6cd58vfs_listxattrvmlinuxEXPORT_SYMBOL_GPL0x52428cc8parent_mem_cgroupvmlinuxEXPORT_SYMBOL0xd583beacfind_get_pages_contigvmlinuxEXPORT_SYMBOL0xaeb8681dieee80211_tx_statusnet/mac80211/mac80211EXPORT_SYMBOL0x97713acfrt2800_probe_hw_modedrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x6ea6abf6usbnet_defer_keventdrivers/net/usb/usbnetEXPORT_SYMBOL_GPL0x233d04afmtd_write_user_prot_regdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x388f9128xfrm_state_walk_donevmlinuxEXPORT_SYMBOL0xd81db66cqdisc_create_dfltvmlinuxEXPORT_SYMBOL0xe2b92059v4l2_video_std_constructvmlinuxEXPORT_SYMBOL0xd54f8960uart_add_one_portvmlinuxEXPORT_SYMBOL0x7a27c184ewma_initvmlinuxEXPORT_SYMBOL0xa3dfba78key_putvmlinuxEXPORT_SYMBOL0x517786efbmapvmlinuxEXPORT_SYMBOL0xe2fae716kmemdupvmlinuxEXPORT_SYMBOL0x93850729__blocking_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0xe8267620osd_req_read_sg_kerndrivers/scsi/osd/libosdEXPORT_SYMBOL0xa4c55006hostap_get_porttypedrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0xfa4315a9drm_mode_vrefreshdrivers/gpu/drm/drmEXPORT_SYMBOL0x90e3da26drm_mode_set_crtcinfodrivers/gpu/drm/drmEXPORT_SYMBOL0x49f3c88d_copy_from_pagesvmlinuxEXPORT_SYMBOL_GPL0xcece835csnd_soc_dapm_disable_pinvmlinuxEXPORT_SYMBOL_GPL0x4997f802USBC_DisableIdPullUpvmlinuxEXPORT_SYMBOL0x6cef247f__strnlen_uservmlinuxEXPORT_SYMBOL0xe98769ebnf_conntrack_allocnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xd760286d__ssb_driver_registerdrivers/ssb/ssbEXPORT_SYMBOL0xd83783e9iscsi_host_freedrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x1c1e8942dib7000p_set_wbd_refdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x4f37b43etda827x_attachdrivers/media/common/tuners/tda827xEXPORT_SYMBOL_GPL0xdff41f7btcp_register_congestion_controlvmlinuxEXPORT_SYMBOL_GPL0xef1d6459tcp_gro_completevmlinuxEXPORT_SYMBOL0xa02d89c7media_entity_setup_linkvmlinuxEXPORT_SYMBOL_GPL0x0668eb8edma_buf_fdvmlinuxEXPORT_SYMBOL_GPL0x4d974b9cregister_sysrq_keyvmlinuxEXPORT_SYMBOL0xd0f2894ftimerqueue_addvmlinuxEXPORT_SYMBOL_GPL0x898b22bdsync_filesystemvmlinuxEXPORT_SYMBOL_GPL0x7893a120stv0299_attachdrivers/media/dvb/frontends/stv0299EXPORT_SYMBOL0xc8ff0cedstb0899_attachdrivers/media/dvb/frontends/stb0899EXPORT_SYMBOL0xa651cf75drxd_config_i2cdrivers/media/dvb/frontends/drxdEXPORT_SYMBOL0x85c91310tcp_connectvmlinuxEXPORT_SYMBOL0xef6203cbneigh_table_clearvmlinuxEXPORT_SYMBOL0x71aadfc8led_trigger_eventvmlinuxEXPORT_SYMBOL_GPL0x9d3f3d71thermal_zone_bind_cooling_devicevmlinuxEXPORT_SYMBOL0xcf619de9do_munmapvmlinuxEXPORT_SYMBOL0x033d92feclk_set_parentvmlinuxEXPORT_SYMBOL0x7db194baclk_get_parentvmlinuxEXPORT_SYMBOL0x076227bbdrm_fb_helper_fill_vardrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xd05dc2a3xfrm_aalg_get_bynamevmlinuxEXPORT_SYMBOL_GPL0x788e1ee6xfrm_state_flushvmlinuxEXPORT_SYMBOL0x94098ff8snd_interval_listvmlinuxEXPORT_SYMBOL0x4d8fc1b2mmc_align_data_sizevmlinuxEXPORT_SYMBOL0x705b1d64fuse_put_requestvmlinuxEXPORT_SYMBOL_GPL0x07a5968cfat_flush_inodesvmlinuxEXPORT_SYMBOL_GPL0x64335661__dquot_alloc_spacevmlinuxEXPORT_SYMBOL0x5fff3fe3xfrm_find_acq_byseqvmlinuxEXPORT_SYMBOL0xa2673432xfrm_policy_unregister_afinfovmlinuxEXPORT_SYMBOL0xb25cb181__rtnl_af_registervmlinuxEXPORT_SYMBOL_GPL0x09c55cecschedule_timeout_interruptiblevmlinuxEXPORT_SYMBOL0x361e2bccsave_stack_tracevmlinuxEXPORT_SYMBOL_GPL0x99845abahdlc_ioctldrivers/net/wan/hdlcEXPORT_SYMBOL0x208ee440snd_ctl_make_virtual_mastervmlinuxEXPORT_SYMBOL0xbb0b4ef2dma_buf_attachvmlinuxEXPORT_SYMBOL_GPL0x29e595bfdma_buf_detachvmlinuxEXPORT_SYMBOL_GPL0x1ace138dbitmap_allocate_regionvmlinuxEXPORT_SYMBOL0x250113b4memory_read_from_buffervmlinuxEXPORT_SYMBOL0xc96d46f6ieee80211_probereq_getnet/mac80211/mac80211EXPORT_SYMBOL0x7804eba4ieee80211_send_barnet/mac80211/mac80211EXPORT_SYMBOL0xd9d4d33ehci_alloc_devnet/bluetooth/bluetoothEXPORT_SYMBOL0x6b6d7375drm_timestamp_precisiondrivers/gpu/drm/drmEXPORT_SYMBOL0xbb5d343dxfrm_get_acqseqvmlinuxEXPORT_SYMBOL0x4bd999eddw_spi_add_hostvmlinuxEXPORT_SYMBOL_GPL0x50966177__scsi_iterate_devicesvmlinuxEXPORT_SYMBOL0x8d104f37svc_reservevmlinuxEXPORT_SYMBOL_GPL0xc4cb7b77bitmap_cond_end_syncvmlinuxEXPORT_SYMBOL0xb94d9149spi_register_drivervmlinuxEXPORT_SYMBOL_GPL0x3e3b8039platform_busvmlinuxEXPORT_SYMBOL_GPL0x2752fe2cblk_queue_bounce_limitvmlinuxEXPORT_SYMBOL0xaea7a8b8iscsi_host_for_each_sessiondrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0xd31b0215nand_scan_identdrivers/mtd/nand/nandEXPORT_SYMBOL0x91f7c898netpoll_setupvmlinuxEXPORT_SYMBOL0xef7bf41eskb_abort_seq_readvmlinuxEXPORT_SYMBOL0x73305f00snd_soc_cnewvmlinuxEXPORT_SYMBOL_GPL0x2b0ba2b0scsi_sense_desc_findvmlinuxEXPORT_SYMBOL0x06fe3b14default_grnvmlinuxEXPORT_SYMBOL0xfb18ea39ioc_cgroup_changedvmlinuxEXPORT_SYMBOL0x5e6a5dc1journal_destroyvmlinuxEXPORT_SYMBOL0x38cdda7bjournal_restartvmlinuxEXPORT_SYMBOL0x14b4808bieee80211_rate_control_unregisternet/mac80211/mac80211EXPORT_SYMBOL0x4e6a00dbosd_req_add_get_attr_listdrivers/scsi/osd/libosdEXPORT_SYMBOL0x07f621dfosd_req_add_set_attr_listdrivers/scsi/osd/libosdEXPORT_SYMBOL0x3cbd8262rt2x00usb_watchdogdrivers/net/wireless/rt2x00/rt2x00usbEXPORT_SYMBOL_GPL0x66cc07cahostap_setup_devdrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x731ccff9drm_property_create_rangedrivers/gpu/drm/drmEXPORT_SYMBOL0x811b79acinet6_ioctlvmlinuxEXPORT_SYMBOL0x9ce4f3c3tcp_getsockoptvmlinuxEXPORT_SYMBOL0x0358327dtcp_setsockoptvmlinuxEXPORT_SYMBOL0x83890af9rtnl_unicastvmlinuxEXPORT_SYMBOL0x4b2cc24esnd_soc_update_bits_lockedvmlinuxEXPORT_SYMBOL_GPL0x6ef8fcd8snd_pcm_format_linearvmlinuxEXPORT_SYMBOL0xcba94f32alloc_disk_nodevmlinuxEXPORT_SYMBOL0x6785cee8fuse_get_reqvmlinuxEXPORT_SYMBOL_GPL0x8949858bschedule_workvmlinuxEXPORT_SYMBOL0xabd79eb5dequeue_signalvmlinuxEXPORT_SYMBOL_GPL0x76303bd2rt2x00mac_startdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x4ec66c68__rtnl_af_unregistervmlinuxEXPORT_SYMBOL_GPL0xaa3d7bacskb_gro_reset_offsetvmlinuxEXPORT_SYMBOL0xbcd38295crypto_ablkcipher_typevmlinuxEXPORT_SYMBOL_GPL0xceee0928ieee80211_iter_keysnet/mac80211/mac80211EXPORT_SYMBOL0x558efcd1ip6t_register_tablenet/ipv6/netfilter/ip6_tablesEXPORT_SYMBOL0x8a87e724try_test_sas_gpio_gp_bitdrivers/scsi/libsas/libsasEXPORT_SYMBOL0xbca8f3fbtveeprom_hauppauge_analogdrivers/media/video/tveepromEXPORT_SYMBOL0x8636a360drm_usb_exitdrivers/gpu/drm/drm_usbEXPORT_SYMBOL0x65e4adcfdrm_usb_initdrivers/gpu/drm/drm_usbEXPORT_SYMBOL0x0067df75ata_tf_from_fisvmlinuxEXPORT_SYMBOL_GPL0x2596d2fccrypto_tfm_in_queuevmlinuxEXPORT_SYMBOL_GPL0x62172237fget_rawvmlinuxEXPORT_SYMBOL0xb6659215atomic_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x290847f0lbs_process_rxed_packetdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xa91e57d4tda10071_attachdrivers/media/dvb/frontends/tda10071EXPORT_SYMBOL0xadf87fdfcx22702_attachdrivers/media/dvb/frontends/cx22702EXPORT_SYMBOL0xb56f2cf3cfg80211_send_unprot_deauthvmlinuxEXPORT_SYMBOL0xd5ddb90fspi_add_devicevmlinuxEXPORT_SYMBOL_GPL0x7cc552e8backlight_device_unregistervmlinuxEXPORT_SYMBOL0x38274b75unregister_mtd_userdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x29511802videobuf_to_dma_contigdrivers/media/video/videobuf-dma-contigEXPORT_SYMBOL_GPL0x524f6f51ipmi_get_my_addressdrivers/char/ipmi/ipmi_msghandlerEXPORT_SYMBOL0xc0763484rfkill_blockedvmlinuxEXPORT_SYMBOL0xfc02b7adsysctl_tcp_wmemvmlinuxEXPORT_SYMBOL0x72426c3bnf_unregister_hookvmlinuxEXPORT_SYMBOL0xe225343fnapi_frags_skbvmlinuxEXPORT_SYMBOL0x2e5423bddev_change_net_namespacevmlinuxEXPORT_SYMBOL_GPL0xbcb1ab02usb_set_transceivervmlinuxEXPORT_SYMBOL0x4a0dc160usb_get_transceivervmlinuxEXPORT_SYMBOL0x80c1476cblk_queue_flush_queueablevmlinuxEXPORT_SYMBOL_GPL0x300f4f7eblk_queue_rq_timeoutvmlinuxEXPORT_SYMBOL_GPL0x7f180c0cflush_kernel_dcache_pagevmlinuxEXPORT_SYMBOL0x88649349mwifiex_init_shutdown_fwdrivers/net/wireless/mwifiex/mwifiexEXPORT_SYMBOL_GPL0xa833a0e1lbs_queue_eventdrivers/net/wireless/libertas/libertasEXPORT_SYMBOL_GPL0xe688c247hostap_set_antseldrivers/net/wireless/hostap/hostapEXPORT_SYMBOL0x71de0addxdr_init_decode_pagesvmlinuxEXPORT_SYMBOL_GPL0xb4406863tcp_twsk_destructorvmlinuxEXPORT_SYMBOL_GPL0xda772c50scm_detach_fdsvmlinuxEXPORT_SYMBOL0x999f3efcmd_write_endvmlinuxEXPORT_SYMBOL0x3330295bmedia_entity_create_linkvmlinuxEXPORT_SYMBOL_GPL0x1172ce54rtc_ktime_to_tmvmlinuxEXPORT_SYMBOL_GPL0x6e823f80usb_stor_pre_resetvmlinuxEXPORT_SYMBOL_GPL0xc1b51cd5pwm_set_duty_nsvmlinuxEXPORT_SYMBOL0xfe420798put_pidvmlinuxEXPORT_SYMBOL_GPL0x606913abrt2x00queue_start_queuesdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0x5e9746e5pmbus_read_word_datadrivers/hwmon/pmbus/pmbus_coreEXPORT_SYMBOL_GPL0xa286a234snd_pcm_format_namevmlinuxEXPORT_SYMBOL_GPL0x45c149f4sw_usb_device_disablevmlinuxEXPORT_SYMBOL0x4445b335regmap_bulk_readvmlinuxEXPORT_SYMBOL_GPL0x2424b53adriver_find_devicevmlinuxEXPORT_SYMBOL_GPL0x496992d6posix_clock_registervmlinuxEXPORT_SYMBOL_GPL0xa30ba4c5llc_sap_list_locknet/llc/llcEXPORT_SYMBOL0xbb99125cget_default_fontvmlinuxEXPORT_SYMBOL0xa33c3b38blk_get_requestvmlinuxEXPORT_SYMBOL0x4144ae74ath9k_hw_set_rx_bufsizedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xc50777e5sms_board_lna_controldrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x75ebf101cfg80211_inform_bssvmlinuxEXPORT_SYMBOL0x6e7474fcxfrm_ealg_get_byidvmlinuxEXPORT_SYMBOL_GPL0x59da6024__cpufreq_driver_getavgvmlinuxEXPORT_SYMBOL_GPL0x236ecebcdevice_pm_wait_for_devvmlinuxEXPORT_SYMBOL_GPL0x71dc9998crypto_il_tabvmlinuxEXPORT_SYMBOL_GPL0x0cc1e40fcrypto_it_tabvmlinuxEXPORT_SYMBOL_GPL0x3dc916b6crypto_fl_tabvmlinuxEXPORT_SYMBOL_GPL0x40d46b21crypto_ft_tabvmlinuxEXPORT_SYMBOL_GPL0xfac860dbdown_timeoutvmlinuxEXPORT_SYMBOL0x98111fdbnfnetlink_has_listenersnet/netfilter/nfnetlinkEXPORT_SYMBOL_GPL0x945c419acpufreq_frequency_table_targetvmlinuxEXPORT_SYMBOL_GPL0xbe5bc4ceahci_opsvmlinuxEXPORT_SYMBOL_GPL0x50fa5593ata_wait_after_resetvmlinuxEXPORT_SYMBOL_GPL0xf5849ebeblkiocg_update_io_remove_statsvmlinuxEXPORT_SYMBOL_GPL0xe5657513__fscache_attr_changedvmlinuxEXPORT_SYMBOL0x3bd1b1f6msecs_to_jiffiesvmlinuxEXPORT_SYMBOL0xc815d4admt2063_attachdrivers/media/common/tuners/mt2063EXPORT_SYMBOL_GPL0xa5ac2f76snd_pcm_suspend_allvmlinuxEXPORT_SYMBOL0x761ad6dcmisc_deregistervmlinuxEXPORT_SYMBOL0x605023c0blkdev_fsyncvmlinuxEXPORT_SYMBOL0xa69d27a7lookup_one_lenvmlinuxEXPORT_SYMBOL0xa3b2fac7relay_buf_fullvmlinuxEXPORT_SYMBOL_GPL0x013e87f3sas_port_get_phydrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0xe0f602a6inet6_bindvmlinuxEXPORT_SYMBOL0x3e45e9ffregister_inetaddr_notifiervmlinuxEXPORT_SYMBOL0x7afc9d8aunregister_sound_mixervmlinuxEXPORT_SYMBOL0x5790910baxp_clr_bitsvmlinuxEXPORT_SYMBOL_GPL0x4351577afb_parse_edidvmlinuxEXPORT_SYMBOL0x2f834f49atomic_dec_and_mutex_lockvmlinuxEXPORT_SYMBOL0xcbf3ebebieee80211_ap_probereq_getnet/mac80211/mac80211EXPORT_SYMBOL0xebcebb78snd_pcm_lib_writevmlinuxEXPORT_SYMBOL0x746eddc0devres_getvmlinuxEXPORT_SYMBOL_GPL0xe617080cdevres_addvmlinuxEXPORT_SYMBOL_GPL0xa07d5f27journal_wipevmlinuxEXPORT_SYMBOL0x0cb93291nf_nat_sdp_session_hooknet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0x86b04750ieee80211_resume_disconnectnet/mac80211/mac80211EXPORT_SYMBOL_GPL0xafd7e876bt_accept_enqueuenet/bluetooth/bluetoothEXPORT_SYMBOL0x289fb044usb_wwan_startupdrivers/usb/serial/usb_wwanEXPORT_SYMBOL0x0c683821fc_host_post_vendor_eventdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0x26f0967bonenand_scandrivers/mtd/onenand/onenandEXPORT_SYMBOL_GPL0x1b238ae5sms_board_led_feedbackdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xc67e0875lgdt330x_attachdrivers/media/dvb/frontends/lgdt330xEXPORT_SYMBOL0x0f9e91b9lgdt3305_attachdrivers/media/dvb/frontends/lgdt3305EXPORT_SYMBOL0x03affb37ieee80211_data_to_8023vmlinuxEXPORT_SYMBOL0x489c374aaxp_gpio_get_valuevmlinuxEXPORT_SYMBOL_GPL0xedafd69aaxp_gpio_set_valuevmlinuxEXPORT_SYMBOL_GPL0x1f9de282v4l2_device_register_subdevvmlinuxEXPORT_SYMBOL_GPL0xba375f8esync_inodes_sbvmlinuxEXPORT_SYMBOL0x7485e15eunregister_chrdev_regionvmlinuxEXPORT_SYMBOL0x1b0d87d1generic_writepagesvmlinuxEXPORT_SYMBOL0x801fda3fceph_monc_validate_authnet/ceph/libcephEXPORT_SYMBOL0x50a8e30eregister_8022_clientnet/802/p8022EXPORT_SYMBOL0x1fa6da58sms_board_eventdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0x1ede64bcbcm3510_attachdrivers/media/dvb/frontends/bcm3510EXPORT_SYMBOL0x7b047bd9dm_tm_create_non_blocking_clonedrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0xd509c7abrpc_protocolvmlinuxEXPORT_SYMBOL_GPL0x06808d96gpiochip_is_requestedvmlinuxEXPORT_SYMBOL_GPL0xf1cf3036blk_set_default_limitsvmlinuxEXPORT_SYMBOL0x4081a3b5blk_init_allocated_queuevmlinuxEXPORT_SYMBOL0xcb99edb0posix_acl_equiv_modevmlinuxEXPORT_SYMBOL0xba95d3cbceph_pg_poolid_by_namenet/ceph/libcephEXPORT_SYMBOL0x62d9ebd0rtnl_registervmlinuxEXPORT_SYMBOL_GPL0xdc504f00snd_soc_info_enum_doublevmlinuxEXPORT_SYMBOL_GPL0x63a034b1ACE_ExitvmlinuxEXPORT_SYMBOL_GPL0xe2ae2ab6LCD_CPU_WR_DATAvmlinuxEXPORT_SYMBOL0xdf0a2d39lookup_bdevvmlinuxEXPORT_SYMBOL0x071b7eeairq_statvmlinuxEXPORT_SYMBOL0x719c39efceph_destroy_clientnet/ceph/libcephEXPORT_SYMBOL0x74da9809osd_req_read_kerndrivers/scsi/osd/libosdEXPORT_SYMBOL0x6958bda3videobuf_dvb_alloc_frontenddrivers/media/video/videobuf-dvbEXPORT_SYMBOL0xaea1b634btmrvl_remove_carddrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x25fbdea3raw_seq_stopvmlinuxEXPORT_SYMBOL_GPL0xe488d7c5gnet_stats_copy_basicvmlinuxEXPORT_SYMBOL0x1ab58f4epercpu_counter_destroyvmlinuxEXPORT_SYMBOL0x655a1ed2vm_map_ramvmlinuxEXPORT_SYMBOL0x45545ee8filemap_fdatawrite_rangevmlinuxEXPORT_SYMBOL0xc0cb02f4iscsi_conn_get_addr_paramdrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x6ce2f313rt2x00mac_get_ringparamdrivers/net/wireless/rt2x00/rt2x00libEXPORT_SYMBOL_GPL0xf21839b1tveeprom_readdrivers/media/video/tveepromEXPORT_SYMBOL0x1ca0c084cx2341x_log_statusdrivers/media/video/cx2341xEXPORT_SYMBOL0x926d48a1isl6423_attachdrivers/media/dvb/frontends/isl6423EXPORT_SYMBOL0x4c22b048inet_sendmsgvmlinuxEXPORT_SYMBOL0x2f7df07aip_cmsg_recvvmlinuxEXPORT_SYMBOL0xf38b75c0hidinput_report_eventvmlinuxEXPORT_SYMBOL_GPL0x00cd3f5bcrypto_alg_semvmlinuxEXPORT_SYMBOL_GPL0x5b9ca005bio_sector_offsetvmlinuxEXPORT_SYMBOL0x9e48098frpc_call_asyncvmlinuxEXPORT_SYMBOL_GPL0xe413be4amemcg_socket_limit_enabledvmlinuxEXPORT_SYMBOL0x32241593inverse_translatevmlinuxEXPORT_SYMBOL_GPL0xb53ae573cpu_idle_waitvmlinuxEXPORT_SYMBOL_GPL0x8d059e97ath9k_cmn_update_txpowdrivers/net/wireless/ath/ath9k/ath9k_commonEXPORT_SYMBOL0x6c5769eaaf_alg_free_sgcrypto/af_algEXPORT_SYMBOL_GPL0x530a2e0baf_alg_make_sgcrypto/af_algEXPORT_SYMBOL_GPL0x056ee730ipv6_hash_secretvmlinuxEXPORT_SYMBOL0x760b437aunregister_inetaddr_notifiervmlinuxEXPORT_SYMBOL0x48dc2ecaamba_release_regionsvmlinuxEXPORT_SYMBOL0x89d5538dfb_pad_aligned_buffervmlinuxEXPORT_SYMBOL0xd58a862bperf_event_enablevmlinuxEXPORT_SYMBOL_GPL0xc8fe4f61unregister_exec_domainvmlinuxEXPORT_SYMBOL0xe1891d8fdib0090_get_wbd_offsetdrivers/media/dvb/frontends/dib0090EXPORT_SYMBOL0x9232a7aenobh_write_beginvmlinuxEXPORT_SYMBOL0xd51c7659interruptible_sleep_on_timeoutvmlinuxEXPORT_SYMBOL0xba4f1383iscsi_register_transportdrivers/scsi/scsi_transport_iscsiEXPORT_SYMBOL_GPL0x2dc8f945rt2800_gain_calibrationdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x63e15891ath9k_hw_disabledrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xb66cd454ath_printkdrivers/net/wireless/ath/athEXPORT_SYMBOL0x8551d485netlink_ackvmlinuxEXPORT_SYMBOL0x5c904abbsock_no_bindvmlinuxEXPORT_SYMBOL0xcd21e380sock_get_timestampvmlinuxEXPORT_SYMBOL0x4211c3c1zlib_inflateInit2vmlinuxEXPORT_SYMBOL0x62fd6207param_set_charpvmlinuxEXPORT_SYMBOL0x5c4060e3iscsi_session_failuredrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x291af48cath9k_hw_resettxqueuedrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x61c7c085dm_tm_create_with_smdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x2316ccc0v4l2_event_unsubscribe_allvmlinuxEXPORT_SYMBOL_GPL0xb9391387USBC_EnterMode_Test_KvmlinuxEXPORT_SYMBOL0x713a3afabio_freevmlinuxEXPORT_SYMBOL0xef1c781cvid_which_vrmdrivers/hwmon/hwmon-vidEXPORT_SYMBOL0xb143c01fv4l2_event_queue_fhvmlinuxEXPORT_SYMBOL_GPL0xb335e91bata_sas_sync_probevmlinuxEXPORT_SYMBOL_GPL0xf3e4e2cdfb_sys_readvmlinuxEXPORT_SYMBOL_GPL0xf39fa6f0ircomm_connect_responsenet/irda/ircomm/ircommEXPORT_SYMBOL0x876c8d56fc_lport_bsg_requestdrivers/scsi/libfc/libfcEXPORT_SYMBOL0x5f6cbc33drm_find_cea_extensiondrivers/gpu/drm/drmEXPORT_SYMBOL0x4e569dda__put_netvmlinuxEXPORT_SYMBOL_GPL0x8df3789fsnd_oss_info_registervmlinuxEXPORT_SYMBOL0x2342f1aev4l2_prio_openvmlinuxEXPORT_SYMBOL0xa62fcbd0dmam_alloc_noncoherentvmlinuxEXPORT_SYMBOL0xf65957detransport_destroy_devicevmlinuxEXPORT_SYMBOL_GPL0x766c4b9bserial8250_tx_charsvmlinuxEXPORT_SYMBOL_GPL0x456d2ebffuse_request_allocvmlinuxEXPORT_SYMBOL_GPL0x6690e691ip_set_addnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0x7efeda64ip_set_delnet/netfilter/ipset/ip_setEXPORT_SYMBOL_GPL0xe3919ef7lro_flush_pktvmlinuxEXPORT_SYMBOL0x45ff0fc7tty_unregister_devicevmlinuxEXPORT_SYMBOL0xbf8ba54avprintkvmlinuxEXPORT_SYMBOL0x18cacf1b__udp4_lib_lookupvmlinuxEXPORT_SYMBOL_GPL0x2e2ce9e0sysctl_tcp_syncookiesvmlinuxEXPORT_SYMBOL0x23daf098tcp_pollvmlinuxEXPORT_SYMBOL0x8e7e7240USBC_Dev_ClearEpDmavmlinuxEXPORT_SYMBOL0xe3e0b4acUSBC_IsVbusChangevmlinuxEXPORT_SYMBOL0x2482e688vsprintfvmlinuxEXPORT_SYMBOL0x4ad4effegeneric_splice_sendpagevmlinuxEXPORT_SYMBOL0x2a39b7dcvideobuf_dvb_get_frontenddrivers/media/video/videobuf-dvbEXPORT_SYMBOL0x2b56250bgspca_resumedrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0x855313adem28xx_read_ac97drivers/media/video/em28xx/em28xxEXPORT_SYMBOL_GPL0x087dc228attribute_container_find_class_devicevmlinuxEXPORT_SYMBOL_GPL0xcb469d2bddebug_add_modulevmlinuxEXPORT_SYMBOL_GPL0x5989d830register_key_typevmlinuxEXPORT_SYMBOL0xee08cec1grab_cache_page_write_beginvmlinuxEXPORT_SYMBOL0xaca3b781rt_mutex_lock_interruptiblevmlinuxEXPORT_SYMBOL_GPL0x28118cb6__get_user_1vmlinuxEXPORT_SYMBOL0xbb72d4fe__put_user_1vmlinuxEXPORT_SYMBOL0xab8b703essb_chipco_gpio_controldrivers/ssb/ssbEXPORT_SYMBOL0x90496f0b__mtd_next_devicedrivers/mtd/mtdEXPORT_SYMBOL_GPL0x5211b654class_create_filevmlinuxEXPORT_SYMBOL_GPL0x0cae232butf16s_to_utf8svmlinuxEXPORT_SYMBOL0x5f9f2758__cond_resched_lockvmlinuxEXPORT_SYMBOL0x7cdfc121__put_task_structvmlinuxEXPORT_SYMBOL_GPL0x8e095210unregister_pernet_subsysvmlinuxEXPORT_SYMBOL_GPL0x3c01e3c6snd_rawmidi_output_paramsvmlinuxEXPORT_SYMBOL0x8bff6b1await_on_sync_kiocbvmlinuxEXPORT_SYMBOL0xfb40d87esimple_write_beginvmlinuxEXPORT_SYMBOL0xde3cd603redirty_page_for_writepagevmlinuxEXPORT_SYMBOL0x1e4d3cf7bdi_set_max_ratiovmlinuxEXPORT_SYMBOL0x8ffe7e89nf_conntrack_htable_sizenet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xb4672dc4ieee80211_ctstoself_getnet/mac80211/mac80211EXPORT_SYMBOL0xa336feb7nand_manuf_idsdrivers/mtd/nand/nand_idsEXPORT_SYMBOL0x2309a6d6tm6000_xc5000_callbackdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0x54c67126em28xx_register_extensiondrivers/media/video/em28xx/em28xxEXPORT_SYMBOL0x8903363enetdev_emergvmlinuxEXPORT_SYMBOL0xc96c14c5sk_stream_kill_queuesvmlinuxEXPORT_SYMBOL0xb920478bACE_HwRelvmlinuxEXPORT_SYMBOL_GPL0x5d8d9f83ACE_HwReqvmlinuxEXPORT_SYMBOL_GPL0xaa2ed6b8dw_spi_xfer_donevmlinuxEXPORT_SYMBOL_GPL0x592107efata_port_descvmlinuxEXPORT_SYMBOL_GPL0xb7ffb320dev_set_namevmlinuxEXPORT_SYMBOL_GPL0xeb37101caudit_log_endvmlinuxEXPORT_SYMBOL0x6d40a921need_ipv4_conntracknet/ipv4/netfilter/nf_conntrack_ipv4EXPORT_SYMBOL_GPL0x2d885580cfi_varsize_frobdrivers/mtd/chips/cfi_utilEXPORT_SYMBOL0x28ebc9efdrm_mm_scan_add_blockdrivers/gpu/drm/drmEXPORT_SYMBOL0x19347897__sk_dst_checkvmlinuxEXPORT_SYMBOL0x5891103cusb_queue_reset_devicevmlinuxEXPORT_SYMBOL_GPL0x554af85belv_register_queuevmlinuxEXPORT_SYMBOL0x716265c7debugfs_initializedvmlinuxEXPORT_SYMBOL_GPL0x36875389__timecompare_updatevmlinuxEXPORT_SYMBOL_GPL0x52efd766__kfifo_dma_in_preparevmlinuxEXPORT_SYMBOL0x1ffc70bcirias_insert_objectnet/irda/irdaEXPORT_SYMBOL0x6ad74666rt2800_conf_txdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0x89b611ddtm6000_debugdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0xa82b4030snd_pcm_lib_preallocate_pagesvmlinuxEXPORT_SYMBOL0x8762c67fusb_interrupt_msgvmlinuxEXPORT_SYMBOL_GPL0x9f559c44pm_generic_runtime_resumevmlinuxEXPORT_SYMBOL_GPL0xbc2bc698bus_unregistervmlinuxEXPORT_SYMBOL_GPL0x4c759827byte_rev_tablevmlinuxEXPORT_SYMBOL_GPL0xf6fdd1ba__elv_add_requestvmlinuxEXPORT_SYMBOL0x100e7afdskcipher_geniv_initvmlinuxEXPORT_SYMBOL_GPL0x7ce011a5set_bh_pagevmlinuxEXPORT_SYMBOL0xec4e50dffree_user_nsvmlinuxEXPORT_SYMBOL0x0f33f274ceph_osdc_stopnet/ceph/libcephEXPORT_SYMBOL0x11eab9fedm_bm_read_lockdrivers/md/persistent-data/dm-persistent-dataEXPORT_SYMBOL_GPL0x7a91726bclkdev_allocvmlinuxEXPORT_SYMBOL0xe914e41estrcpyvmlinuxEXPORT_SYMBOL0x2762f00acrypto_destroy_tfmvmlinuxEXPORT_SYMBOL_GPL0x731429c3filemap_faultvmlinuxEXPORT_SYMBOL0x3544feb6parport_ieee1284_read_bytedrivers/parport/parportEXPORT_SYMBOL0x818899d8parport_claim_or_blockdrivers/parport/parportEXPORT_SYMBOL0xfb87dc5dtm6000_set_regdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0xe6df83f0tm6000_get_regdrivers/media/video/tm6000/tm6000EXPORT_SYMBOL_GPL0x9eb8871faxp_unregister_notifiervmlinuxEXPORT_SYMBOL_GPL0x1bc3edc2usb_stor_sense_invalidCDBvmlinuxEXPORT_SYMBOL_GPL0xa56ac355tty_pair_get_ttyvmlinuxEXPORT_SYMBOL0xa3bd3721tty_pair_get_ptyvmlinuxEXPORT_SYMBOL0x975516cafb_get_buffer_offsetvmlinuxEXPORT_SYMBOL0xecc42ba5key_payload_reservevmlinuxEXPORT_SYMBOL0x108238d1blocking_notifier_chain_registervmlinuxEXPORT_SYMBOL_GPL0xe5ecb3f1nf_ct_insert_dying_listnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xc7e9782eieee80211_get_key_tx_seqnet/mac80211/mac80211EXPORT_SYMBOL0xddb47d52ieee80211_get_key_rx_seqnet/mac80211/mac80211EXPORT_SYMBOL0x850e84ceceph_monc_got_mdsmapnet/ceph/libcephEXPORT_SYMBOL0x475be702skb_unlinkvmlinuxEXPORT_SYMBOL0xb91cb886crypto_register_templatevmlinuxEXPORT_SYMBOL_GPL0xa1362de7fuse_abort_connvmlinuxEXPORT_SYMBOL_GPL0x39037116vm_iomap_memoryvmlinuxEXPORT_SYMBOL0xaab9f7e7node_statesvmlinuxEXPORT_SYMBOL0x6a5fb566rcu_sched_force_quiescent_statevmlinuxEXPORT_SYMBOL_GPL0x2dce6068ceph_auth_create_authorizernet/ceph/libcephEXPORT_SYMBOL0xb2e5ae4asnd_lookup_minor_datavmlinuxEXPORT_SYMBOL0x5641485btty_termios_encode_baud_ratevmlinuxEXPORT_SYMBOL_GPL0x5d62c078i2400m_resetdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x7778363cdrm_fb_helper_set_pardrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0xe4afd97einet_csk_delete_keepalive_timervmlinuxEXPORT_SYMBOL0x9025d418ata_cable_40wirevmlinuxEXPORT_SYMBOL_GPL0x4bb07d83dev_pm_qos_add_ancestor_requestvmlinuxEXPORT_SYMBOL_GPL0x29e6973fieee80211_get_operstatenet/mac80211/mac80211EXPORT_SYMBOL0x30b9e3a0spk_synth_immediatedrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x71c52aeacfg80211_wext_giwmodevmlinuxEXPORT_SYMBOL_GPL0x1c50e9d4cfg80211_wext_giwnamevmlinuxEXPORT_SYMBOL_GPL0x55b2d407cfg80211_wext_siwmodevmlinuxEXPORT_SYMBOL_GPL0x09347a9ecfg80211_send_auth_timeoutvmlinuxEXPORT_SYMBOL0xab0d506cxfrm_state_register_afinfovmlinuxEXPORT_SYMBOL0x5cc8e699usb_register_device_drivervmlinuxEXPORT_SYMBOL_GPL0x860569e2ata_cable_unknownvmlinuxEXPORT_SYMBOL_GPL0x18406499subsys_interface_unregistervmlinuxEXPORT_SYMBOL_GPL0x13bfef74kmem_cache_sizevmlinuxEXPORT_SYMBOL0x2468ed34oslec_hpf_txdrivers/staging/echo/echoEXPORT_SYMBOL_GPL0xa8a4e664osd_req_readdrivers/scsi/osd/libosdEXPORT_SYMBOL0xde737d10videobuf_vmalloc_freedrivers/media/video/videobuf-vmallocEXPORT_SYMBOL_GPL0xa662ccfbgspca_auto_gain_n_exposuredrivers/media/video/gspca/gspca_mainEXPORT_SYMBOL0xe49b0dcaregulatory_hintvmlinuxEXPORT_SYMBOL0x6f0046dewiphy_rfkill_start_pollingvmlinuxEXPORT_SYMBOL0x3ecee42binet_ioctlvmlinuxEXPORT_SYMBOL0xb23fe79dsnd_soc_dapm_mixer_update_powervmlinuxEXPORT_SYMBOL_GPL0x0c8c9e99scsi_show_extd_sensevmlinuxEXPORT_SYMBOL0xe55e34b4kobject_get_pathvmlinuxEXPORT_SYMBOL_GPL0xd8ce7e67clocksource_registervmlinuxEXPORT_SYMBOL0xe31c40a8xt_register_targetnet/netfilter/x_tablesEXPORT_SYMBOL0x00947d17bt_sock_linknet/bluetooth/bluetoothEXPORT_SYMBOL0x8a6a7432ata_sas_async_probevmlinuxEXPORT_SYMBOL_GPL0x6f20960afull_name_hashvmlinuxEXPORT_SYMBOL0x305ff4d5ip_vs_proto_data_getnet/netfilter/ipvs/ip_vsEXPORT_SYMBOL0xf5ccc56frndis_commanddrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x02f3b32edvb_unregister_devicedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0xe1f0f023ping_protvmlinuxEXPORT_SYMBOL0x814e7730nf_ct_destroyvmlinuxEXPORT_SYMBOL0xc49bf86bnf_unregister_hooksvmlinuxEXPORT_SYMBOL0xb63ff550pm_generic_freezevmlinuxEXPORT_SYMBOL_GPL0x8b42156adevice_create_vargsvmlinuxEXPORT_SYMBOL_GPL0x0a23d4f8tty_port_hangupvmlinuxEXPORT_SYMBOL0xee078dcbframebuffer_releasevmlinuxEXPORT_SYMBOL0x8810ad5ecrypto_xorvmlinuxEXPORT_SYMBOL_GPL0x45bf1ff3crypto_incvmlinuxEXPORT_SYMBOL_GPL0x8f784e32cpu_bit_bitmapvmlinuxEXPORT_SYMBOL_GPL0xe19dc5e2i2400m_post_resetdrivers/net/wimax/i2400m/i2400mEXPORT_SYMBOL_GPL0x43f3ffb0btmrvl_process_eventdrivers/bluetooth/btmrvlEXPORT_SYMBOL_GPL0x4d3d7c07rpc_free_iostatsvmlinuxEXPORT_SYMBOL_GPL0x9bd4205crpc_destroy_wait_queuevmlinuxEXPORT_SYMBOL_GPL0x1595bb0cbrcmu_pktq_initdrivers/net/wireless/brcm80211/brcmutil/brcmutilEXPORT_SYMBOL0x5701390dcx24113_agc_callbackdrivers/media/dvb/frontends/cx24113EXPORT_SYMBOL0x14ecc53awiphy_apply_custom_regulatoryvmlinuxEXPORT_SYMBOL0x6eea229dsvcauth_unix_purgevmlinuxEXPORT_SYMBOL_GPL0x43f23311dm_table_get_mdvmlinuxEXPORT_SYMBOL0x1d9245bdUSBC_INT_ClearMiscPendingvmlinuxEXPORT_SYMBOL0x8aac5757usb_hcd_poll_rh_statusvmlinuxEXPORT_SYMBOL_GPL0x188d1a10device_find_childvmlinuxEXPORT_SYMBOL_GPL0xc019ddb8fat_getattrvmlinuxEXPORT_SYMBOL_GPL0xf0b3eac4fat_setattrvmlinuxEXPORT_SYMBOL_GPL0x7b9aac0egeneric_read_dirvmlinuxEXPORT_SYMBOL0x27078cecdentry_unhashvmlinuxEXPORT_SYMBOL0xe007de41kallsyms_lookup_namevmlinuxEXPORT_SYMBOL_GPL0xa136dd8bct_sip_parse_header_urinet/netfilter/nf_conntrack_sipEXPORT_SYMBOL_GPL0xe433b473gameport_set_physdrivers/input/gameport/gameportEXPORT_SYMBOL0xb982171btpm_pm_suspenddrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0xe5de596bxprt_lookup_rqstvmlinuxEXPORT_SYMBOL_GPL0x748983b0bsg_remove_queuevmlinuxEXPORT_SYMBOL_GPL0x3ba5953ewriteback_inodes_sb_if_idlevmlinuxEXPORT_SYMBOL0x6cab13f4truncate_pagecachevmlinuxEXPORT_SYMBOL0x5fcdec5dxfrm_ealg_get_byidxvmlinuxEXPORT_SYMBOL_GPL0x9685e2e6sock_no_shutdownvmlinuxEXPORT_SYMBOL0x16244fe5v4l2_prio_checkvmlinuxEXPORT_SYMBOL0xba9debfavc_resizevmlinuxEXPORT_SYMBOL0xf2d18940__generic_block_fiemapvmlinuxEXPORT_SYMBOL0xb1acbccercu_barrier_schedvmlinuxEXPORT_SYMBOL_GPL0xb226a83btry_wait_for_completionvmlinuxEXPORT_SYMBOL0x8f7014a1param_set_ulongvmlinuxEXPORT_SYMBOL0xee2d0fc7_local_bh_enablevmlinuxEXPORT_SYMBOL0x65eecf6cnf_ct_expect_allocnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x7042bc54irlmp_register_clientnet/irda/irdaEXPORT_SYMBOL0x24b5fc4dath9k_hw_intrpenddrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0x846442e0drm_kms_helper_poll_initdrivers/gpu/drm/drm_kms_helperEXPORT_SYMBOL0x88a06a99sysfs_unmerge_groupvmlinuxEXPORT_SYMBOL_GPL0xcbf0b653cpu_active_maskvmlinuxEXPORT_SYMBOL0xf59d9804ceph_copy_to_page_vectornet/ceph/libcephEXPORT_SYMBOL0x82f236cdfbtft_write_reg16_bus16drivers/video/fbtft/fbtftEXPORT_SYMBOL0x63be3eefp54_init_commondrivers/net/wireless/p54/p54commonEXPORT_SYMBOL_GPL0x3e861baddrm_put_minordrivers/gpu/drm/drmEXPORT_SYMBOL0x147ef4f1drm_calc_timestamping_constantsdrivers/gpu/drm/drmEXPORT_SYMBOL0x4f98cdf7bus_find_device_by_namevmlinuxEXPORT_SYMBOL_GPL0xa0de9210usb_ftdi_elan_edset_flushdrivers/usb/misc/ftdi-elanEXPORT_SYMBOL_GPL0xe415312fsmscore_register_clientdrivers/media/dvb/siano/smsmdtvEXPORT_SYMBOL_GPL0xbf9e6885inet_peer_xrlim_allowvmlinuxEXPORT_SYMBOL0xe9f71836nf_ct_attachvmlinuxEXPORT_SYMBOL0x1566f7e4snd_timer_global_freevmlinuxEXPORT_SYMBOL0x649162c2register_user_hw_breakpointvmlinuxEXPORT_SYMBOL_GPL0xbfbabcd6usbip_alloc_iso_desc_pdudrivers/staging/usbip/usbip-coreEXPORT_SYMBOL_GPL0x922b38c6sas_target_destroydrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x869e2dacdrm_mode_connector_list_updatedrivers/gpu/drm/drmEXPORT_SYMBOL0xe5ed5467xfrm_policy_walk_initvmlinuxEXPORT_SYMBOL0x7ddcc761snd_pcm_lib_writevvmlinuxEXPORT_SYMBOL0x2c032f56driver_attachvmlinuxEXPORT_SYMBOL_GPL0xd8bc6ceetextsearch_registervmlinuxEXPORT_SYMBOL0x381a798asetup_max_cpusvmlinuxEXPORT_SYMBOL0x1905a42ccommit_credsvmlinuxEXPORT_SYMBOL0x3d00ec8e__nf_ct_expect_findnet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0xedd521c2irlmp_get_discoveriesnet/irda/irdaEXPORT_SYMBOL0x7f40f191garp_init_applicantnet/802/garpEXPORT_SYMBOL_GPL0xc9a962e6fbtft_read_spidrivers/video/fbtft/fbtftEXPORT_SYMBOL0x8df573e9usbnet_generic_cdc_binddrivers/net/usb/cdc_etherEXPORT_SYMBOL_GPL0xbe021cceplatform_device_registervmlinuxEXPORT_SYMBOL_GPL0x5934392bfb_register_clientvmlinuxEXPORT_SYMBOL0xad0413d4match_hexvmlinuxEXPORT_SYMBOL0x93063944tm6000_register_extensiondrivers/media/video/tm6000/tm6000EXPORT_SYMBOL0x87623522__inet_lookup_listenervmlinuxEXPORT_SYMBOL_GPL0x7f97ebd3nf_unregister_sockoptvmlinuxEXPORT_SYMBOL0x65700531__skb_get_rxhashvmlinuxEXPORT_SYMBOL0x1deb6aa5skb_realloc_headroomvmlinuxEXPORT_SYMBOL0x051d086bmedia_entity_find_linkvmlinuxEXPORT_SYMBOL_GPL0x49e968eddev_attr_em_messagevmlinuxEXPORT_SYMBOL_GPL0xffc31cf9platform_device_unregistervmlinuxEXPORT_SYMBOL_GPL0xd407d9c2serial8250_set_isa_configuratorvmlinuxEXPORT_SYMBOL0x354b1eafgeneric_pipe_buf_getvmlinuxEXPORT_SYMBOL0x5fa64991generic_pipe_buf_mapvmlinuxEXPORT_SYMBOL0x7cace643ipv6_find_hdrnet/ipv6/netfilter/ip6_tablesEXPORT_SYMBOL0x948dd3b2tty_port_close_endvmlinuxEXPORT_SYMBOL0xf945b994disp_get_ump_secure_idvmlinuxEXPORT_SYMBOL0x52e1a63fjbd2_journal_dirty_metadatavmlinuxEXPORT_SYMBOL0x77df0847__set_personalityvmlinuxEXPORT_SYMBOL0x3d409e3chashbin_newnet/irda/irdaEXPORT_SYMBOL0xa8e35d6bsas_attach_transportdrivers/scsi/scsi_transport_sasEXPORT_SYMBOL0x4826fe3dsas_bios_paramdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x38a87857dvb_ringbuffer_freedrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x018b776advb_dmxdev_initdrivers/media/dvb/dvb-core/dvb-coreEXPORT_SYMBOL0x7b9fcea2drm_core_ioremap_wcdrivers/gpu/drm/drmEXPORT_SYMBOL0x6d4aa506md_flush_requestvmlinuxEXPORT_SYMBOL0x1cc22f6dregister_con_drivervmlinuxEXPORT_SYMBOL0x73b19334blkcipher_walk_donevmlinuxEXPORT_SYMBOL_GPL0xe178791bpage_readlinkvmlinuxEXPORT_SYMBOL0xb48b8922account_page_writebackvmlinuxEXPORT_SYMBOL0x676bbc0f_set_bitvmlinuxEXPORT_SYMBOL0xb778fe18osd_req_flush_partitiondrivers/scsi/osd/libosdEXPORT_SYMBOL0x4d5b5b04ubi_is_mappeddrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xbb9e199cnf_unregister_afinfovmlinuxEXPORT_SYMBOL_GPL0x1dd571e6fb_copy_cmapvmlinuxEXPORT_SYMBOL0xf5eb86eablk_verify_commandvmlinuxEXPORT_SYMBOL0xc499ae1ekstrdupvmlinuxEXPORT_SYMBOL0x4383c821_raw_write_lock_irqvmlinuxEXPORT_SYMBOL0xf201c287freezing_slow_pathvmlinuxEXPORT_SYMBOL0x448b8aaairda_qos_bits_to_valuenet/irda/irdaEXPORT_SYMBOL0xa7443181fcoe_libfc_configdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0x8b9cff05ata_host_allocvmlinuxEXPORT_SYMBOL_GPL0x2fb2759b_atomic_dec_and_lockvmlinuxEXPORT_SYMBOL0xea7987f1key_updatevmlinuxEXPORT_SYMBOL0xe600888biscsi_conn_binddrivers/scsi/libiscsiEXPORT_SYMBOL_GPL0x311815ecrt2800_mcu_requestdrivers/net/wireless/rt2x00/rt2800libEXPORT_SYMBOL_GPL0xdedea834xfrm_register_kmvmlinuxEXPORT_SYMBOL0xca46d90cip_mc_dec_groupvmlinuxEXPORT_SYMBOL0x11504e86snd_soc_dapm_mux_update_powervmlinuxEXPORT_SYMBOL_GPL0xcb7131fbfb_get_optionsvmlinuxEXPORT_SYMBOL0x733c3b54kasprintfvmlinuxEXPORT_SYMBOL0x49abaaa7simple_renamevmlinuxEXPORT_SYMBOL0x39f94793vfs_setxattrvmlinuxEXPORT_SYMBOL_GPL0xb67be557vfs_getxattrvmlinuxEXPORT_SYMBOL_GPL0xf36b2daasock_init_datavmlinuxEXPORT_SYMBOL0x8c9d682esnd_ctl_free_onevmlinuxEXPORT_SYMBOL0x5ec09401tty_set_termiosvmlinuxEXPORT_SYMBOL_GPL0xc2161e33_raw_spin_lockvmlinuxEXPORT_SYMBOL0xd1b551a2spk_get_vardrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x81bb152biio_st_read_channel_rawdrivers/staging/iio/industrialioEXPORT_SYMBOL_GPL0x17e10d09unregister_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x43bc62daip_queue_xmitvmlinuxEXPORT_SYMBOL0xb32472dfv4l2_fh_openvmlinuxEXPORT_SYMBOL_GPL0x4c92b604class_dev_iter_initvmlinuxEXPORT_SYMBOL_GPL0xab18e6bdscatterwalk_mapvmlinuxEXPORT_SYMBOL_GPL0xed221ad4nf_ct_helper_expectfn_registernet/netfilter/nf_conntrackEXPORT_SYMBOL_GPL0x012e00advideobuf_stopdrivers/media/video/videobuf-coreEXPORT_SYMBOL_GPL0x428d6baekm_queryvmlinuxEXPORT_SYMBOL0xf611bd88inet_releasevmlinuxEXPORT_SYMBOL0xafec5283rwsem_is_lockedvmlinuxEXPORT_SYMBOL0x7c7907bablk_queue_start_tagvmlinuxEXPORT_SYMBOL0x9c51718fjbd2_journal_force_commitvmlinuxEXPORT_SYMBOL0x1289d3a1sw_get_chip_idvmlinuxEXPORT_SYMBOL0xa83588ebdm_rh_recovery_enddrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0x7732c3ebdrm_connector_initdrivers/gpu/drm/drmEXPORT_SYMBOL0x287a063axprt_allocvmlinuxEXPORT_SYMBOL_GPL0x5c9153c9neigh_createvmlinuxEXPORT_SYMBOL0x0de6dd1cusb_stor_CB_transportvmlinuxEXPORT_SYMBOL_GPL0x9fce80dbfb_notifier_call_chainvmlinuxEXPORT_SYMBOL_GPL0x373db350kstrtointvmlinuxEXPORT_SYMBOL0x4f006b36log_start_commitvmlinuxEXPORT_SYMBOL0xa2d51da2sirdev_raw_writedrivers/net/irda/sir-devEXPORT_SYMBOL0x10d6ac29cx231xx_send_usb_commanddrivers/media/video/cx231xx/cx231xxEXPORT_SYMBOL_GPL0xf59aac46cpufreq_get_policyvmlinuxEXPORT_SYMBOL0xb663702cv4l2_device_putvmlinuxEXPORT_SYMBOL_GPL0x779a7c86dquot_set_dqblkvmlinuxEXPORT_SYMBOL0x8f6cee77__round_jiffies_relativevmlinuxEXPORT_SYMBOL_GPL0xc206d483target_splice_sess_cmd_listdrivers/target/target_core_modEXPORT_SYMBOL0xcc71d5d8ath_gen_timer_isrdrivers/net/wireless/ath/ath9k/ath9k_hwEXPORT_SYMBOL0xf55026bbsvc_pool_stats_openvmlinuxEXPORT_SYMBOL0x4670a674inet_frag_maybe_warn_overflowvmlinuxEXPORT_SYMBOL0xf672d651inet_twsk_allocvmlinuxEXPORT_SYMBOL_GPL0x71a070dc__serio_register_drivervmlinuxEXPORT_SYMBOL0xff03b078tty_put_charvmlinuxEXPORT_SYMBOL_GPL0x81ad83c8pwm_set_paravmlinuxEXPORT_SYMBOL0x1884afd3pwm_get_paravmlinuxEXPORT_SYMBOL0x037a0cbakfreevmlinuxEXPORT_SYMBOL0x28ae4028__rt_mutex_initvmlinuxEXPORT_SYMBOL_GPL0xea4dfe75kill_pid_info_as_credvmlinuxEXPORT_SYMBOL_GPL0x6830fd5asas_target_allocdrivers/scsi/libsas/libsasEXPORT_SYMBOL_GPL0x99a92602vlan_dev_real_devvmlinuxEXPORT_SYMBOL0xc37c4772xfrm_state_deletevmlinuxEXPORT_SYMBOL0x2b31ed30nf_register_sockoptvmlinuxEXPORT_SYMBOL0xdde7a73esock_kmallocvmlinuxEXPORT_SYMBOL0xb9638db4snd_pcm_rate_to_rate_bitvmlinuxEXPORT_SYMBOL0x11d79bdecgroup_load_subsysvmlinuxEXPORT_SYMBOL_GPL0xb894926dschedule_work_onvmlinuxEXPORT_SYMBOL0xb570e441ceph_calc_file_object_mappingnet/ceph/libcephEXPORT_SYMBOL0x7fb76598rndis_unbinddrivers/net/usb/rndis_hostEXPORT_SYMBOL_GPL0x5cfdd22dubi_get_device_infodrivers/mtd/ubi/ubiEXPORT_SYMBOL_GPL0xe7d4daacseq_list_nextvmlinuxEXPORT_SYMBOL0x8caafae1target_fabric_configfs_initdrivers/target/target_core_modEXPORT_SYMBOL0xe451cdc7vb2_queue_releasedrivers/media/video/videobuf2-coreEXPORT_SYMBOL_GPL0x31bd7682dib7000p_set_gpiodrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0x538383c0unregister_inet6addr_notifiervmlinuxEXPORT_SYMBOL0xa06df9e1__kfifo_dma_out_finish_rvmlinuxEXPORT_SYMBOL0x2d9e02b8vb2_vmalloc_memopsdrivers/media/video/videobuf2-vmallocEXPORT_SYMBOL_GPL0x47942241cfg80211_rx_unexpected_4addr_framevmlinuxEXPORT_SYMBOL0xc15ba464ipv6_chk_addrvmlinuxEXPORT_SYMBOL0x5fe57e3auart_suspend_portvmlinuxEXPORT_SYMBOL0x9533df0e__blkdev_driver_ioctlvmlinuxEXPORT_SYMBOL_GPL0xf1c98ee2blk_alloc_queue_nodevmlinuxEXPORT_SYMBOL0xc55de604ceph_parse_optionsnet/ceph/libcephEXPORT_SYMBOL0x62b2a4f6mtd_read_fact_prot_regdrivers/mtd/mtdEXPORT_SYMBOL_GPL0x2f707badlis3lv02d_remove_fsdrivers/misc/lis3lv02d/lis3lv02dEXPORT_SYMBOL_GPL0x265a0182dib7000p_pid_filterdrivers/media/dvb/frontends/dib7000pEXPORT_SYMBOL0xb8d3b036dib7000m_pid_filterdrivers/media/dvb/frontends/dib7000mEXPORT_SYMBOL0xc66ce277dm_rh_get_region_sizedrivers/md/dm-region-hashEXPORT_SYMBOL_GPL0xcc652cd9scsi_device_resumevmlinuxEXPORT_SYMBOL0xe7722171flex_array_freevmlinuxEXPORT_SYMBOL0xe3a3e008bsg_goose_queuevmlinuxEXPORT_SYMBOL_GPL0xcb78f724blk_queue_flushvmlinuxEXPORT_SYMBOL_GPL0x8119422bbio_phys_segmentsvmlinuxEXPORT_SYMBOL0xdaa57ec3totalhigh_pagesvmlinuxEXPORT_SYMBOL0x6df0a0a2ipv6_find_tlvvmlinuxEXPORT_SYMBOL_GPL0xd319e588neigh_changeaddrvmlinuxEXPORT_SYMBOL0xe2359890skb_recycle_checkvmlinuxEXPORT_SYMBOL0xa7600dc1snd_soc_jack_get_typevmlinuxEXPORT_SYMBOL_GPL0x2371d0e0do_unregister_con_drivervmlinuxEXPORT_SYMBOL_GPL0xa120d33ctty_unregister_ldiscvmlinuxEXPORT_SYMBOL0x83c8feb3tty_standard_installvmlinuxEXPORT_SYMBOL_GPL0x7dc5d0b6crypto_unregister_notifiervmlinuxEXPORT_SYMBOL_GPL0x33b6f60cinvalidate_inode_pages2vmlinuxEXPORT_SYMBOL_GPL0x75a7530dipt_do_tablenet/ipv4/netfilter/ip_tablesEXPORT_SYMBOL0x7f8650b4ceph_copy_page_vector_to_usernet/ceph/libcephEXPORT_SYMBOL0x924a9896cfg80211_michael_mic_failurevmlinuxEXPORT_SYMBOL0x633a94d9_snd_ctl_add_slavevmlinuxEXPORT_SYMBOL0x45e5add3led_classdev_registervmlinuxEXPORT_SYMBOL_GPL0x70ff30c7scsi_calculate_bounce_limitvmlinuxEXPORT_SYMBOL0xbe8ec4c4kmem_cache_destroyvmlinuxEXPORT_SYMBOL0xc1ee7ff1add_to_page_cache_lockedvmlinuxEXPORT_SYMBOL0x9b895007xt_find_targetnet/netfilter/x_tablesEXPORT_SYMBOL0x8e734157usb_serial_disconnectdrivers/usb/serial/usbserialEXPORT_SYMBOL_GPL0xfca7eaa1drm_mode_object_finddrivers/gpu/drm/drmEXPORT_SYMBOL0x4b9f48f2xfrm_prepare_inputvmlinuxEXPORT_SYMBOL0xc9f0be5anfs_request_remove_commit_listvmlinuxEXPORT_SYMBOL_GPL0xa1ba2fdbvfsmount_lock_global_lockvmlinuxEXPORT_SYMBOL0x827cc6a1pptp_msg_namenet/netfilter/nf_conntrack_pptpEXPORT_SYMBOL0x84b3d915fcoe_wwn_to_strdrivers/scsi/fcoe/libfcoeEXPORT_SYMBOL_GPL0x38aa31bfc2port_device_registerdrivers/misc/c2port/coreEXPORT_SYMBOL0x3c54486erpc_proc_registervmlinuxEXPORT_SYMBOL_GPL0x7bdf5ad7rpc_queue_emptyvmlinuxEXPORT_SYMBOL_GPL0x68eee784phy_mii_ioctlvmlinuxEXPORT_SYMBOL0x19ca07cevm_event_statesvmlinuxEXPORT_SYMBOL0xe97d9194__module_getvmlinuxEXPORT_SYMBOL0xa64cc9e6complete_allvmlinuxEXPORT_SYMBOL0x9bce482f__release_regionvmlinuxEXPORT_SYMBOL0x5ed040b0pm_set_vt_switchvmlinuxEXPORT_SYMBOL0x214d3d6ftty_free_termiosvmlinuxEXPORT_SYMBOL0xa3b8b1bfamba_device_allocvmlinuxEXPORT_SYMBOL_GPL0x347013denla_validatevmlinuxEXPORT_SYMBOL0x8d08cafebdi_registervmlinuxEXPORT_SYMBOL0xa813fd1axprt_alloc_slotvmlinuxEXPORT_SYMBOL_GPL0xe5fa21e1inet_csk_clear_xmit_timersvmlinuxEXPORT_SYMBOL0x52e3e4a5snd_pcm_hw_param_valuevmlinuxEXPORT_SYMBOL0x7129e5f8hex_ascvmlinuxEXPORT_SYMBOL0xb2f3a6ccfat_time_unix2fatvmlinuxEXPORT_SYMBOL_GPL0xd3c44997nf_nat_follow_masternet/ipv4/netfilter/nf_natEXPORT_SYMBOL0x59874ba6srp_rport_adddrivers/scsi/scsi_transport_srpEXPORT_SYMBOL_GPL0xb76fa33afc_remote_port_rolechgdrivers/scsi/scsi_transport_fcEXPORT_SYMBOL0xf8f3a0fbata_ratelimitvmlinuxEXPORT_SYMBOL_GPL0x667cd5fdtty_get_pgrpvmlinuxEXPORT_SYMBOL_GPL0x2aa0e4fcstrncasecmpvmlinuxEXPORT_SYMBOL0xdc07f1c4fuse_dev_releasevmlinuxEXPORT_SYMBOL_GPL0x8b08c5f8default_llseekvmlinuxEXPORT_SYMBOL0x3d25a935dib8090p_get_dc_powerdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x1a0774aesvc_bindvmlinuxEXPORT_SYMBOL_GPL0x374dbc7ftcp_read_sockvmlinuxEXPORT_SYMBOL0x354655d5snd_jack_newvmlinuxEXPORT_SYMBOL0x3c9c4fe9lib80211_crypt_delayed_deinitnet/wireless/lib80211EXPORT_SYMBOL0x54b55d6asirdev_put_instancedrivers/net/irda/sir-devEXPORT_SYMBOL0x22a229d6sirdev_get_instancedrivers/net/irda/sir-devEXPORT_SYMBOL0x159e4583tpm_dev_vendor_releasedrivers/char/tpm/tpmEXPORT_SYMBOL_GPL0x42a3eb55rpc_peeraddrvmlinuxEXPORT_SYMBOL_GPL0x8ef0ce71ip_fragmentvmlinuxEXPORT_SYMBOL0xd7a27289cpuidle_register_drivervmlinuxEXPORT_SYMBOL_GPL0x15b4cdd8rdev_clear_badblocksvmlinuxEXPORT_SYMBOL_GPL0x16cde169md_trim_biovmlinuxEXPORT_SYMBOL_GPL0x86615d10scsi_eh_prep_cmndvmlinuxEXPORT_SYMBOL0x815b5dd4match_octalvmlinuxEXPORT_SYMBOL0x1e8a13d2bio_map_kernvmlinuxEXPORT_SYMBOL0x457f6ac6xt_register_targetsnet/netfilter/x_tablesEXPORT_SYMBOL0xba287564i2c_smbus_write_bytevmlinuxEXPORT_SYMBOL0xb693e3fascsi_register_drivervmlinuxEXPORT_SYMBOL0xbdfc83b9LCD_GPIO_readvmlinuxEXPORT_SYMBOL0x27000b29crc32cvmlinuxEXPORT_SYMBOL0x835d6f40vfs_fsyncvmlinuxEXPORT_SYMBOL0xaf17dc7cpoll_freewaitvmlinuxEXPORT_SYMBOL0x40c7247csi_meminfovmlinuxEXPORT_SYMBOL0xc06c3839kthread_create_on_nodevmlinuxEXPORT_SYMBOL0xde8c763dcpu_v7_set_pte_extvmlinuxEXPORT_SYMBOL0xc68b15cadib8000_attachdrivers/media/dvb/frontends/dib8000EXPORT_SYMBOL0x5b6c00e6xor_blockscrypto/xorEXPORT_SYMBOL0x7e988c13snd_timer_pausevmlinuxEXPORT_SYMBOL0x5e95b1cdcurrent_umaskvmlinuxEXPORT_SYMBOL0x351d6887get_fs_typevmlinuxEXPORT_SYMBOL0xdb4b743dref_modulevmlinuxEXPORT_SYMBOL_GPL0xbc65256fnf_nat_pptp_hook_outboundnet/netfilter/nf_conntrack_pptpEXPORT_SYMBOL_GPL0x0080e19cieee80211_iterate_active_interfacesnet/mac80211/mac80211EXPORT_SYMBOL_GPL0x9dec30bcmacvlan_start_xmitdrivers/net/macvlanEXPORT_SYMBOL_GPL0x0c2d3926free_candevdrivers/net/can/can-devEXPORT_SYMBOL_GPL0x3ac1fef9drm_mode_legacy_fb_formatdrivers/gpu/drm/drmEXPORT_SYMBOL0x158750aftty_driver_kref_putvmlinuxEXPORT_SYMBOL0x24fc46b6regulator_bulk_freevmlinuxEXPORT_SYMBOL_GPL0x005c23b4disp_get_pll_freqvmlinuxEXPORT_SYMBOL0xd2f82185dquot_acquirevmlinuxEXPORT_SYMBOL0x376e4392fc_exch_recvdrivers/scsi/libfc/libfcEXPORT_SYMBOL0xdb9212d6sock_prot_inuse_getvmlinuxEXPORT_SYMBOL_GPL0x9aaa2e5eUSBC_Dev_ConfigEp_DefaultvmlinuxEXPORT_SYMBOL0xef5ee78bUSBC_TestMode_ReadRegvmlinuxEXPORT_SYMBOL0xe984c8e9usb_wakeup_notificationvmlinuxEXPORT_SYMBOL_GPL0xd7a51b74scsi_host_set_statevmlinuxEXPORT_SYMBOL0x64edd0eaaead_geniv_initvmlinuxEXPORT_SYMBOL_GPL0x0ac319c4dquot_quotactl_opsvmlinuxEXPORT_SYMBOL0x628c1d25generic_write_endvmlinuxEXPORT_SYMBOL0x362e23eccall_rcu_bhvmlinuxEXPORT_SYMBOL_GPL0x1160b32cdevm_request_threaded_irqvmlinuxEXPORT_SYMBOL0xd01a3c10nat_t120_hooknet/netfilter/nf_conntrack_h323EXPORT_SYMBOL_GPL0xe7cd4558spk_serial_releasedrivers/staging/speakup/speakupEXPORT_SYMBOL_GPL0x431b6ef5__vlan_find_dev_deepvmlinuxEXPORT_SYMBOL0xcd083b10unregister_sound_dspvmlinuxEXPORT_SYMBOL0xa473264egenphy_config_anegvmlinuxEXPORT_SYMBOL0xe0487177blk_start_queuevmlinuxEXPORT_SYMBOL0xb96a7288journal_check_used_featuresvmlinuxEXPORT_SYMBOL0x0907c858bio_copy_uservmlinuxEXPORT_SYMBOL0x7a4497dbkzfreevmlinuxEXPORT_SYMBOL0x74b1f7dfalloc_irdadevnet/irda/irdaEXPORT_SYMBOL0xfebb42abarpt_unregister_tablenet/ipv4/netfilter/arp_tablesEXPORT_SYMBOL0x72f508b3inet_sk_diag_fillnet/ipv4/inet_diagEXPORT_SYMBOL_GPL0x437afe96hci_send_aclnet/bluetooth/bluetoothEXPORT_SYMBOL0xd4e288dbrc_map_af9005_table_sizedrivers/media/dvb/dvb-usb/dvb-usb-af9005-remoteEXPORT_SYMBOL0xfa655782sk_filtervmlinuxEXPORT_SYMBOL0xa8f59416gpio_direction_outputvmlinuxEXPORT_SYMBOL_GPL0xaf608291generic_removexattrvmlinuxEXPORT_SYMBOL0x44376beddeactivate_supervmlinuxEXPORT_SYMBOL0x29924da3vmapvmlinuxEXPORT_SYMBOL0x31f0bb78__kmap_atomic_idxvmlinuxEXPORT_SYMBOL ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download