| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Hitachi UL SolutionEngine 7343 FPGA IRQ Support. |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | * |
|---|
| 7 | 8 | * Based on linux/arch/sh/boards/se/7343/irq.c |
|---|
| 8 | 9 | * Copyright (C) 2007 Nobuhiro Iwamatsu |
|---|
| 9 | | - * |
|---|
| 10 | | - * This file is subject to the terms and conditions of the GNU General Public |
|---|
| 11 | | - * License. See the file "COPYING" in the main directory of this archive |
|---|
| 12 | | - * for more details. |
|---|
| 13 | 10 | */ |
|---|
| 14 | 11 | #define DRV_NAME "SE7343-FPGA" |
|---|
| 15 | 12 | #define pr_fmt(fmt) DRV_NAME ": " fmt |
|---|
| .. | .. |
|---|
| 19 | 16 | #include <linux/interrupt.h> |
|---|
| 20 | 17 | #include <linux/irqdomain.h> |
|---|
| 21 | 18 | #include <linux/io.h> |
|---|
| 22 | | -#include <asm/sizes.h> |
|---|
| 19 | +#include <linux/sizes.h> |
|---|
| 23 | 20 | #include <mach-se/mach/se7343.h> |
|---|
| 24 | 21 | |
|---|
| 25 | 22 | #define PA_CPLD_BASE_ADDR 0x11400000 |
|---|