Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190657
b: refs/heads/master
c: c86fac4
h: refs/heads/master
i:
  190655: 317f971
v: v3
  • Loading branch information
Michal Simek committed May 6, 2010
1 parent 866f912 commit a2275f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8a66da71fa84d08bef7d1678db77df77dccefa20
refs/heads/master: c86fac4382b3fb238a520ab5f2fa200c6a868b7f
13 changes: 6 additions & 7 deletions trunk/arch/microblaze/pci/pci-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1131,21 +1131,20 @@ static int skip_isa_ioresource_align(struct pci_dev *dev)
* but we want to try to avoid allocating at 0x2900-0x2bff
* which might have be mirrored at 0x0100-0x03ff..
*/
void pcibios_align_resource(void *data, struct resource *res,
resource_size_t pcibios_align_resource(void *data, const struct resource *res,
resource_size_t size, resource_size_t align)
{
struct pci_dev *dev = data;
resource_size_t start = res->start;

if (res->flags & IORESOURCE_IO) {
resource_size_t start = res->start;

if (skip_isa_ioresource_align(dev))
return;
if (start & 0x300) {
return start;
if (start & 0x300)
start = (start + 0x3ff) & ~0x3ff;
res->start = start;
}
}

return start;
}
EXPORT_SYMBOL(pcibios_align_resource);

Expand Down

0 comments on commit a2275f3

Please sign in to comment.