repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'for_2.6.38' of git://gitorious.org/iommu_mailbox/iommu_mailbox into...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
arch
/
m68k
/
sun3
/
leds.c
blob
aad2e0a0682ec23116876fe10edcc92a83d3bf59
1
#include <asm/contregs.h>
2
#include <asm/sun3mmu.h>
3
#include <asm/io.h>
4
5
void
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
}