lpc_sch.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | lpc_sch.c (9f8068503d6373c20b83c346d9ab69955420113c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only |
|
1/* 2 * lpc_sch.c - LPC interface for Intel Poulsbo SCH 3 * 4 * LPC bridge function of the Intel SCH contains many other 5 * functional units, such as Interrupt controllers, Timers, 6 * Power Management, System Management, GPIO, RTC, and LPC 7 * Configuration Registers. 8 * 9 * Copyright (c) 2010 CompuLab Ltd 10 * Copyright (c) 2014 Intel Corp. 11 * Author: Denis Turischev <denis@compulab.co.il> | 2/* 3 * lpc_sch.c - LPC interface for Intel Poulsbo SCH 4 * 5 * LPC bridge function of the Intel SCH contains many other 6 * functional units, such as Interrupt controllers, Timers, 7 * Power Management, System Management, GPIO, RTC, and LPC 8 * Configuration Registers. 9 * 10 * Copyright (c) 2010 CompuLab Ltd 11 * Copyright (c) 2014 Intel Corp. 12 * Author: Denis Turischev <denis@compulab.co.il> |
12 * 13 * This program is free software; you can redistribute it and/or modify 14 * it under the terms of the GNU General Public License 2 as published 15 * by the Free Software Foundation. 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. | |
21 */ 22 23#include <linux/kernel.h> 24#include <linux/module.h> 25#include <linux/errno.h> 26#include <linux/acpi.h> 27#include <linux/pci.h> 28#include <linux/mfd/core.h> --- 188 unchanged lines hidden --- | 13 */ 14 15#include <linux/kernel.h> 16#include <linux/module.h> 17#include <linux/errno.h> 18#include <linux/acpi.h> 19#include <linux/pci.h> 20#include <linux/mfd/core.h> --- 188 unchanged lines hidden --- |