Commit f7454c5d authored by David Howells's avatar David Howells Committed by Linus Torvalds

frv/chris: fix lines with a missing semicolons

Commit b26b2d49 ("resource/PCI: align functions now return start
of resource") added lines with missing semicolons.

Add the missing semicolons to the FRV and CRIS arch code.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Cc: linux@dominikbrodowski.net
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a53f4f9e
...@@ -50,7 +50,7 @@ pcibios_align_resource(void *data, const struct resource *res, ...@@ -50,7 +50,7 @@ pcibios_align_resource(void *data, const struct resource *res,
if ((res->flags & IORESOURCE_IO) && (start & 0x300)) if ((res->flags & IORESOURCE_IO) && (start & 0x300))
start = (start + 0x3ff) & ~0x3ff; start = (start + 0x3ff) & ~0x3ff;
return start return start;
} }
int pcibios_enable_resources(struct pci_dev *dev, int mask) int pcibios_enable_resources(struct pci_dev *dev, int mask)
......
...@@ -41,7 +41,7 @@ pcibios_align_resource(void *data, const struct resource *res, ...@@ -41,7 +41,7 @@ pcibios_align_resource(void *data, const struct resource *res,
if ((res->flags & IORESOURCE_IO) && (start & 0x300)) if ((res->flags & IORESOURCE_IO) && (start & 0x300))
start = (start + 0x3ff) & ~0x3ff; start = (start + 0x3ff) & ~0x3ff;
return start return start;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment