via-cuda.c (597473720f4dc69749542bfcfed4a927a43d935e) via-cuda.c (c0891ac15f0428ffa81b2e818d416bdf3cb74ab6)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Device driver for the Cuda and Egret system controllers found on PowerMacs
4 * and 68k Macs.
5 *
6 * The Cuda or Egret is a 6805 microcontroller interfaced to the 6522 VIA.
7 * This MCU controls system power, Parameter RAM, Real Time Clock and the
8 * Apple Desktop Bus (ADB) that connects to the keyboard and mouse.
9 *
10 * Copyright (C) 1996 Paul Mackerras.
11 */
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Device driver for the Cuda and Egret system controllers found on PowerMacs
4 * and 68k Macs.
5 *
6 * The Cuda or Egret is a 6805 microcontroller interfaced to the 6522 VIA.
7 * This MCU controls system power, Parameter RAM, Real Time Clock and the
8 * Apple Desktop Bus (ADB) that connects to the keyboard and mouse.
9 *
10 * Copyright (C) 1996 Paul Mackerras.
11 */
12#include <stdarg.h>
12#include <linux/stdarg.h>
13#include <linux/types.h>
14#include <linux/errno.h>
15#include <linux/kernel.h>
16#include <linux/delay.h>
17#include <linux/adb.h>
18#include <linux/cuda.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>

--- 785 unchanged lines hidden ---
13#include <linux/types.h>
14#include <linux/errno.h>
15#include <linux/kernel.h>
16#include <linux/delay.h>
17#include <linux/adb.h>
18#include <linux/cuda.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>

--- 785 unchanged lines hidden ---