swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: d2f8d7ee1a9b4650b4e43325b321801264f7c37a authored by Linus Torvalds on 13 February 2009, 23:31:30 UTC
Linux 2.6.29-rc5
Tip revision: d2f8d7e
leds.c
#include <asm/contregs.h>
#include <asm/sun3mmu.h>
#include <asm/io.h>

void sun3_leds(unsigned char byte)
{
	unsigned char dfc;

	GET_DFC(dfc);
        SET_DFC(FC_CONTROL);
	SET_CONTROL_BYTE(AC_LEDS,byte);
	SET_DFC(dfc);
}
back to top