diff options
Diffstat (limited to 'drivers/pci/controller/pcie-apple.c')
| -rw-r--r-- | drivers/pci/controller/pcie-apple.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/controller/pcie-apple.c b/drivers/pci/controller/pcie-apple.c index a2c3c207a04b..66f37e403a09 100644 --- a/drivers/pci/controller/pcie-apple.c +++ b/drivers/pci/controller/pcie-apple.c @@ -516,8 +516,8 @@ static int apple_pcie_setup_port(struct apple_pcie *pcie,  	u32 stat, idx;  	int ret, i; -	reset = gpiod_get_from_of_node(np, "reset-gpios", 0, -				       GPIOD_OUT_LOW, "PERST#"); +	reset = devm_fwnode_gpiod_get(pcie->dev, of_fwnode_handle(np), "reset", +				      GPIOD_OUT_LOW, "PERST#");  	if (IS_ERR(reset))  		return PTR_ERR(reset);  |