Re: [OpenWrt-Devel] race IPv6 odhcp6c IAID

2013-09-21 Thread Steven Barth

Hi Bastian,

I just commited a fix although it wasn't really a race.
Please try with the latest revision.


Cheers,

Steven
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] Original wifidog.conf file

2013-09-21 Thread Nguyễn Hồng Quân
Hello all

I found that the wifidog package built for OpenWrt uses different .conf
file from the one in upstream. Concretely, there is no HTTPDRealm option
in OpenWrt's one.

Is there a reason for that thing, and how to revert to the original one
when building?

Nice weekend.

-- 
***
* Nguyễn Hồng Quân*
* Y!M: ng_hquan_vn*
* Identi.ca: hongquan *
***
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 1/4] ar71xx: fix LAN LEDs for dir-825-c1

2013-09-21 Thread Gabor Juhos
2013.09.20. 20:50 keltezéssel, Sebastian Kemper írta:
 This patches fixes the lan led configuration. The new configuration is
 identical to the one in mach-db120.c and it works. The previous one
 didn't work at all.
 
 Signed-off-by: Sebastian Kemper sebastian...@gmx.net

Applied.

Thanks,
Gabor
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 2/4] ar71xx: let HW switch control WAN LED on dir-825-c1

2013-09-21 Thread Gabor Juhos
2013.09.20. 20:59 keltezéssel, Sebastian Kemper írta:
 Enable GPIO 20. This hands off control of the blue planet led to the
 integrated switch. Consequently, remove the led configuration for the
 blue planet led.
 
 Remove also the configuration for the orange planet led as both share
 the same look-out.

Please don't remove that. Apart from the fact that both LEDs are behind the same
icon you can still control the amber LED separately.

-Gabor
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 2/4] ar71xx: let HW switch control WAN LED on dir-825-c1

2013-09-21 Thread Sebastian Kemper
Enable GPIO 20. This hands off control of the blue planet led to the
integrated switch. Consequently, remove the led configuration for the
blue planet led.

Signed-off-by: Sebastian Kemper sebastian...@gmx.net

---

diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c 
b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
index 21d4271..3ff5da1 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
@@ -36,6 +36,8 @@
 #define DIR825C1_GPIO_LED_BLUE_PLANET  18
 #define DIR825C1_GPIO_LED_WIFI_BGN 13
 
+#define DIR825C1_GPIO_WAN_LED_ENABLE   20
+
 #define DIR825C1_GPIO_BTN_RESET17
 #define DIR825C1_GPIO_BTN_WPS  16
 
@@ -74,10 +76,6 @@ static struct gpio_led dir825c1_leds_gpio[] __initdata = {
.active_low = 1,
},
{
-   .name   = d-link:blue:planet,
-   .gpio   = DIR825C1_GPIO_LED_BLUE_PLANET,
-   .active_low = 1,
-   }, {
.name   = d-link:blue:wifi_bgn,
.gpio   = DIR825C1_GPIO_LED_WIFI_BGN,
.active_low = 1,
@@ -213,6 +211,9 @@ static void __init dir825c1_setup(void)
ath79_gpio_output_select(DIR825C1_GPIO_LED_BLUE_USB,
 AR934X_GPIO_OUT_GPIO);
 
+   gpio_request_one(DIR825C1_GPIO_WAN_LED_ENABLE,
+   GPIOF_OUT_INIT_LOW, WAN LED enable);
+
ath79_register_leds_gpio(-1, ARRAY_SIZE(dir825c1_leds_gpio),
 dir825c1_leds_gpio);
 
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 3/4] ar71xx: vanity changes for dir-825-c1

2013-09-21 Thread Sebastian Kemper
This patch

- changes the color names from orange to amber
- changes the name of GPIO 13 from WIFI_BGN (wifi_bgn) to WLAN_2G
  (wlan2g) to be more consistent with the other routers' files
- changes the descriptions of the hardware keys to be a tad more
  explicit

Signed-off-by: Sebastian Kemper sebastian...@gmx.net

---

diff --git a/target/linux/ar71xx/base-files/etc/diag.sh 
b/target/linux/ar71xx/base-files/etc/diag.sh
index 2719a13..e5738f5 100755
--- a/target/linux/ar71xx/base-files/etc/diag.sh
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
@@ -51,12 +51,12 @@ get_status_led() {
dir-615-c1)
status_led=d-link:green:status
;;
-   dir-825-b1 |\
-   dir-835-a1)
+   dir-825-b1)
status_led=d-link:orange:power
;;
-   dir-825-c1)
-   status_led=d-link:orange:power
+   dir-825-c1 |\
+   dir-835-a1)
+   status_led=d-link:amber:power
;;
eap7660d)
status_led=eap7660d:green:ds4
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c 
b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
index 3ff5da1..d311081 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-dir-825-c1.c
@@ -29,12 +29,12 @@
 #include machtypes.h
 
 #define DIR825C1_GPIO_LED_BLUE_USB 11
-#define DIR825C1_GPIO_LED_ORANGE_POWER 14
+#define DIR825C1_GPIO_LED_AMBER_POWER  14
 #define DIR825C1_GPIO_LED_BLUE_POWER   22
 #define DIR825C1_GPIO_LED_BLUE_WPS 15
-#define DIR825C1_GPIO_LED_ORANGE_PLANET19
+#define DIR825C1_GPIO_LED_AMBER_PLANET 19
 #define DIR825C1_GPIO_LED_BLUE_PLANET  18
-#define DIR825C1_GPIO_LED_WIFI_BGN 13
+#define DIR825C1_GPIO_LED_WLAN_2G  13
 
 #define DIR825C1_GPIO_WAN_LED_ENABLE   20
 
@@ -56,8 +56,8 @@ static struct gpio_led dir825c1_leds_gpio[] __initdata = {
.active_low = 1,
},
{
-   .name   = d-link:orange:power,
-   .gpio   = DIR825C1_GPIO_LED_ORANGE_POWER,
+   .name   = d-link:amber:power,
+   .gpio   = DIR825C1_GPIO_LED_AMBER_POWER,
.active_low = 1,
},
{
@@ -71,21 +71,21 @@ static struct gpio_led dir825c1_leds_gpio[] __initdata = {
.active_low = 1,
},
{
-   .name   = d-link:orange:planet,
-   .gpio   = DIR825C1_GPIO_LED_ORANGE_PLANET,
+   .name   = d-link:amber:planet,
+   .gpio   = DIR825C1_GPIO_LED_AMBER_PLANET,
.active_low = 1,
},
{
-   .name   = d-link:blue:wifi_bgn,
-   .gpio   = DIR825C1_GPIO_LED_WIFI_BGN,
+   .name   = d-link:blue:wlan2g,
+   .gpio   = DIR825C1_GPIO_LED_WLAN_2G,
.active_low = 1,
},
 };
 
 static struct gpio_led dir835a1_leds_gpio[] __initdata = {
{
-   .name   = d-link:orange:power,
-   .gpio   = DIR825C1_GPIO_LED_ORANGE_POWER,
+   .name   = d-link:amber:power,
+   .gpio   = DIR825C1_GPIO_LED_AMBER_POWER,
.active_low = 1,
},
{
@@ -99,8 +99,8 @@ static struct gpio_led dir835a1_leds_gpio[] __initdata = {
.active_low = 1,
},
{
-   .name   = d-link:orange:planet,
-   .gpio   = DIR825C1_GPIO_LED_ORANGE_PLANET,
+   .name   = d-link:amber:planet,
+   .gpio   = DIR825C1_GPIO_LED_AMBER_PLANET,
.active_low = 1,
},
{
@@ -112,7 +112,7 @@ static struct gpio_led dir835a1_leds_gpio[] __initdata = {
 
 static struct gpio_keys_button dir825c1_gpio_keys[] __initdata = {
{
-   .desc   = reset,
+   .desc   = Soft reset,
.type   = EV_KEY,
.code   = KEY_RESTART,
.debounce_interval = DIR825C1_KEYS_DEBOUNCE_INTERVAL,
@@ -120,7 +120,7 @@ static struct gpio_keys_button dir825c1_gpio_keys[] 
__initdata = {
.active_low = 1,
},
{
-   .desc   = wps,
+   .desc   = WPS button,
.type   = EV_KEY,
.code   = KEY_WPS_BUTTON,
.debounce_interval = DIR825C1_KEYS_DEBOUNCE_INTERVAL,
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 2/4] ar71xx: let HW switch control WAN LED on dir-825-c1

2013-09-21 Thread Gabor Juhos
2013.09.21. 15:51 keltezéssel, Sebastian Kemper írta:
 Enable GPIO 20. This hands off control of the blue planet led to the
 integrated switch. Consequently, remove the led configuration for the
 blue planet led.
 
 Signed-off-by: Sebastian Kemper sebastian...@gmx.net


Applied with a minor whitespace change.

Thanks,
Gabor
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 4/4] ar71xx: enable wlan2g led in the default configuration of dir-825-c1

2013-09-21 Thread Gabor Juhos
2013.09.20. 21:08 keltezéssel, Sebastian Kemper írta:
 Enable the wlan2g led in the default configuration of dir-825-c1.
 
 Signed-off-by: Sebastian Kemper sebastian...@gmx.net

Applied.

Thanks,
Gabor
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH 3/4] ar71xx: vanity changes for dir-825-c1

2013-09-21 Thread Gabor Juhos
2013.09.21. 15:56 keltezéssel, Sebastian Kemper írta:
 This patch
 
 - changes the color names from orange to amber
 - changes the name of GPIO 13 from WIFI_BGN (wifi_bgn) to WLAN_2G
   (wlan2g) to be more consistent with the other routers' files
 - changes the descriptions of the hardware keys to be a tad more
   explicit
 
 Signed-off-by: Sebastian Kemper sebastian...@gmx.net

Applied.

Thanks,
Gabor
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Move I2C-GPIO drivers from i2c.mk to other.mk

2013-09-21 Thread Hartmut Knaack
Move pca953x support from i2c.mk to other.mk, where other GPIO drivers are 
located. Remove duplicate pcf857x support from i2c.mk.

Signed-off-by: Hartmut Knaack knaac...@gmx.de
---
Index: trunk/package/kernel/linux/modules/i2c.mk
===
--- trunk/package/kernel/linux/modules/i2c.mk   (Revision 38114)
+++ trunk/package/kernel/linux/modules/i2c.mk   (Arbeitskopie)
@@ -237,34 +237,3 @@
 endef
 
 $(eval $(call KernelPackage,i2c-mux-pca9541))
-
-GPIO_PCA953X_MODULES:= \
-  CONFIG_GPIO_PCA953X:drivers/gpio/gpio-pca953x
-
-define KernelPackage/pca953x
-  $(call i2c_defaults,$(GPIO_PCA953X_MODULES),51)
-  TITLE:=Philips PCA953x I2C GPIO extenders
-  DEPENDS:=kmod-i2c-core
-endef
-
-define KernelPackage/pca953x/description
- Kernel modules for PCA953x I2C GPIO extenders
-endef
-
-$(eval $(call KernelPackage,pca953x))
-
-
-GPIO_PCF857X_MODULES:= \
-  CONFIG_GPIO_PCF857X:drivers/gpio/gpio-pcf857x
-
-define KernelPackage/pcf857x
-  $(call i2c_defaults,$(GPIO_PCF857X_MODULES),51)
-  TITLE:=Philips PCF857x I2C GPIO extenders
-  DEPENDS:=kmod-i2c-core
-endef
-
-define KernelPackage/pcf857x/description
- Kernel modules for PCF857x I2C GPIO extenders
-endef
-
-$(eval $(call KernelPackage,pcf857x))
Index: trunk/package/kernel/linux/modules/other.mk
===
--- trunk/package/kernel/linux/modules/other.mk (Revision 38114)
+++ trunk/package/kernel/linux/modules/other.mk (Arbeitskopie)
@@ -162,6 +162,22 @@
 
 $(eval $(call KernelPackage,gpio-nxp-74hc164))
 
+define KernelPackage/gpio-pca953x
+  SUBMENU:=$(OTHER_MENU)
+  DEPENDS:=@GPIO_SUPPORT +kmod-i2c-core
+  TITLE:=PCA95xx, TCA64xx, and MAX7310 I/O ports
+  KCONFIG:=CONFIG_GPIO_PCA953X
+  FILES:=$(LINUX_DIR)/drivers/gpio/gpio-pca953x.ko
+  AUTOLOAD:=$(call AutoLoad,55,gpio-pca953x)
+endef
+
+define KernelPackage/gpio-pca953x/description
+ Kernel module for MAX731{0,2,3,5}, PCA6107, PCA953{4-9}, PCA955{4-7},
+ PCA957{4,5} and TCA64{08,16} I2C GPIO expanders
+endef
+
+$(eval $(call KernelPackage,gpio-pca953x))
+
 define KernelPackage/gpio-pcf857x
   SUBMENU:=$(OTHER_MENU)
   DEPENDS:=@GPIO_SUPPORT +kmod-i2c-core
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Add hwmon driver for ADT7410

2013-09-21 Thread Hartmut Knaack
Add support for the ADT7410 hwmon driver, a high precision I2C temperature 
sensor.
Signed-off-by: Hartmut Knaack knaac...@gmx.de
---
Tested with kernel 3.8.
Index: trunk/package/kernel/linux/modules/hwmon.mk
===
--- trunk/package/kernel/linux/modules/hwmon.mk (Revision 38114)
+++ trunk/package/kernel/linux/modules/hwmon.mk (Arbeitskopie)
@@ -44,6 +44,31 @@
 $(eval $(call KernelPackage,hwmon-vid))
 
 
+define KernelPackage/hwmon-adt7410
+  TITLE:=ADT7410 monitoring support
+ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.10.0)),1)
+  KCONFIG:= \
+   CONFIG_SENSORS_ADT7X10 \
+   CONFIG_SENSORS_ADT7410
+  FILES:= \
+   $(LINUX_DIR)/drivers/hwmon/adt7x10.ko \
+   $(LINUX_DIR)/drivers/hwmon/adt7410.ko
+  AUTOLOAD:=$(call AutoLoad,60,adt7x10 adt7410)
+else
+  KCONFIG:=CONFIG_SENSORS_ADT7410
+  FILES:=$(LINUX_DIR)/drivers/hwmon/adt7410.ko
+  AUTOLOAD:=$(call AutoLoad,60,adt7410)
+endif
+  $(call AddDepends/hwmon,+kmod-i2c-core @!(LINUX_3_3||LINUX_3_6))
+endef
+
+define KernelPackage/hwmon-adt7410/description
+ Kernel module for ADT7410/7420 I2C thermal monitor chip
+endef
+
+$(eval $(call KernelPackage,hwmon-adt7410))
+
+
 define KernelPackage/hwmon-adt7475
   TITLE:=ADT7473/7475/7476/7490 monitoring support
   KCONFIG:=CONFIG_SENSORS_ADT7475
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Add support for industrial-io and AD799x

2013-09-21 Thread Hartmut Knaack
Add support for industrial IO core and (still staging) driver for AD799x, a 
high precision I2C ADC family.
Signed-off-by: Hartmut Knaack knaac...@gmx.de
---
Tested with kernel 3.8.
Index: trunk/package/kernel/linux/modules/other.mk
===
--- trunk/package/kernel/linux/modules/other.mk (Revision 38114)
+++ trunk/package/kernel/linux/modules/other.mk (Arbeitskopie)
@@ -177,6 +177,51 @@
 
 $(eval $(call KernelPackage,gpio-pcf857x))
 
+define KernelPackage/iio-core
+  SUBMENU:=$(OTHER_MENU)
+  DEPENDS:=@!LINUX_3_3
+  TITLE:=Industrial IO core
+  KCONFIG:= \
+   CONFIG_IIO \
+   CONFIG_IIO_BUFFER=y \
+   CONFIG_IIO_KFIFO_BUF \
+   CONFIG_IIO_TRIGGER=y \
+   CONFIG_IIO_TRIGGERED_BUFFER
+  FILES:= \
+   $(LINUX_DIR)/drivers/iio/industrialio.ko \
+   $(LINUX_DIR)/drivers/iio/industrialio-triggered-buffer.ko \
+   $(LINUX_DIR)/drivers/iio/kfifo_buf.ko
+  AUTOLOAD:=$(call AutoLoad,55,industrialio kfifo_buf 
industrialio-triggered-buffer)
+endef
+
+define KernelPackage/iio-core/description
+ The industrial I/O subsystem provides a unified framework for
+ drivers for many different types of embedded sensors using a
+ number of different physical interfaces (i2c, spi, etc)
+endef
+
+$(eval $(call KernelPackage,iio-core))
+
+
+define KernelPackage/iio-ad799x
+  SUBMENU:=$(OTHER_MENU)
+  DEPENDS:=kmod-i2c-core kmod-iio-core
+  TITLE:=Analog Devices AD799x ADC driver
+  KCONFIG:= \
+   CONFIG_AD799X_RING_BUFFER=y \
+   CONFIG_AD799X
+  FILES:=$(LINUX_DIR)/drivers/staging/iio/adc/ad799x.ko
+  AUTOLOAD:=$(call AutoLoad,56,ad799x)
+endef
+
+define KernelPackage/iio-ad799x/description
+ support for Analog Devices:
+ ad7991, ad7995, ad7999, ad7992, ad7993, ad7994, ad7997, ad7998
+ i2c analog to digital converters (ADC). WARNING! This driver is still staging!
+endef
+
+$(eval $(call KernelPackage,iio-ad799x))
+
 define KernelPackage/lp
   SUBMENU:=$(OTHER_MENU)
   TITLE:=Parallel port and line printer support
Index: trunk/target/linux/generic/config-3.8
===
--- trunk/target/linux/generic/config-3.8   (Revision 38114)
+++ trunk/target/linux/generic/config-3.8   (Arbeitskopie)
@@ -15,12 +15,25 @@
 # CONFIG_ACPI_HED is not set
 # CONFIG_ACPI_POWER_METER is not set
 # CONFIG_ACPI_QUICKSTART is not set
+# CONFIG_AD5064 is not set
 # CONFIG_AD525X_DPOT is not set
+# CONFIG_AD5380 is not set
+# CONFIG_AD5446 is not set
+# CONFIG_AD5933 is not set
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7291 is not set
+# CONFIG_AD7606 is not set
+# CONFIG_AD7746 is not set
 # CONFIG_ADAPTEC_STARFIRE is not set
+# CONFIG_ADE7854 is not set
 # CONFIG_ADFS_FS is not set
 # CONFIG_ADIS16255 is not set
+# CONFIG_ADJD_S311 is not set
 # CONFIG_ADM6996_PHY is not set
 # CONFIG_ADM8211 is not set
+# CONFIG_ADT7316 is not set
+# CONFIG_ADT7410 is not set
 CONFIG_AEABI=y
 # CONFIG_AFFS_FS is not set
 # CONFIG_AFS_FS is not set
@@ -1124,6 +1137,13 @@
 # CONFIG_IGB is not set
 # CONFIG_IGBVF is not set
 # CONFIG_IIO is not set
+# CONFIG_IIO_BUFFER_CB is not set
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+# CONFIG_IIO_GPIO_TRIGGER is not set
+# CONFIG_IIO_SIMPLE_DUMMY is not set
+# CONFIG_IIO_ST_HWMON is not set
+# CONFIG_IIO_SW_RING is not set
+# CONFIG_IIO_SYSFS_TRIGGER is not set
 # CONFIG_IKCONFIG is not set
 # CONFIG_IKCONFIG_PROC is not set
 # CONFIG_IMAGE_CMDLINE_HACK is not set
@@ -1535,7 +1555,10 @@
 # CONFIG_MAC_PARTITION is not set
 # CONFIG_MAGIC_SYSRQ is not set
 # CONFIG_MARVELL_PHY is not set
+# CONFIG_MAX1363 is not set
+# CONFIG_MAX517 is not set
 # CONFIG_MAX63XX_WATCHDOG is not set
+# CONFIG_MCP4725 is not set
 # CONFIG_MD is not set
 # CONFIG_MDIO_BITBANG is not set
 # CONFIG_MDIO_BUS_MUX_GPIO is not set
@@ -2719,6 +2742,7 @@
 # CONFIG_SENSORS_ADT7462 is not set
 # CONFIG_SENSORS_ADT7470 is not set
 # CONFIG_SENSORS_ADT7475 is not set
+# CONFIG_SENSORS_AK8975 is not set
 # CONFIG_SENSORS_AMC6821 is not set
 # CONFIG_SENSORS_APDS990X is not set
 # CONFIG_SENSORS_APPLESMC is not set
@@ -2747,8 +2771,11 @@
 # CONFIG_SENSORS_GSC is not set
 # CONFIG_SENSORS_HDAPS is not set
 # CONFIG_SENSORS_HIH6130 is not set
+# CONFIG_SENSORS_HMC5843 is not set
 # CONFIG_SENSORS_I5K_AMB is not set
 # CONFIG_SENSORS_INA2XX is not set
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
 # CONFIG_SENSORS_IT87 is not set
 # CONFIG_SENSORS_JC42 is not set
 # CONFIG_SENSORS_K10TEMP is not set
@@ -2804,6 +2831,7 @@
 # CONFIG_SENSORS_TMP401 is not set
 # CONFIG_SENSORS_TMP421 is not set
 # CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_TSL2563 is not set
 # CONFIG_SENSORS_VIA686A is not set
 # CONFIG_SENSORS_VIA_CPUTEMP is not set
 # CONFIG_SENSORS_VT1211 is not set
@@ -3195,6 +3223,7 @@
 # CONFIG_TIMER_STATS is not set
 CONFIG_TINY_RCU=y
 # CONFIG_TIPC is not set
+# CONFIG_TI_ADC081C is not set
 # CONFIG_TI_DAC7512 is not set
 # CONFIG_TI_ST is not