提交 cb454fe1 编写于 作者: J Joe Millenbach 提交者: H. Peter Anvin

x86, boot: Changed error putstr path to match new debug_putstr format

For consistency we changed the error output path to match the new debug path.
Signed-off-by: NJoe Millenbach <jmillenbach@gmail.com>
Link: http://lkml.kernel.org/r/1342746282-28497-4-git-send-email-jmillenbach@gmail.comSigned-off-by: NGokul Caushik <caushik1@gmail.com>
Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
Signed-off-by: NH. Peter Anvin <hpa@zytor.com>
上级 e605a425
...@@ -270,9 +270,9 @@ void *memcpy(void *dest, const void *src, size_t n) ...@@ -270,9 +270,9 @@ void *memcpy(void *dest, const void *src, size_t n)
static void error(char *x) static void error(char *x)
{ {
__putstr(1, "\n\n"); error_putstr("\n\n");
__putstr(1, x); error_putstr(x);
__putstr(1, "\n\n -- System halted"); error_putstr("\n\n -- System halted");
while (1) while (1)
asm("hlt"); asm("hlt");
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
extern struct boot_params *real_mode; /* Pointer to real-mode data */ extern struct boot_params *real_mode; /* Pointer to real-mode data */
void __putstr(int error, const char *s); void __putstr(int error, const char *s);
#define putstr(__x) __putstr(0, __x) #define putstr(__x) __putstr(0, __x)
#define error_putstr(__x) __putstr(1, __x)
#define puts(__x) __putstr(0, __x) #define puts(__x) __putstr(0, __x)
/* cmdline.c */ /* cmdline.c */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册