/* * wm8400.h -- audio driver for WM8400 * * Copyright 2008 Wolfson Microelectronics PLC. * Author: Mark Brown * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * */ #ifndef _WM8400_CODEC_H #define _WM8400_CODEC_H #define WM8400_MCLK_DIV 0 #define WM8400_DACCLK_DIV 1 #define WM8400_ADCCLK_DIV 2 #define WM8400_BCLK_DIV 3 #define WM8400_MCLK_DIV_1 0x400 #define WM8400_MCLK_DIV_2 0x800 #define WM8400_DAC_CLKDIV_1 0x00 #define WM8400_DAC_CLKDIV_1_5 0x04 #define WM8400_DAC_CLKDIV_2 0x08 #define WM8400_DAC_CLKDIV_3 0x0c #define WM8400_DAC_CLKDIV_4 0x10 #define WM8400_DAC_CLKDIV_5_5 0x14 #define WM8400_DAC_CLKDIV_6 0x18 #define WM8400_ADC_CLKDIV_1 0x00 #define WM8400_ADC_CLKDIV_1_5 0x20 #define WM8400_ADC_CLKDIV_2 0x40 #define WM8400_ADC_CLKDIV_3 0x60 #define WM8400_ADC_CLKDIV_4 0x80 #define WM8400_ADC_CLKDIV_5_5 0xa0 #define WM8400_ADC_CLKDIV_6 0xc0 #define WM8400_BCLK_DIV_1 (0x0 << 1) #define WM8400_BCLK_DIV_1_5 (0x1 << 1) #define WM8400_BCLK_DIV_2 (0x2 << 1) #define WM8400_BCLK_DIV_3 (0x3 << 1) #define WM8400_BCLK_DIV_4 (0x4 << 1) #define WM8400_BCLK_DIV_5_5 (0x5 << 1) #define WM8400_BCLK_DIV_6 (0x6 << 1) #define WM8400_BCLK_DIV_8 (0x7 << 1) #define WM8400_BCLK_DIV_11 (0x8 << 1) #define WM8400_BCLK_DIV_12 (0x9 << 1) #define WM8400_BCLK_DIV_16 (0xA << 1) #define WM8400_BCLK_DIV_22 (0xB << 1) #define WM8400_BCLK_DIV_24 (0xC << 1) #define WM8400_BCLK_DIV_32 (0xD << 1) #define WM8400_BCLK_DIV_44 (0xE << 1) #define WM8400_BCLK_DIV_48 (0xF << 1) #endif aefd35337d54a8c1afb'>diff
path: root/drivers/usb/mtu3
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-15 12:36:32 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-15 12:36:32 -0800
commit7f138b9706f5f3528d598aefd35337d54a8c1afb (patch)
tree5e916b34eba72e20719807259d69cf585253b082 /drivers/usb/mtu3
parent793e039ea07191946b5ec136db00f8b03ee4a13e (diff)
parent802c03881f29844af0252b6e22be5d2f65f93fd0 (diff)
Merge tag 'tty-4.10-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
Pull tty/serial fixes from Greg KH: "Here are some small tty/serial driver fixes for 4.10-rc4 to resolve a number of reported issues. Nothing major here at all, one revert of a problematic patch, and some other tiny bugfixes. Full details are in the shortlog below. All have been in linux-next with no reported issues" * tag 'tty-4.10-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: sysrq: attach sysrq handler correctly for 32-bit kernel Revert "tty: serial: 8250: add CON_CONSDEV to flags" Clearing FIFOs in RS485 emulation mode causes subsequent transmits to break 8250_pci: Fix potential use-after-free in error path tty/serial: atmel: RS485 half duplex w/DMA: enable RX after TX is done tty/serial: atmel_serial: BUG: stop DMA from transmitting in stop_tx
Diffstat (limited to 'drivers/usb/mtu3')