mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 19:11:02 +07:00
18 lines
260 B
C
18 lines
260 B
C
|
/*
|
||
|
* header file for ADAU1701 SigmaDSP processor
|
||
|
*
|
||
|
* Copyright 2011 Analog Devices Inc.
|
||
|
*
|
||
|
* Licensed under the GPL-2 or later.
|
||
|
*/
|
||
|
|
||
|
#ifndef _ADAU1701_H
|
||
|
#define _ADAU1701_H
|
||
|
|
||
|
enum adau1701_clk_src {
|
||
|
ADAU1701_CLK_SRC_OSC,
|
||
|
ADAU1701_CLK_SRC_MCLK,
|
||
|
};
|
||
|
|
||
|
#endif
|