/* * Analog Devices ADAU1373 Audio Codec drive * * Copyright 2011 Analog Devices Inc. * Author: Lars-Peter Clausen * * Licensed under the GPL-2 or later. */ #ifndef __SOUND_ADAU1373_H__ #define __SOUND_ADAU1373_H__ enum adau1373_micbias_voltage { ADAU1373_MICBIAS_2_9V = 0, ADAU1373_MICBIAS_2_2V = 1, ADAU1373_MICBIAS_2_6V = 2, ADAU1373_MICBIAS_1_8V = 3, }; #define ADAU1373_DRC_SIZE 13 struct adau1373_platform_data { bool input_differential[4]; bool lineout_differential; bool lineout_ground_sense; unsigned int num_drc; uint8_t drc_setting[3][ADAU1373_DRC_SIZE]; enum adau1373_micbias_voltage micbias1; enum adau1373_micbias_voltage micbias2; }; #endif gi/'>index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/sched
AgeCommit message (Expand)AuthorFilesLines
2017-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-nextDavid S. Miller1-1/+1
2017-02-03sched: cls_flower: expose priority to offloading netdeviceJiri Pirko1-0/+3
2017-02-03net/sched: act_ife: Change to use ife moduleYotam Gigi2-78/+33
2017-02-03net/sched: act_ife: Unexport ife_tlv_meta_encodeYotam Gigi1-2/+2
2017-02-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2-85/+48
2017-02-02skbuff: add and use skb_nfct helperFlorian Westphal1-1/+1