Commit 97d7e2e3 authored by Helge Deller's avatar Helge Deller

parisc: Use F_EXTEND() macro in iosapic code

and reduce include file list.
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 3654f012
...@@ -126,21 +126,10 @@ ...@@ -126,21 +126,10 @@
** o disable IRdT - call disable_irq(vector[line]->processor_irq) ** o disable IRdT - call disable_irq(vector[line]->processor_irq)
*/ */
/* FIXME: determine which include files are really needed */
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <asm/byteorder.h> /* get in-line asm for swab */
#include <asm/pdc.h> #include <asm/pdc.h>
#include <asm/pdcpat.h> #include <asm/pdcpat.h>
#include <asm/page.h>
#include <asm/io.h> /* read/write functions */
#ifdef CONFIG_SUPERIO #ifdef CONFIG_SUPERIO
#include <asm/superio.h> #include <asm/superio.h>
#endif #endif
...@@ -168,12 +157,8 @@ ...@@ -168,12 +157,8 @@
#define DBG_IRT(x...) #define DBG_IRT(x...)
#endif #endif
#ifdef CONFIG_64BIT
#define COMPARE_IRTE_ADDR(irte, hpa) ((irte)->dest_iosapic_addr == (hpa))
#else
#define COMPARE_IRTE_ADDR(irte, hpa) \ #define COMPARE_IRTE_ADDR(irte, hpa) \
((irte)->dest_iosapic_addr == ((hpa) | 0xffffffff00000000ULL)) ((irte)->dest_iosapic_addr == F_EXTEND(hpa))
#endif
#define IOSAPIC_REG_SELECT 0x00 #define IOSAPIC_REG_SELECT 0x00
#define IOSAPIC_REG_WINDOW 0x10 #define IOSAPIC_REG_WINDOW 0x10
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment