Now the basics should be working and therefore the self test should pass. Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> --- lib/s390x/io.c | 5 +++-- lib/s390x/sclp.h | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/s390x/io.c b/lib/s390x/io.c index a652124..067ecf7 100644 --- a/lib/s390x/io.c +++ b/lib/s390x/io.c @@ -12,6 +12,7 @@ */ #include <libcflat.h> #include <asm/spinlock.h> +#include "sclp.h" extern void setup_args_progname(const char *args); extern char ipl_args[]; @@ -21,8 +22,7 @@ static struct spinlock lock; void puts(const char *s) { spin_lock(&lock); - /* FIXME */ - (void)s; + sclp_print(s); spin_unlock(&lock); } @@ -39,6 +39,7 @@ static void sigp_stop() void setup() { setup_args_progname(ipl_args); + sclp_setup(); } void exit(int code) diff --git a/lib/s390x/sclp.h b/lib/s390x/sclp.h index c48cc21..3f4c138 100644 --- a/lib/s390x/sclp.h +++ b/lib/s390x/sclp.h @@ -102,4 +102,7 @@ typedef struct ReadEventData { uint32_t mask; } __attribute__((packed)) ReadEventData; +void sclp_setup(void); +void sclp_print(const char *str); + #endif /* SCLP_H */ -- 2.9.3