]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Merge remote-tracking branch 'staging/staging-next'
authorStephen Rothwell <sfr@canb.auug.org.au>
Fri, 27 Sep 2013 06:54:09 +0000 (16:54 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 27 Sep 2013 06:54:09 +0000 (16:54 +1000)
1  2 
MAINTAINERS
drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
drivers/staging/rtl8188eu/os_dep/usb_intf.c
drivers/staging/rtl8192u/r819xU_cmdpkt.c
drivers/staging/vt6656/iwctl.c
drivers/staging/vt6656/rxtx.c
include/linux/mfd/ti_am335x_tscadc.h

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
index 7b68a061cd60f8df9bf64441576f304870bf660f,08cce7f96ab9365359c30a4726d910022f571be5..d498d98f0c2cbfd3c9076aa439433a23caa80899
  #define ADC_CLK                       3000000
  #define TOTAL_STEPS           16
  #define TOTAL_CHANNELS                8
+ #define FIFO1_THRESHOLD               19
  
  /*
 -* ADC runs at 3MHz, and it takes
 -* 15 cycles to latch one data output.
 -* Hence the idle time for ADC to
 -* process one sample data would be
 -* around 5 micro seconds.
 -*/
 -#define IDLE_TIMEOUT 5 /* microsec */
 + * time in us for processing a single channel, calculated as follows:
 + *
 + * num cycles = open delay + (sample delay + conv time) * averaging
 + *
 + * num cycles: 152 + (1 + 13) * 16 = 376
 + *
 + * clock frequency: 26MHz / 8 = 3.25MHz
 + * clock period: 1 / 3.25MHz = 308ns
 + *
 + * processing time: 376 * 308ns = 116us
 + */
 +#define IDLE_TIMEOUT 116 /* microsec */
  
  #define TSCADC_CELLS          2