Merge git://git.infradead.org/mtd-2.6
[sfrench/cifs-2.6.git] / arch / powerpc / boot / stdio.c
index b5aa522f8b777e52560ec0bbb37207956b3c4237..6d5f6382e1ce26e843b4d70d8efa990aa664c70f 100644 (file)
@@ -10,7 +10,7 @@
 #include <stddef.h>
 #include "string.h"
 #include "stdio.h"
-#include "prom.h"
+#include "ops.h"
 
 size_t strnlen(const char * s, size_t count)
 {
@@ -320,6 +320,6 @@ printf(const char *fmt, ...)
        va_start(args, fmt);
        n = vsprintf(sprint_buf, fmt, args);
        va_end(args);
-       write(stdout, sprint_buf, n);
+       console_ops.write(sprint_buf, n);
        return n;
 }