/* * tlv320aic32x4.h -- TLV320AIC32X4 Soc Audio driver platform data * * Copyright 2011 Vista Silicon S.L. * * Author: Javier Martin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef _AIC32X4_PDATA_H #define _AIC32X4_PDATA_H #define AIC32X4_PWR_MICBIAS_2075_LDOIN 0x00000001 #define AIC32X4_PWR_AVDD_DVDD_WEAK_DISABLE 0x00000002 #define AIC32X4_PWR_AIC32X4_LDO_ENABLE 0x00000004 #define AIC32X4_PWR_CMMODE_LDOIN_RANGE_18_36 0x00000008 #define AIC32X4_PWR_CMMODE_HP_LDOIN_POWERED 0x00000010 #define AIC32X4_MICPGA_ROUTE_LMIC_IN2R_10K 0x00000001 #define AIC32X4_MICPGA_ROUTE_RMIC_IN1L_10K 0x00000002 struct aic32x4_pdata { u32 power_cfg; u32 micpga_routing; bool swapdacs; int rstn_gpio; }; #endif t
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/ieee802154
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2017-01-04 16:18:38 +0100
committerArnd Bergmann <arnd@arndb.de>2017-01-04 16:18:38 +0100
commit43a8df78dc1a95c24a08f6b776dc86820c117160 (patch)
treeca9b2073ab71c8e1659f5900e560f8526f13f0b4 /net/ieee802154
parentad040d8df6eb3a6d4b85ef69448d370d0065843c (diff)
parenta766347b15c01507db9bf01f9b7021be5a776691 (diff)
Merge tag 'scpi-fixes-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into fixes
Pull "SCPI fix for v4.10" from Sudeep Holla: A simple fix for reading only lower 32-bit sensor values on pre-1.0 SCPI firmwares so that upper 32-bit (garbage) value is discarded properly. * tag 'scpi-fixes-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: firmware: arm_scpi: fix reading sensor values on pre-1.0 SCPI firmwares
Diffstat (limited to 'net/ieee802154')