blob: dfd39baed8b1746294c494d9400711745d48b292 [file] [log] [blame]
Andrew Walbran58954f92019-05-09 17:11:20 +01001/*
David Brazdil52230432020-01-27 15:08:34 +00002 * Copyright 2020 The Hafnium Authors.
Andrew Walbran58954f92019-05-09 17:11:20 +01003 *
Andrew Walbrane959ec12020-06-17 15:01:09 +01004 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
Andrew Walbran58954f92019-05-09 17:11:20 +01007 */
8
David Brazdil52230432020-01-27 15:08:34 +00009#include "hf/stdout.h"
10
Andrew Walbran58954f92019-05-09 17:11:20 +010011#include "hf/plat/console.h"
12
David Brazdil52230432020-01-27 15:08:34 +000013void stdout_putchar(char c)
Andrew Walbran58954f92019-05-09 17:11:20 +010014{
David Brazdil52230432020-01-27 15:08:34 +000015 plat_console_putchar(c);
Andrew Walbran58954f92019-05-09 17:11:20 +010016}