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
55d1bb9a
Commit
55d1bb9a
authored
Jan 12, 2008
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull bugzilla-9535 into release branch
parents
8df042e8
66a21736
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
drivers/pnp/pnpacpi/rsparser.c
drivers/pnp/pnpacpi/rsparser.c
+10
-4
No files found.
drivers/pnp/pnpacpi/rsparser.c
View file @
55d1bb9a
...
...
@@ -76,6 +76,7 @@ static void pnpacpi_parse_allocated_irqresource(struct pnp_resource_table *res,
int
i
=
0
;
int
irq
;
int
p
,
t
;
static
unsigned
char
warned
;
if
(
!
valid_IRQ
(
gsi
))
return
;
...
...
@@ -83,9 +84,10 @@ static void pnpacpi_parse_allocated_irqresource(struct pnp_resource_table *res,
while
(
!
(
res
->
irq_resource
[
i
].
flags
&
IORESOURCE_UNSET
)
&&
i
<
PNP_MAX_IRQ
)
i
++
;
if
(
i
>=
PNP_MAX_IRQ
)
{
if
(
i
>=
PNP_MAX_IRQ
&&
!
warned
)
{
printk
(
KERN_ERR
"pnpacpi: exceeded the max number of IRQ "
"resources: %d
\n
"
,
PNP_MAX_IRQ
);
warned
=
1
;
return
;
}
/*
...
...
@@ -169,6 +171,7 @@ static void pnpacpi_parse_allocated_dmaresource(struct pnp_resource_table *res,
int
bus_master
,
int
transfer
)
{
int
i
=
0
;
static
unsigned
char
warned
;
while
(
i
<
PNP_MAX_DMA
&&
!
(
res
->
dma_resource
[
i
].
flags
&
IORESOURCE_UNSET
))
...
...
@@ -183,9 +186,10 @@ static void pnpacpi_parse_allocated_dmaresource(struct pnp_resource_table *res,
}
res
->
dma_resource
[
i
].
start
=
dma
;
res
->
dma_resource
[
i
].
end
=
dma
;
}
else
{
}
else
if
(
!
warned
)
{
printk
(
KERN_ERR
"pnpacpi: exceeded the max number of DMA "
"resources: %d
\n
"
,
PNP_MAX_DMA
);
warned
=
1
;
}
}
...
...
@@ -193,6 +197,7 @@ static void pnpacpi_parse_allocated_ioresource(struct pnp_resource_table *res,
u64
io
,
u64
len
,
int
io_decode
)
{
int
i
=
0
;
static
unsigned
char
warned
;
while
(
!
(
res
->
port_resource
[
i
].
flags
&
IORESOURCE_UNSET
)
&&
i
<
PNP_MAX_PORT
)
...
...
@@ -207,7 +212,7 @@ static void pnpacpi_parse_allocated_ioresource(struct pnp_resource_table *res,
}
res
->
port_resource
[
i
].
start
=
io
;
res
->
port_resource
[
i
].
end
=
io
+
len
-
1
;
}
else
{
}
else
if
(
!
warned
)
{
printk
(
KERN_ERR
"pnpacpi: exceeded the max number of IO "
"resources: %d
\n
"
,
PNP_MAX_PORT
);
}
...
...
@@ -218,6 +223,7 @@ static void pnpacpi_parse_allocated_memresource(struct pnp_resource_table *res,
int
write_protect
)
{
int
i
=
0
;
static
unsigned
char
warned
;
while
(
!
(
res
->
mem_resource
[
i
].
flags
&
IORESOURCE_UNSET
)
&&
(
i
<
PNP_MAX_MEM
))
...
...
@@ -233,7 +239,7 @@ static void pnpacpi_parse_allocated_memresource(struct pnp_resource_table *res,
res
->
mem_resource
[
i
].
start
=
mem
;
res
->
mem_resource
[
i
].
end
=
mem
+
len
-
1
;
}
else
{
}
else
if
(
!
warned
)
{
printk
(
KERN_ERR
"pnpacpi: exceeded the max number of mem "
"resources: %d
\n
"
,
PNP_MAX_MEM
);
}
...
...
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