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
1c113a7e
Commit
1c113a7e
authored
Jul 14, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] PCI: remove usages of pci slot_name from the pci core code.
parent
3444cee8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
21 deletions
+21
-21
drivers/pci/hotplug.c
drivers/pci/hotplug.c
+1
-1
drivers/pci/pci.c
drivers/pci/pci.c
+5
-5
drivers/pci/pool.c
drivers/pci/pool.c
+4
-4
drivers/pci/quirks.c
drivers/pci/quirks.c
+4
-4
drivers/pci/setup-bus.c
drivers/pci/setup-bus.c
+3
-3
drivers/pci/setup-res.c
drivers/pci/setup-res.c
+4
-4
No files found.
drivers/pci/hotplug.c
View file @
1c113a7e
...
...
@@ -57,7 +57,7 @@ int pci_hotplug (struct device *dev, char **envp, int num_envp,
envp
[
i
++
]
=
scratch
;
length
+=
snprintf
(
scratch
,
buffer_size
-
length
,
"PCI_SLOT_NAME=%s"
,
p
dev
->
slot_name
);
p
ci_name
(
pdev
)
);
if
((
buffer_size
-
length
<=
0
)
||
(
i
>=
num_envp
))
return
-
ENOMEM
;
...
...
drivers/pci/pci.c
View file @
1c113a7e
...
...
@@ -506,7 +506,7 @@ int pci_request_region(struct pci_dev *pdev, int bar, char *res_name)
pci_resource_flags
(
pdev
,
bar
)
&
IORESOURCE_IO
?
"I/O"
:
"mem"
,
bar
+
1
,
/* PCI BAR # */
pci_resource_len
(
pdev
,
bar
),
pci_resource_start
(
pdev
,
bar
),
p
dev
->
slot_name
);
p
ci_name
(
pdev
)
);
return
-
EBUSY
;
}
...
...
@@ -555,7 +555,7 @@ int pci_request_regions(struct pci_dev *pdev, char *res_name)
pci_resource_flags
(
pdev
,
i
)
&
IORESOURCE_IO
?
"I/O"
:
"mem"
,
i
+
1
,
/* PCI BAR # */
pci_resource_len
(
pdev
,
i
),
pci_resource_start
(
pdev
,
i
),
p
dev
->
slot_name
);
p
ci_name
(
pdev
)
);
while
(
--
i
>=
0
)
pci_release_region
(
pdev
,
i
);
...
...
@@ -576,7 +576,7 @@ pci_set_master(struct pci_dev *dev)
pci_read_config_word
(
dev
,
PCI_COMMAND
,
&
cmd
);
if
(
!
(
cmd
&
PCI_COMMAND_MASTER
))
{
DBG
(
"PCI: Enabling bus mastering for device %s
\n
"
,
dev
->
slot_name
);
DBG
(
"PCI: Enabling bus mastering for device %s
\n
"
,
pci_name
(
dev
)
);
cmd
|=
PCI_COMMAND_MASTER
;
pci_write_config_word
(
dev
,
PCI_COMMAND
,
cmd
);
}
...
...
@@ -620,7 +620,7 @@ pci_generic_prep_mwi(struct pci_dev *dev)
return
0
;
printk
(
KERN_WARNING
"PCI: cache line size of %d is not supported "
"by device %s
\n
"
,
pci_cache_line_size
<<
2
,
dev
->
slot_name
);
"by device %s
\n
"
,
pci_cache_line_size
<<
2
,
pci_name
(
dev
)
);
return
-
EINVAL
;
}
...
...
@@ -653,7 +653,7 @@ pci_set_mwi(struct pci_dev *dev)
pci_read_config_word
(
dev
,
PCI_COMMAND
,
&
cmd
);
if
(
!
(
cmd
&
PCI_COMMAND_INVALIDATE
))
{
DBG
(
"PCI: Enabling Mem-Wr-Inval for device %s
\n
"
,
dev
->
slot_name
);
DBG
(
"PCI: Enabling Mem-Wr-Inval for device %s
\n
"
,
pci_name
(
dev
)
);
cmd
|=
PCI_COMMAND_INVALIDATE
;
pci_write_config_word
(
dev
,
PCI_COMMAND
,
cmd
);
}
...
...
drivers/pci/pool.c
View file @
1c113a7e
...
...
@@ -233,7 +233,7 @@ pci_pool_destroy (struct pci_pool *pool)
struct
pci_page
,
page_list
);
if
(
is_page_busy
(
pool
->
blocks_per_page
,
page
->
bitmap
))
{
printk
(
KERN_ERR
"pci_pool_destroy %s/%s, %p busy
\n
"
,
pool
->
dev
?
p
ool
->
dev
->
slot_name
:
NULL
,
pool
->
dev
?
p
ci_name
(
pool
->
dev
)
:
NULL
,
pool
->
name
,
page
->
vaddr
);
/* leak the still-in-use consistent memory */
list_del
(
&
page
->
page_list
);
...
...
@@ -359,7 +359,7 @@ pci_pool_free (struct pci_pool *pool, void *vaddr, dma_addr_t dma)
if
((
page
=
pool_find_page
(
pool
,
dma
))
==
0
)
{
printk
(
KERN_ERR
"pci_pool_free %s/%s, %p/%lx (bad dma)
\n
"
,
pool
->
dev
?
p
ool
->
dev
->
slot_name
:
NULL
,
pool
->
dev
?
p
ci_name
(
pool
->
dev
)
:
NULL
,
pool
->
name
,
vaddr
,
(
unsigned
long
)
dma
);
return
;
}
...
...
@@ -372,13 +372,13 @@ pci_pool_free (struct pci_pool *pool, void *vaddr, dma_addr_t dma)
#ifdef CONFIG_DEBUG_SLAB
if
(((
dma
-
page
->
dma
)
+
(
void
*
)
page
->
vaddr
)
!=
vaddr
)
{
printk
(
KERN_ERR
"pci_pool_free %s/%s, %p (bad vaddr)/%Lx
\n
"
,
pool
->
dev
?
p
ool
->
dev
->
slot_name
:
NULL
,
pool
->
dev
?
p
ci_name
(
pool
->
dev
)
:
NULL
,
pool
->
name
,
vaddr
,
(
unsigned
long
long
)
dma
);
return
;
}
if
(
page
->
bitmap
[
map
]
&
(
1UL
<<
block
))
{
printk
(
KERN_ERR
"pci_pool_free %s/%s, dma %Lx already free
\n
"
,
pool
->
dev
?
p
ool
->
dev
->
slot_name
:
NULL
,
pool
->
dev
?
p
ci_name
(
pool
->
dev
)
:
NULL
,
pool
->
name
,
(
unsigned
long
long
)
dma
);
return
;
}
...
...
drivers/pci/quirks.c
View file @
1c113a7e
...
...
@@ -33,7 +33,7 @@ static void __devinit quirk_passive_release(struct pci_dev *dev)
while
((
d
=
pci_find_device
(
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_82371SB_0
,
d
)))
{
pci_read_config_byte
(
d
,
0x82
,
&
dlc
);
if
(
!
(
dlc
&
1
<<
1
))
{
printk
(
KERN_ERR
"PCI: PIIX3: Enabling Passive Release on %s
\n
"
,
d
->
slot_name
);
printk
(
KERN_ERR
"PCI: PIIX3: Enabling Passive Release on %s
\n
"
,
pci_name
(
d
)
);
dlc
|=
1
<<
1
;
pci_write_config_byte
(
d
,
0x82
,
dlc
);
}
...
...
@@ -437,7 +437,7 @@ static void __devinit quirk_via_irqpic(struct pci_dev *dev)
if
(
new_irq
!=
irq
)
{
printk
(
KERN_INFO
"PCI: Via IRQ fixup for %s, from %d to %d
\n
"
,
dev
->
slot_name
,
irq
,
new_irq
);
pci_name
(
dev
)
,
irq
,
new_irq
);
udelay
(
15
);
pci_write_config_byte
(
dev
,
PCI_INTERRUPT_LINE
,
new_irq
);
...
...
@@ -598,7 +598,7 @@ static void __devinit quirk_ide_bases(struct pci_dev *dev)
return
;
printk
(
KERN_INFO
"PCI: Ignoring BAR%d-%d of IDE controller %s
\n
"
,
first_bar
,
last_bar
,
dev
->
slot_name
);
first_bar
,
last_bar
,
pci_name
(
dev
)
);
}
/*
...
...
@@ -856,7 +856,7 @@ static void pci_do_fixups(struct pci_dev *dev, int pass, struct pci_fixup *f)
(
f
->
vendor
==
dev
->
vendor
||
f
->
vendor
==
(
u16
)
PCI_ANY_ID
)
&&
(
f
->
device
==
dev
->
device
||
f
->
device
==
(
u16
)
PCI_ANY_ID
))
{
#ifdef DEBUG
printk
(
KERN_INFO
"PCI: Calling quirk %p for %s
\n
"
,
f
->
hook
,
dev
->
slot_name
);
printk
(
KERN_INFO
"PCI: Calling quirk %p for %s
\n
"
,
f
->
hook
,
pci_name
(
dev
)
);
#endif
f
->
hook
(
dev
);
}
...
...
drivers/pci/setup-bus.c
View file @
1c113a7e
...
...
@@ -81,7 +81,7 @@ pci_setup_cardbus(struct pci_bus *bus)
struct
pci_bus_region
region
;
printk
(
"PCI: Bus %d, cardbus bridge: %s
\n
"
,
bus
->
number
,
bridge
->
slot_name
);
bus
->
number
,
pci_name
(
bridge
)
);
pcibios_resource_to_bus
(
bridge
,
&
region
,
bus
->
resource
[
0
]);
if
(
bus
->
resource
[
0
]
->
flags
&
IORESOURCE_IO
)
{
...
...
@@ -344,7 +344,7 @@ pbus_size_mem(struct pci_bus *bus, unsigned long mask, unsigned long type)
if
(
order
>
11
)
{
printk
(
KERN_WARNING
"PCI: region %s/%d "
"too large: %lx-%lx
\n
"
,
dev
->
slot_name
,
i
,
r
->
start
,
r
->
end
);
pci_name
(
dev
)
,
i
,
r
->
start
,
r
->
end
);
r
->
flags
=
0
;
continue
;
}
...
...
@@ -513,7 +513,7 @@ pci_bus_assign_resources(struct pci_bus *bus)
default:
printk
(
KERN_INFO
"PCI: not setting up bridge %s "
"for bus %d
\n
"
,
dev
->
slot_name
,
b
->
number
);
"for bus %d
\n
"
,
pci_name
(
dev
)
,
b
->
number
);
break
;
}
}
...
...
drivers/pci/setup-res.c
View file @
1c113a7e
...
...
@@ -68,7 +68,7 @@ pci_update_resource(struct pci_dev *dev, struct resource *res, int resno)
if
((
new
^
check
)
&
mask
)
{
printk
(
KERN_ERR
"PCI: Error while updating region "
"%s/%d (%08x != %08x)
\n
"
,
dev
->
slot_name
,
resno
,
"%s/%d (%08x != %08x)
\n
"
,
pci_name
(
dev
)
,
resno
,
new
,
check
);
}
...
...
@@ -80,7 +80,7 @@ pci_update_resource(struct pci_dev *dev, struct resource *res, int resno)
if
(
check
!=
new
)
{
printk
(
KERN_ERR
"PCI: Error updating region "
"%s/%d (high %08x != %08x)
\n
"
,
dev
->
slot_name
,
resno
,
new
,
check
);
pci_name
(
dev
)
,
resno
,
new
,
check
);
}
}
}
...
...
@@ -101,7 +101,7 @@ pci_claim_resource(struct pci_dev *dev, int resource)
printk
(
KERN_ERR
"PCI: %s region %d of %s %s [%lx:%lx]
\n
"
,
root
?
"Address space collision on"
:
"No parent found for"
,
resource
,
dtype
,
dev
->
slot_name
,
res
->
start
,
res
->
end
);
resource
,
dtype
,
pci_name
(
dev
)
,
res
->
start
,
res
->
end
);
}
return
err
;
...
...
@@ -139,7 +139,7 @@ int pci_assign_resource(struct pci_dev *dev, int resno)
if
(
ret
)
{
printk
(
KERN_ERR
"PCI: Failed to allocate resource %d(%lx-%lx) for %s
\n
"
,
resno
,
res
->
start
,
res
->
end
,
dev
->
slot_name
);
resno
,
res
->
start
,
res
->
end
,
pci_name
(
dev
)
);
}
else
if
(
resno
<
PCI_BRIDGE_RESOURCES
)
{
pci_update_resource
(
dev
,
res
,
resno
);
}
...
...
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