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

Commit 101788b0 authored by David S. Miller's avatar David S. Miller
Browse files

[SPARC64]: Kill 'prom_keyboard'.



Nothing ever sets it, so it just takes up space.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1d5509aa
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -114,15 +114,12 @@ void cpu_idle(void)
extern char reboot_command [];

extern void (*prom_palette)(int);
extern void (*prom_keyboard)(void);

void machine_halt(void)
{
	sstate_halt();
	if (prom_palette)
		prom_palette (1);
	if (prom_keyboard)
		prom_keyboard();
	prom_halt();
	panic("Halt failed!");
}
@@ -132,8 +129,6 @@ void machine_alt_power_off(void)
	sstate_poweroff();
	if (prom_palette)
		prom_palette(1);
	if (prom_keyboard)
		prom_keyboard();
	prom_halt_power_off();
	panic("Power-off failed!");
}
@@ -147,8 +142,6 @@ void machine_restart(char * cmd)
	if (p) *p = 0;
	if (prom_palette)
		prom_palette (1);
	if (prom_keyboard)
		prom_keyboard();
	if (cmd)
		prom_reboot(cmd);
	if (*reboot_command)
+0 −1
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@ struct screen_info screen_info = {
};

void (*prom_palette)(int);
void (*prom_keyboard)(void);

static void
prom_console_write(struct console *con, const char *s, unsigned n)