Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.10-rc2 14 lines 238 B view raw
1#ifndef __LINUX_TI_AM335X_ADC_H 2#define __LINUX_TI_AM335X_ADC_H 3 4/** 5 * struct adc_data ADC Input information 6 * @adc_channels: Number of analog inputs 7 * available for ADC. 8 */ 9 10struct adc_data { 11 unsigned int adc_channels; 12}; 13 14#endif