diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-26 13:00:55 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-07-23 01:18:25 -0400 |
commit | b69c920cb11dde488239e6a4ea7f668983d628ac (patch) | |
tree | 3ed2f77ee7a1e8c901d9bbb6998944ddea62132a /arch/blackfin | |
parent | b0759a4d233107b8f693c0834d4cb917d7fb3a7d (diff) | |
download | op-kernel-dev-b69c920cb11dde488239e6a4ea7f668983d628ac.zip op-kernel-dev-b69c920cb11dde488239e6a4ea7f668983d628ac.tar.gz |
Blackfin: bf54x: tweak MMR pint names
The hardware block uses the name "request" rather than "irq", so update
the struct accordingly.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/debug-mmrs.c | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf548/include/mach/irq.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/kernel/debug-mmrs.c b/arch/blackfin/kernel/debug-mmrs.c index c40dd6b..3ae0296 100644 --- a/arch/blackfin/kernel/debug-mmrs.c +++ b/arch/blackfin/kernel/debug-mmrs.c @@ -1848,7 +1848,7 @@ static int __init bfin_debug_mmrs_init(void) _buf = REGS_STR_PFX(buf, PINT, num); __PINT(MASK_SET, mask_set); __PINT(MASK_CLEAR, mask_clear); - __PINT(IRQ, irq); + __PINT(REQUEST, request); __PINT(ASSIGN, assign); __PINT(EDGE_SET, edge_set); __PINT(EDGE_CLEAR, edge_clear); diff --git a/arch/blackfin/mach-bf548/include/mach/irq.h b/arch/blackfin/mach-bf548/include/mach/irq.h index 533b809..10dc142 100644 --- a/arch/blackfin/mach-bf548/include/mach/irq.h +++ b/arch/blackfin/mach-bf548/include/mach/irq.h @@ -438,7 +438,7 @@ struct bfin_pint_regs { u32 mask_set; u32 mask_clear; - u32 irq; + u32 request; u32 assign; u32 edge_set; u32 edge_clear; |