mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:40:53 +07:00
Merge branch 'intelfb-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied/intelfb-2.6
* 'intelfb-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied/intelfb-2.6: Remove unnecessary check in drivers/video/intelfb/intelfbhw.c intel fb: switch to pci_get API
This commit is contained in:
commit
9d81a782d5
@ -161,7 +161,7 @@ intelfbhw_get_memory(struct pci_dev *pdev, int *aperture_size,
|
|||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
/* Find the bridge device. It is always 0:0.0 */
|
/* Find the bridge device. It is always 0:0.0 */
|
||||||
if (!(bridge_dev = pci_find_slot(0, PCI_DEVFN(0, 0)))) {
|
if (!(bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0)))) {
|
||||||
ERR_MSG("cannot find bridge device\n");
|
ERR_MSG("cannot find bridge device\n");
|
||||||
return 1;
|
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. */
|
/* Get the fb aperture size and "stolen" memory amount. */
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp);
|
pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &tmp);
|
||||||
|
pci_dev_put(bridge_dev);
|
||||||
|
|
||||||
switch (pdev->device) {
|
switch (pdev->device) {
|
||||||
case PCI_DEVICE_ID_INTEL_915G:
|
case PCI_DEVICE_ID_INTEL_915G:
|
||||||
case PCI_DEVICE_ID_INTEL_915GM:
|
case PCI_DEVICE_ID_INTEL_915GM:
|
||||||
@ -662,7 +664,7 @@ intelfbhw_print_hw_state(struct intelfb_info *dinfo, struct intelfb_hwstate *hw)
|
|||||||
int index = dinfo->pll_index;
|
int index = dinfo->pll_index;
|
||||||
DBG_MSG("intelfbhw_print_hw_state\n");
|
DBG_MSG("intelfbhw_print_hw_state\n");
|
||||||
|
|
||||||
if (!hw || !dinfo)
|
if (!hw)
|
||||||
return;
|
return;
|
||||||
/* Read in as much of the HW state as possible. */
|
/* Read in as much of the HW state as possible. */
|
||||||
printk("hw state dump start\n");
|
printk("hw state dump start\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user