Skip to content

Commit

Permalink
ASoC: Intel: Fix naming of HMDC register macros.
Browse files Browse the repository at this point in the history
HMDC is the correct naming for this register.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Jie Yang <yang.jie@intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Liam Girdwood authored and Mark Brown committed Jul 30, 2014
1 parent afdb74f commit ee4a6ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions sound/soc/intel/sst-dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#define SST_CLKCTL 0x78
#define SST_CSR2 0x80
#define SST_LTRC 0xE0
#define SST_HDMC 0xE8
#define SST_HMDC 0xE8

#define SST_SHIM_BEGIN SST_CSR
#define SST_SHIM_END SST_HDMC
Expand Down Expand Up @@ -122,9 +122,9 @@
/* LTRC */
#define SST_LTRC_VAL(x) (x << 0)

/* HDMC */
#define SST_HDMC_HDDA0(x) (x << 0)
#define SST_HDMC_HDDA1(x) (x << 7)
/* HMDC */
#define SST_HMDC_HDDA0(x) (x << 0)
#define SST_HMDC_HDDA1(x) (x << 7)


/* SST Vendor Defined Registers and bits */
Expand Down
6 changes: 3 additions & 3 deletions sound/soc/intel/sst-haswell-dsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ static void hsw_boot(struct sst_dsp *sst)
SST_CSR2_SDFD_SSP1);

/* enable DMA engine 0,1 all channels to access host memory */
sst_dsp_shim_update_bits_unlocked(sst, SST_HDMC,
SST_HDMC_HDDA1(0xff) | SST_HDMC_HDDA0(0xff),
SST_HDMC_HDDA1(0xff) | SST_HDMC_HDDA0(0xff));
sst_dsp_shim_update_bits_unlocked(sst, SST_HMDC,
SST_HMDC_HDDA1(0xff) | SST_HMDC_HDDA0(0xff),
SST_HMDC_HDDA1(0xff) | SST_HMDC_HDDA0(0xff));

/* disable all clock gating */
writel(0x0, sst->addr.pci_cfg + SST_VDRTCTL2);
Expand Down

0 comments on commit ee4a6ce

Please sign in to comment.