]> err.no Git - linux-2.6/blobdiff - arch/powerpc/boot/stdio.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shaggy...
[linux-2.6] / arch / powerpc / boot / stdio.c
index 6d5f6382e1ce26e843b4d70d8efa990aa664c70f..0a9feeb983424f53e98b047609f510adab849f26 100644 (file)
@@ -320,6 +320,7 @@ printf(const char *fmt, ...)
        va_start(args, fmt);
        n = vsprintf(sprint_buf, fmt, args);
        va_end(args);
-       console_ops.write(sprint_buf, n);
+       if (console_ops.write)
+               console_ops.write(sprint_buf, n);
        return n;
 }