Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.10 13 lines 218 B view raw
1#include <asm/contregs.h> 2#include <asm/sun3mmu.h> 3#include <asm/io.h> 4 5void sun3_leds(unsigned char byte) 6{ 7 unsigned char dfc; 8 9 GET_DFC(dfc); 10 SET_DFC(FC_CONTROL); 11 SET_CONTROL_BYTE(AC_LEDS, byte); 12 SET_DFC(dfc); 13}