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

Commit 179183bf authored by Kyle McMartin's avatar Kyle McMartin
Browse files

[PARISC] remove unused pdc_iodc_printf function

parent e2be75ae
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -58,19 +58,6 @@ static void pdc_console_write(struct console *co, const char *s, unsigned count)
	pdc_iodc_print(s, count);
}

void pdc_printf(const char *fmt, ...)
{
	va_list args;
	char buf[1024];
	int i, len;

	va_start(args, fmt);
	len = vscnprintf(buf, sizeof(buf), fmt, args);
	va_end(args);

	pdc_iodc_print(buf, len);
}

int pdc_console_poll_key(struct console *co)
{
	return pdc_iodc_getc();
+0 −1
Original line number Diff line number Diff line
@@ -646,7 +646,6 @@ void pdc_io_reset(void);
void pdc_io_reset_devices(void);
int pdc_iodc_getc(void);
int pdc_iodc_print(unsigned char *str, unsigned count);
void pdc_printf(const char *fmt, ...);

void pdc_emergency_unlock(void);
int pdc_sti_call(unsigned long func, unsigned long flags,