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
nexedi
linux
Commits
bcbad25b
Commit
bcbad25b
authored
Feb 06, 2003
by
Randy Dunlap
Committed by
Greg Kroah-Hartman
Feb 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] PCI Hotplug: checker patches
Fixes problems found by the CHECKER program in the pci hotplug drivers
parent
a3a4fa0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
drivers/hotplug/cpqphp_pci.c
drivers/hotplug/cpqphp_pci.c
+1
-1
drivers/hotplug/ibmphp_pci.c
drivers/hotplug/ibmphp_pci.c
+12
-12
No files found.
drivers/hotplug/cpqphp_pci.c
View file @
bcbad25b
...
...
@@ -1193,7 +1193,7 @@ int cpqhp_configure_board(struct controller *ctrl, struct pci_func * func)
if
(
temp
!=
func
->
config_space
[
cloop
>>
2
])
{
dbg
(
"Config space compare failure!!! offset = %x
\n
"
,
cloop
);
dbg
(
"bus = %x, device = %x, function = %x
\n
"
,
func
->
bus
,
func
->
device
,
func
->
function
);
dbg
(
"temp = %x, config space = %x
\n\n
"
,
temp
,
func
->
config_space
[
cloop
]);
dbg
(
"temp = %x, config space = %x
\n\n
"
,
temp
,
func
->
config_space
[
cloop
>>
2
]);
return
1
;
}
}
...
...
drivers/hotplug/ibmphp_pci.c
View file @
bcbad25b
...
...
@@ -1621,23 +1621,23 @@ int ibmphp_unconfigure_card (struct slot **slot_cur, int the_end)
}
for
(
i
=
0
;
i
<
count
;
i
++
)
{
if
(
cur_func
->
io
[
count
])
{
debug
(
"io[%d] exists
\n
"
,
count
);
if
(
cur_func
->
io
[
i
])
{
debug
(
"io[%d] exists
\n
"
,
i
);
if
(
the_end
>
0
)
ibmphp_remove_resource
(
cur_func
->
io
[
count
]);
cur_func
->
io
[
count
]
=
NULL
;
ibmphp_remove_resource
(
cur_func
->
io
[
i
]);
cur_func
->
io
[
i
]
=
NULL
;
}
if
(
cur_func
->
mem
[
count
])
{
debug
(
"mem[%d] exists
\n
"
,
count
);
if
(
cur_func
->
mem
[
i
])
{
debug
(
"mem[%d] exists
\n
"
,
i
);
if
(
the_end
>
0
)
ibmphp_remove_resource
(
cur_func
->
mem
[
count
]);
cur_func
->
mem
[
count
]
=
NULL
;
ibmphp_remove_resource
(
cur_func
->
mem
[
i
]);
cur_func
->
mem
[
i
]
=
NULL
;
}
if
(
cur_func
->
pfmem
[
count
])
{
debug
(
"pfmem[%d] exists
\n
"
,
count
);
if
(
cur_func
->
pfmem
[
i
])
{
debug
(
"pfmem[%d] exists
\n
"
,
i
);
if
(
the_end
>
0
)
ibmphp_remove_resource
(
cur_func
->
pfmem
[
count
]);
cur_func
->
pfmem
[
count
]
=
NULL
;
ibmphp_remove_resource
(
cur_func
->
pfmem
[
i
]);
cur_func
->
pfmem
[
i
]
=
NULL
;
}
}
...
...
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