Skip to content

Commit

Permalink
Blackfin: bf54x: tweak MMR pint names
Browse files Browse the repository at this point in the history
The hardware block uses the name "request" rather than "irq", so update
the struct accordingly.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  • Loading branch information
Mike Frysinger committed Jul 23, 2011
1 parent b0759a4 commit b69c920
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/blackfin/kernel/debug-mmrs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf548/include/mach/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b69c920

Please sign in to comment.