Bluetooth: mediatek: Fix memory leak
[linux-2.6/btrfs-unstable.git] / drivers / tty / hvc / hvc_udbg.c
bloba4c9913f76a0672bf8cb7b69d28ce1a42447cb4b
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * udbg interface to hvc_console.c
5 * (C) Copyright David Gibson, IBM Corporation 2008.
6 */
8 #include <linux/console.h>
9 #include <linux/delay.h>
10 #include <linux/err.h>
11 #include <linux/init.h>
12 #include <linux/moduleparam.h>
13 #include <linux/types.h>
14 #include <linux/irq.h>
16 #include <asm/udbg.h>
18 #include "hvc_console.h"
20 struct hvc_struct *hvc_udbg_dev;
22 static int hvc_udbg_put(uint32_t vtermno, const char *buf, int count)
24 int i;
26 for (i = 0; i < count && udbg_putc; i++)
27 udbg_putc(buf[i]);
29 return i;
32 static int hvc_udbg_get(uint32_t vtermno, char *buf, int count)
34 int i, c;
36 if (!udbg_getc_poll)
37 return 0;
39 for (i = 0; i < count; i++) {
40 if ((c = udbg_getc_poll()) == -1)
41 break;
42 buf[i] = c;
45 return i;
48 static const struct hv_ops hvc_udbg_ops = {
49 .get_chars = hvc_udbg_get,
50 .put_chars = hvc_udbg_put,
53 static int __init hvc_udbg_init(void)
55 struct hvc_struct *hp;
57 if (!udbg_putc)
58 return -ENODEV;
60 BUG_ON(hvc_udbg_dev);
62 hp = hvc_alloc(0, 0, &hvc_udbg_ops, 16);
63 if (IS_ERR(hp))
64 return PTR_ERR(hp);
66 hvc_udbg_dev = hp;
68 return 0;
70 device_initcall(hvc_udbg_init);
72 static int __init hvc_udbg_console_init(void)
74 if (!udbg_putc)
75 return -ENODEV;
77 hvc_instantiate(0, 0, &hvc_udbg_ops);
78 add_preferred_console("hvc", 0, NULL);
80 return 0;
82 console_initcall(hvc_udbg_console_init);