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

Commit 378a5459 authored by Giuseppe Sacco's avatar Giuseppe Sacco Committed by Ralf Baechle
Browse files

[MIPS] IP32: Fix fatal typo in address computation.

parent e2a57a81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ static inline int mkaddr(struct pci_bus *bus, unsigned int devfn,
	unsigned int reg)
{
	return ((bus->number & 0xff) << 16) |
		(devfn & 0xff) << 8) |
		((devfn & 0xff) << 8) |
		(reg & 0xfc);
}