Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 1 | /* |
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 2 | * Copyright 2020 The Hafnium Authors. |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 3 | * |
Andrew Walbran | e959ec1 | 2020-06-17 15:01:09 +0100 | [diff] [blame^] | 4 | * 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 Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 7 | */ |
8 | |||||
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 9 | #include "hf/stdout.h" |
10 | |||||
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 11 | #include "hf/plat/console.h" |
12 | |||||
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 13 | void stdout_putchar(char c) |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 14 | { |
David Brazdil | 5223043 | 2020-01-27 15:08:34 +0000 | [diff] [blame] | 15 | plat_console_putchar(c); |
Andrew Walbran | 58954f9 | 2019-05-09 17:11:20 +0100 | [diff] [blame] | 16 | } |