22 #include <linux/types.h>
33 static int hvc_tile_get_chars(
uint32_t vt,
char *buf,
int count)
37 for (i = 0; i <
count; ++
i) {
47 static const struct hv_ops hvc_tile_get_put_ops = {
48 .get_chars = hvc_tile_get_chars,
49 .put_chars = hvc_tile_put_chars,
52 static int __init hvc_tile_console_init(
void)
62 static int __init hvc_tile_init(
void)
65 s =
hvc_alloc(0, 0, &hvc_tile_get_put_ops, 128);
66 return IS_ERR(s) ? PTR_ERR(s) : 0;