| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | #ifndef _I8042_H |
|---|
| 2 | 3 | #define _I8042_H |
|---|
| 3 | 4 | |
|---|
| 4 | 5 | |
|---|
| 5 | 6 | /* |
|---|
| 6 | 7 | * Copyright (c) 1999-2002 Vojtech Pavlik |
|---|
| 7 | | - * |
|---|
| 8 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 9 | | - * under the terms of the GNU General Public License version 2 as published by |
|---|
| 10 | | - * the Free Software Foundation. |
|---|
| 11 | 8 | */ |
|---|
| 12 | 9 | |
|---|
| 13 | 10 | /* |
|---|
| .. | .. |
|---|
| 20 | 17 | #include "i8042-ip22io.h" |
|---|
| 21 | 18 | #elif defined(CONFIG_SNI_RM) |
|---|
| 22 | 19 | #include "i8042-snirm.h" |
|---|
| 23 | | -#elif defined(CONFIG_PPC) |
|---|
| 24 | | -#include "i8042-ppcio.h" |
|---|
| 25 | 20 | #elif defined(CONFIG_SPARC) |
|---|
| 26 | 21 | #include "i8042-sparcio.h" |
|---|
| 27 | 22 | #elif defined(CONFIG_X86) || defined(CONFIG_IA64) |
|---|
| 28 | | -#include "i8042-x86ia64io.h" |
|---|
| 29 | | -#elif defined(CONFIG_UNICORE32) |
|---|
| 30 | | -#include "i8042-unicore32io.h" |
|---|
| 23 | +#include "i8042-acpipnpio.h" |
|---|
| 31 | 24 | #else |
|---|
| 32 | 25 | #include "i8042-io.h" |
|---|
| 33 | 26 | #endif |
|---|