diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-02-16 11:28:05 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-02-22 09:05:52 +0530 |
commit | 8e2067be0aa71d119ade237c5351245aff78e024 (patch) | |
tree | 94b1c63047f9538a212cf58b8bedb87af19ef30d /drivers/dma | |
parent | a2826e662eb13a041078260692b4e023ed5cbf62 (diff) | |
download | linux-8e2067be0aa71d119ade237c5351245aff78e024.tar.gz linux-8e2067be0aa71d119ade237c5351245aff78e024.tar.bz2 linux-8e2067be0aa71d119ade237c5351245aff78e024.zip |
dmaengine: idma64: fix typo in WR_ISSUE_THD(x)
There is a typo in the definition of IDMA64C_CFGH_WR_ISSUE_THD(x). Fix it by
swapping characters.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/idma64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/idma64.h b/drivers/dma/idma64.h index 8423f13ed0da..dc6874424188 100644 --- a/drivers/dma/idma64.h +++ b/drivers/dma/idma64.h @@ -71,7 +71,7 @@ #define IDMA64C_CFGH_SRC_PER(x) ((x) << 0) /* src peripheral */ #define IDMA64C_CFGH_DST_PER(x) ((x) << 4) /* dst peripheral */ #define IDMA64C_CFGH_RD_ISSUE_THD(x) ((x) << 8) -#define IDMA64C_CFGH_RW_ISSUE_THD(x) ((x) << 18) +#define IDMA64C_CFGH_WR_ISSUE_THD(x) ((x) << 18) /* Interrupt registers */ |