ss.h (55fa518867978e1f5fd8353098f80d125ac734d7) ss.h (1d80766554322236aee50d6023693b3210b9cf38)
1/*
2 * ss.h
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * The initial developer of the original code is David A. Hinds

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

85/* power hook operations */
86#define HOOK_POWER_PRE 0x01
87#define HOOK_POWER_POST 0x02
88
89typedef struct pccard_io_map {
90 u_char map;
91 u_char flags;
92 u_short speed;
1/*
2 * ss.h
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * The initial developer of the original code is David A. Hinds

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

85/* power hook operations */
86#define HOOK_POWER_PRE 0x01
87#define HOOK_POWER_POST 0x02
88
89typedef struct pccard_io_map {
90 u_char map;
91 u_char flags;
92 u_short speed;
93 u_int start, stop;
93 phys_addr_t start, stop;
94} pccard_io_map;
95
96typedef struct pccard_mem_map {
97 u_char map;
98 u_char flags;
99 u_short speed;
94} pccard_io_map;
95
96typedef struct pccard_mem_map {
97 u_char map;
98 u_char flags;
99 u_short speed;
100 u_long static_start;
100 phys_addr_t static_start;
101 u_int card_start;
102 struct resource *res;
103} pccard_mem_map;
104
105typedef struct io_window_t {
106 u_int InUse, Config;
107 struct resource *res;
108} io_window_t;

--- 186 unchanged lines hidden ---
101 u_int card_start;
102 struct resource *res;
103} pccard_mem_map;
104
105typedef struct io_window_t {
106 u_int InUse, Config;
107 struct resource *res;
108} io_window_t;

--- 186 unchanged lines hidden ---