Skip to content

Commit

Permalink
[MIPS] Sibyte: Fix names of the clockevent devices.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Nov 2, 2007
1 parent 9e32a51 commit 2e5dcd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/mips/sibyte/bcm1480/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void __cpuinit sb1480_clockevent_init(void)

BUG_ON(cpu > 3); /* Only have 4 general purpose timers */

sprintf(name, "bcm1480-counter %d", cpu);
sprintf(name, "bcm1480-counter-%d", cpu);
cd->name = name;
cd->features = CLOCK_EVT_FEAT_PERIODIC |
CLOCK_EVT_FEAT_ONESHOT;
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/sibyte/sb1250/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void __cpuinit sb1250_clockevent_init(void)
/* Only have 4 general purpose timers, and we use last one as hpt */
BUG_ON(cpu > 2);

sprintf(name, "bcm1480-counter %d", cpu);
sprintf(name, "sb1250-counter-%d", cpu);
cd->name = name;
cd->features = CLOCK_EVT_FEAT_PERIODIC |
CLOCK_EVT_FEAT_ONESHOT;
Expand Down

0 comments on commit 2e5dcd2

Please sign in to comment.