ixp4xx-qmgr.c (fcf2d8978cd538a5d614076fccfe9a4af23b9cc9) | ixp4xx-qmgr.c (4af20dc583b364fad45df6fb81873606af8b70fb) |
---|---|
1/* 2 * Intel IXP4xx Queue Manager driver for Linux 3 * 4 * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of version 2 of the GNU General Public License 8 * as published by the Free Software Foundation. 9 */ 10 11#include <linux/ioport.h> 12#include <linux/interrupt.h> 13#include <linux/kernel.h> 14#include <linux/module.h> 15#include <linux/of.h> | 1/* 2 * Intel IXP4xx Queue Manager driver for Linux 3 * 4 * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of version 2 of the GNU General Public License 8 * as published by the Free Software Foundation. 9 */ 10 11#include <linux/ioport.h> 12#include <linux/interrupt.h> 13#include <linux/kernel.h> 14#include <linux/module.h> 15#include <linux/of.h> |
16#include <mach/qmgr.h> | 16#include <linux/soc/ixp4xx/qmgr.h> |
17 18/* FIXME: get rid of these static assigments */ 19#define IRQ_IXP4XX_BASE 16 20#define IRQ_IXP4XX_QM1 (IRQ_IXP4XX_BASE + 3) 21#define IRQ_IXP4XX_QM2 (IRQ_IXP4XX_BASE + 4) 22 23static struct qmgr_regs __iomem *qmgr_regs = IXP4XX_QMGR_BASE_VIRT; 24static struct resource *mem_res; --- 358 unchanged lines hidden --- | 17 18/* FIXME: get rid of these static assigments */ 19#define IRQ_IXP4XX_BASE 16 20#define IRQ_IXP4XX_QM1 (IRQ_IXP4XX_BASE + 3) 21#define IRQ_IXP4XX_QM2 (IRQ_IXP4XX_BASE + 4) 22 23static struct qmgr_regs __iomem *qmgr_regs = IXP4XX_QMGR_BASE_VIRT; 24static struct resource *mem_res; --- 358 unchanged lines hidden --- |