Merge pull request #476 from jajanusz/fix-hda-dgbwp-typo

hda-dma: fix typo - read DGBWP
This commit is contained in:
Liam Girdwood 2018-10-10 16:01:17 +01:00 committed by GitHub
commit 8aff3de2ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ static inline uint32_t hda_dma_get_data_size(struct dma *dma, uint32_t chan)
const uint32_t cs = host_dma_reg_read(dma, chan, DGCS);
const uint32_t bs = host_dma_reg_read(dma, chan, DGBS);
const uint32_t rp = host_dma_reg_read(dma, chan, DGBRP);
const uint32_t wp = host_dma_reg_read(dma, chan, DGBRP);
const uint32_t wp = host_dma_reg_read(dma, chan, DGBWP);
uint32_t ds;