Commit 3a115456 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] IP27: Use symbolic constants instead of magic numbers.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent c340cc50
......@@ -370,8 +370,7 @@ int __init bridge_probe(nasid_t nasid, int widget_id, int masterwid)
bc->widget_id = widget_id;
bc->nasid = nasid;
bc->baddr = (u64)masterwid << 60;
bc->baddr |= (1UL << 56); /* Barrier set */
bc->baddr = (u64)masterwid << 60 | PCI64_ATTR_BAR;
/*
* point to this bridge
......
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