Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62591
b: refs/heads/master
c: 4d404ed
h: refs/heads/master
i:
  62589: bd88b06
  62587: 3d199b2
  62583: 695f425
  62575: a79c558
  62559: 8789c2d
  62527: bfed6b5
  62463: 02837fb
v: v3
  • Loading branch information
Ishizaki Kou authored and Paul Mackerras committed Jul 22, 2007
1 parent c69c034 commit 8e466cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 776568d4c93fe8def5ab4060344af554fe2b44be
refs/heads/master: 4d404edce30f911004850d472e05a31efd751662
5 changes: 5 additions & 0 deletions trunk/arch/powerpc/xmon/nonstdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,8 @@ void xmon_printf(const char *format, ...)
va_end(args);
xmon_write(xmon_outbuf, n);
}

void xmon_puts(const char *str)
{
xmon_write(str, strlen(str));
}
1 change: 1 addition & 0 deletions trunk/arch/powerpc/xmon/nonstdio.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

extern int xmon_putchar(int c);
extern int xmon_getchar(void);
extern void xmon_puts(const char *);
extern char *xmon_gets(char *, int);
extern void xmon_printf(const char *, ...);
extern void xmon_map_scc(void);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/xmon/xmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ cmds(struct pt_regs *excp)
mdelay(2000);
return cmd;
case '?':
printf(help_string);
xmon_puts(help_string);
break;
case 'b':
bpt_cmds();
Expand Down

0 comments on commit 8e466cf

Please sign in to comment.