Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff40ad72 authored by Richard LIU's avatar Richard LIU Committed by Ralf Baechle
Browse files

MIPS: Loongson: Fix find_vga_mem_init()



This allows to use all display device for instance DISPLAY_OTHER like SM501.

Signed-off-by: default avatarArnaud Patard <apatard@mandriva.com>
To: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/1160/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 1c6d541c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ static int __init find_vga_mem_init(void)
		return 0;

	for_each_pci_dev(dev) {
		if ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA) {
		if ((dev->class >> 16) == PCI_BASE_CLASS_DISPLAY) {
			for (idx = 0; idx < PCI_NUM_RESOURCES; idx++) {
				r = &dev->resource[idx];
				if (!r->start && r->end)