Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
450fa027
Commit
450fa027
authored
Aug 02, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.5-pcmcia
into home.osdl.org:/home/torvalds/v2.5/linux
parents
547e77c8
8bbb2de8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
drivers/pcmcia/cs.c
drivers/pcmcia/cs.c
+1
-1
drivers/pcmcia/i82092.c
drivers/pcmcia/i82092.c
+1
-1
drivers/pcmcia/rsrc_mgr.c
drivers/pcmcia/rsrc_mgr.c
+7
-3
drivers/pcmcia/yenta_socket.c
drivers/pcmcia/yenta_socket.c
+1
-1
No files found.
drivers/pcmcia/cs.c
View file @
450fa027
...
...
@@ -120,7 +120,7 @@ static const char *version =
/*====================================================================*/
socket_state_t
dead_socket
=
{
0
,
SS_DETECT
,
0
,
0
,
0
.
csc_mask
=
SS_DETECT
,
};
...
...
drivers/pcmcia/i82092.c
View file @
450fa027
...
...
@@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(pci, i82092aa_pci_ids);
static
int
i82092aa_socket_suspend
(
struct
pci_dev
*
dev
,
u32
state
)
{
return
pcmcia_socket_dev_suspend
(
&
dev
->
dev
,
state
,
0
);
return
pcmcia_socket_dev_suspend
(
&
dev
->
dev
,
state
,
SUSPEND_SAVE_STATE
);
}
static
int
i82092aa_socket_resume
(
struct
pci_dev
*
dev
)
...
...
drivers/pcmcia/rsrc_mgr.c
View file @
450fa027
...
...
@@ -77,10 +77,14 @@ typedef struct resource_map_t {
}
resource_map_t
;
/* Memory resource database */
static
resource_map_t
mem_db
=
{
0
,
0
,
&
mem_db
};
static
resource_map_t
mem_db
=
{
.
next
=
&
mem_db
,
};
/* IO port resource database */
static
resource_map_t
io_db
=
{
0
,
0
,
&
io_db
};
static
resource_map_t
io_db
=
{
.
next
=
&
io_db
,
};
static
DECLARE_MUTEX
(
rsrc_sem
);
...
...
@@ -93,7 +97,7 @@ typedef struct irq_info_t {
}
irq_info_t
;
/* Table of IRQ assignments */
static
irq_info_t
irq_table
[
NR_IRQS
]
=
{
{
0
,
0
,
0
},
/* etc */
}
;
static
irq_info_t
irq_table
[
NR_IRQS
];
#endif
...
...
drivers/pcmcia/yenta_socket.c
View file @
450fa027
...
...
@@ -901,7 +901,7 @@ static int __devinit yenta_probe (struct pci_dev *dev, const struct pci_device_i
static
int
yenta_dev_suspend
(
struct
pci_dev
*
dev
,
u32
state
)
{
return
pcmcia_socket_dev_suspend
(
&
dev
->
dev
,
state
,
0
);
return
pcmcia_socket_dev_suspend
(
&
dev
->
dev
,
state
,
SUSPEND_SAVE_STATE
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment