diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2011-08-24 16:39:33 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-08-25 11:09:54 -0500 |
commit | 968add63523933786a85ab271b277d79dc5851e6 (patch) | |
tree | a671080ea98b9d00fbeffd7f12b32d0307047374 /src/include/kernel | |
parent | 2975b98713152151c396e9503c9dd166ac8402d8 (diff) | |
download | talos-hostboot-968add63523933786a85ab271b277d79dc5851e6.tar.gz talos-hostboot-968add63523933786a85ab271b277d79dc5851e6.zip |
Fix for printkd.
Change-Id: I3af281d6e3ef2914b78298b587f098942e8a1c43
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/278
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/kernel')
-rw-r--r-- | src/include/kernel/console.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/kernel/console.H b/src/include/kernel/console.H index 51a729960..850fac46c 100644 --- a/src/include/kernel/console.H +++ b/src/include/kernel/console.H @@ -28,7 +28,7 @@ #include <builtins.h> #ifdef HOSTBOOT_DEBUG - #define printkd(format...) printk(## format) + #define printkd(format...) printk(format) #else #define printkd(format...) #endif |