projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9eed286
)
intel fb: switch to pci_get API
author
Alan Cox
<alan@lxorguk.ukuu.org.uk>
Fri, 20 Oct 2006 21:36:00 +0000
(14:36 -0700)
committer
Dave Airlie
<airlied@linux.ie>
Wed, 25 Oct 2006 19:05:18 +0000
(12:05 -0700)
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/video/intelfb/intelfbhw.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/video/intelfb/intelfbhw.c
b/drivers/video/intelfb/intelfbhw.c
index eeeeff9a09eb6180709773d4e99dddb4549437d8..eae60f97e2661d650d2ca772deba54155940c955 100644
(file)
--- a/
drivers/video/intelfb/intelfbhw.c
+++ b/
drivers/video/intelfb/intelfbhw.c
@@
-161,7
+161,7
@@
intelfbhw_get_memory(struct pci_dev *pdev, int *aperture_size,
return 1;
/* Find the bridge device. It is always 0:0.0 */
- if (!(bridge_dev = pci_
fi
nd_slot(0, PCI_DEVFN(0, 0)))) {
+ if (!(bridge_dev = pci_
get_bus_a
nd_slot(0, PCI_DEVFN(0, 0)))) {
ERR_MSG("cannot find bridge device\n");
return 1;
}
@@
-169,6
+169,8
@@
intelfbhw_get_memory(struct pci_dev *pdev, int *aperture_size,
/* Get the fb aperture size and "stolen" memory amount. */
tmp = 0;
pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp);
+ pci_dev_put(bridge_dev);
+
switch (pdev->device) {
case PCI_DEVICE_ID_INTEL_915G:
case PCI_DEVICE_ID_INTEL_915GM: