Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b81e800 authored by Michael Ellerman's avatar Michael Ellerman Committed by Paul Mackerras
Browse files

[PATCH] powerpc: Cleanup hvc_rtas.c a little



A few cleanups in hvc_rtas.c:
 1. Remove unused RTASCONS_PUT_ATTEMPTS
 2. Remove unused rtascons_put_delay.
 3. Use i as a loop counter like everyone else on earth.
 4. Remove pointless variables, eg. x = foo; if (x) return something_else;
 5. Whitespace cleanups and formatting.

Signed-off-by: default avatarMichael Ellerman <michael@ellerman.id.au>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent b5374461
Loading
Loading
Loading
Loading
+16 −21
Original line number Original line Diff line number Diff line
@@ -41,37 +41,28 @@
#define hvc_rtas_cookie 0x67781e15
#define hvc_rtas_cookie 0x67781e15
struct hvc_struct *hvc_rtas_dev;
struct hvc_struct *hvc_rtas_dev;


#define RTASCONS_PUT_ATTEMPTS  16

static int rtascons_put_char_token = RTAS_UNKNOWN_SERVICE;
static int rtascons_put_char_token = RTAS_UNKNOWN_SERVICE;
static int rtascons_get_char_token = RTAS_UNKNOWN_SERVICE;
static int rtascons_get_char_token = RTAS_UNKNOWN_SERVICE;
static int rtascons_put_delay = 100;
module_param_named(put_delay, rtascons_put_delay, int, 0644);


static inline int hvc_rtas_write_console(uint32_t vtermno, const char *buf, int count)
static inline int hvc_rtas_write_console(uint32_t vtermno, const char *buf,
		int count)
{
{
	int done;
	int i;


	/* if there is more than one character to be displayed, wait a bit */
	for (i = 0; i < count; i++) {
	for (done = 0; done < count; done++) {
		if (rtas_call(rtascons_put_char_token, 1, 1, NULL, buf[i]))
		int result;
		result = rtas_call(rtascons_put_char_token, 1, 1, NULL, buf[done]);
		if (result)
			break;
			break;
	}
	}
	/* the calling routine expects to receive the number of bytes sent */

	return done;
	return i;
}
}


static int hvc_rtas_read_console(uint32_t vtermno, char *buf, int count)
static int hvc_rtas_read_console(uint32_t vtermno, char *buf, int count)
{
{
	int i;
	int i, c;


	for (i = 0; i < count; i++) {
	for (i = 0; i < count; i++) {
		int c, err;
		if (rtas_call(rtascons_get_char_token, 0, 2, &c))

		err = rtas_call(rtascons_get_char_token, 0, 2, &c);
		if (err)
			break;
			break;


		buf[i] = c;
		buf[i] = c;
@@ -106,7 +97,9 @@ static int hvc_rtas_init(void)
	hp = hvc_alloc(hvc_rtas_cookie, NO_IRQ, &hvc_rtas_get_put_ops);
	hp = hvc_alloc(hvc_rtas_cookie, NO_IRQ, &hvc_rtas_get_put_ops);
	if (IS_ERR(hp))
	if (IS_ERR(hp))
		return PTR_ERR(hp);
		return PTR_ERR(hp);

	hvc_rtas_dev = hp;
	hvc_rtas_dev = hp;

	return 0;
	return 0;
}
}
module_init(hvc_rtas_init);
module_init(hvc_rtas_init);
@@ -114,8 +107,8 @@ module_init(hvc_rtas_init);
/* This will tear down the tty portion of the driver */
/* This will tear down the tty portion of the driver */
static void __exit hvc_rtas_exit(void)
static void __exit hvc_rtas_exit(void)
{
{
	/* Really the fun isn't over until the worker thread breaks down and the
	/* Really the fun isn't over until the worker thread breaks down and
	 * tty cleans up */
	 * the tty cleans up */
	if (hvc_rtas_dev)
	if (hvc_rtas_dev)
		hvc_remove(hvc_rtas_dev);
		hvc_remove(hvc_rtas_dev);
}
}
@@ -127,12 +120,14 @@ static int hvc_rtas_console_init(void)
	rtascons_put_char_token = rtas_token("put-term-char");
	rtascons_put_char_token = rtas_token("put-term-char");
	if (rtascons_put_char_token == RTAS_UNKNOWN_SERVICE)
	if (rtascons_put_char_token == RTAS_UNKNOWN_SERVICE)
		return -EIO;
		return -EIO;

	rtascons_get_char_token = rtas_token("get-term-char");
	rtascons_get_char_token = rtas_token("get-term-char");
	if (rtascons_get_char_token == RTAS_UNKNOWN_SERVICE)
	if (rtascons_get_char_token == RTAS_UNKNOWN_SERVICE)
		return -EIO;
		return -EIO;


	hvc_instantiate(hvc_rtas_cookie, 0, &hvc_rtas_get_put_ops);
	hvc_instantiate(hvc_rtas_cookie, 0, &hvc_rtas_get_put_ops);
	add_preferred_console("hvc", 0, NULL);
	add_preferred_console("hvc", 0, NULL);

	return 0;
	return 0;
}
}
console_initcall(hvc_rtas_console_init);
console_initcall(hvc_rtas_console_init);