mirror of https://github.com/thesofproject/sof.git
SHIM: Correction for the APL header file macro
The macro doesn't use the parameter x so better to remove it. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
parent
93f9cab7c6
commit
2927377c45
|
@ -123,7 +123,7 @@
|
|||
|
||||
/* LP GPDMA Force Dynamic Clock Gating bits, 0--enable */
|
||||
#define SHIM_CLKCTL_LPGPDMAFDCGB(x) (0x1 << (26 + x))
|
||||
#define SHIM_CLKCTL_DMICFDCGB(x) (0x1 << 24)
|
||||
#define SHIM_CLKCTL_DMICFDCGB (0x1 << 24)
|
||||
#define SHIM_CLKCTL_I2SFDCGB(x) (0x1 << (20 + x))
|
||||
#define SHIM_CLKCTL_I2SEFDCGB(x) (0x1 << (18 + x))
|
||||
#define SHIM_CLKCTL_TCPLCG(x) (0x1 << (16 + x))
|
||||
|
|
Loading…
Reference in New Issue