]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/m68k/sun3/leds.c
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / m68k / sun3 / leds.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2#include <asm/contregs.h>
3#include <asm/sun3mmu.h>
4#include <asm/io.h>
5
6void sun3_leds(unsigned char byte)
7{
8 unsigned char dfc;
9
10 GET_DFC(dfc);
2b9e12d0
AG
11 SET_DFC(FC_CONTROL);
12 SET_CONTROL_BYTE(AC_LEDS, byte);
1da177e4
LT
13 SET_DFC(dfc);
14}