mirror of https://github.com/hak5/openwrt-owl.git
clean up PCI bus topology
This makes the PCI bus topology more standard for devices behind a bridge Signed-off-by: Tim Harvey <tharvey@gateworks.com> SVN-Revision: 35078owl
parent
64910f4490
commit
b63b970866
|
@ -59,9 +59,9 @@ __set_direction(struct cns3xxx_gpio_chip *cchip, unsigned pin, int input)
|
|||
|
||||
reg = __raw_readl(cchip->base + GPIO_DIR);
|
||||
if (input)
|
||||
reg |= 1 << pin;
|
||||
reg &= ~(1 << pin);
|
||||
else
|
||||
reg &= !(1 << pin);
|
||||
reg |= (1 << pin);
|
||||
__raw_writel(reg, cchip->base + GPIO_DIR);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue