mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-19 15:33:56 +00:00
No need to remove the same flag multiple times.
This commit is contained in:
parent
6913541fe4
commit
562c5c5bf0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196479
@ -62,12 +62,12 @@ ixp425_md_attach(device_t dev)
|
||||
/* PCI Reset Assert */
|
||||
reg = GPIO_CONF_READ_4(sc, IXP425_GPIO_GPOUTR);
|
||||
reg &= ~(1U << GPIO_PCI_RESET);
|
||||
GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPOUTR, reg & ~(1U << GPIO_PCI_RESET));
|
||||
GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPOUTR, reg);
|
||||
|
||||
/* PCI Clock Disable */
|
||||
reg = GPIO_CONF_READ_4(sc, IXP425_GPIO_GPCLKR);
|
||||
reg &= ~GPCLKR_MUX14;
|
||||
GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPCLKR, reg & ~GPCLKR_MUX14);
|
||||
GPIO_CONF_WRITE_4(sc, IXP425_GPIO_GPCLKR, reg);
|
||||
|
||||
/*
|
||||
* set GPIO Direction
|
||||
|
Loading…
Reference in New Issue
Block a user