diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-03-27 14:04:57 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-04-02 12:00:14 -0400 |
commit | 327e8b6b25588ab906856a4e506b28c59422f11b (patch) | |
tree | f22c623e193a885bfa3fc2b278792167d9efbd09 /arch/tile | |
parent | 884197f7ea93dc2faf399060dc29cb0dbbda6937 (diff) | |
download | talos-op-linux-327e8b6b25588ab906856a4e506b28c59422f11b.tar.gz talos-op-linux-327e8b6b25588ab906856a4e506b28c59422f11b.zip |
arch/tile: fix typo in <arch/spr_def.h>
We aren't yet using this definition in the kernel, but fix it up
before someone goes looking for it.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/include/arch/spr_def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/tile/include/arch/spr_def.h b/arch/tile/include/arch/spr_def.h index f548efeb2de3..d6ba449b5363 100644 --- a/arch/tile/include/arch/spr_def.h +++ b/arch/tile/include/arch/spr_def.h @@ -60,8 +60,8 @@ _concat4(SPR_IPI_EVENT_, CONFIG_KERNEL_PL,,) #define SPR_IPI_EVENT_RESET_K \ _concat4(SPR_IPI_EVENT_RESET_, CONFIG_KERNEL_PL,,) -#define SPR_IPI_MASK_SET_K \ - _concat4(SPR_IPI_MASK_SET_, CONFIG_KERNEL_PL,,) +#define SPR_IPI_EVENT_SET_K \ + _concat4(SPR_IPI_EVENT_SET_, CONFIG_KERNEL_PL,,) #define INT_IPI_K \ _concat4(INT_IPI_, CONFIG_KERNEL_PL,,) |