mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
mmc: atmel-mci: use ATMEL_PDC_SCND_BUF_OFF instead of a literal value
Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
11d1488b01
commit
1ebbe3d31f
@ -603,8 +603,8 @@ static void atmci_pdc_set_single_buf(struct atmel_mci *host,
|
||||
}
|
||||
|
||||
if (buf_nb == PDC_SECOND_BUF) {
|
||||
pointer_reg += 0x10;
|
||||
counter_reg += 0x10;
|
||||
pointer_reg += ATMEL_PDC_SCND_BUF_OFF;
|
||||
counter_reg += ATMEL_PDC_SCND_BUF_OFF;
|
||||
}
|
||||
|
||||
atmci_writel(host, pointer_reg, sg_dma_address(host->sg));
|
||||
|
@ -33,4 +33,6 @@
|
||||
|
||||
#define ATMEL_PDC_PTSR 0x124 /* Transfer Status Register */
|
||||
|
||||
#define ATMEL_PDC_SCND_BUF_OFF 0x10 /* Offset between first and second buffer registers */
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user