hppb.c (cf40a76e7d5874bb25f4404eecc58a2e033af885) hppb.c (9b8eeab019762fa43c5ffa6e2f8e1039f8e99157)
1/*
2** hppb.c:
3** HP-PB bus driver for the NOVA and K-Class systems.
4**
5** (c) Copyright 2002 Ryan Bradetich
6** (c) Copyright 2002 Hewlett-Packard Company
7**
8** This program is free software; you can redistribute it and/or modify

--- 9 unchanged lines hidden (view full) ---

18#include <linux/slab.h>
19#include <linux/dma-mapping.h>
20#include <linux/ioport.h>
21
22#include <asm/io.h>
23#include <asm/hardware.h>
24#include <asm/parisc-device.h>
25
1/*
2** hppb.c:
3** HP-PB bus driver for the NOVA and K-Class systems.
4**
5** (c) Copyright 2002 Ryan Bradetich
6** (c) Copyright 2002 Hewlett-Packard Company
7**
8** This program is free software; you can redistribute it and/or modify

--- 9 unchanged lines hidden (view full) ---

18#include <linux/slab.h>
19#include <linux/dma-mapping.h>
20#include <linux/ioport.h>
21
22#include <asm/io.h>
23#include <asm/hardware.h>
24#include <asm/parisc-device.h>
25
26#include "iommu.h"
27
26struct hppb_card {
27 unsigned long hpa;
28 struct resource mmio_region;
29 struct hppb_card *next;
30};
31
32static struct hppb_card hppb_card_head = {
33 .hpa = 0,

--- 73 unchanged lines hidden ---
28struct hppb_card {
29 unsigned long hpa;
30 struct resource mmio_region;
31 struct hppb_card *next;
32};
33
34static struct hppb_card hppb_card_head = {
35 .hpa = 0,

--- 73 unchanged lines hidden ---