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

Commit df9d1e8a authored by Linus Torvalds's avatar Linus Torvalds
Browse files

pci: avoid compiler warning in quirks.c



Introduced by commit 5b889bf2 ("PCI: Fix build if quirks are not
enabled"), which made the pci_dev_reset_methods[] array static and
'const', but didn't then change the code to match, and use a const
pointer when moving it to quirks.c.

Trivially fixed by just adding the required 'const' to the iterator
variable.

Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c03f6bfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2694,7 +2694,7 @@ static const struct pci_dev_reset_methods pci_dev_reset_methods[] = {


int pci_dev_specific_reset(struct pci_dev *dev, int probe)
int pci_dev_specific_reset(struct pci_dev *dev, int probe)
{
{
	struct pci_dev_reset_methods *i;
	const struct pci_dev_reset_methods *i;


	for (i = pci_dev_reset_methods; i->reset; i++) {
	for (i = pci_dev_reset_methods; i->reset; i++) {
		if ((i->vendor == dev->vendor ||
		if ((i->vendor == dev->vendor ||