mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
dm: gpio: power: Convert pm8916 drivers to livetree
This PMIC driver (power and GPIO) is used by the sandbox SPMI tests. Update the drivers to support a live device tree so that the tests pass. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
fe3c0b5b93
commit
04048d58a8
2 changed files with 4 additions and 6 deletions
|
@ -173,7 +173,7 @@ static int pm8916_gpio_probe(struct udevice *dev)
|
|||
struct pm8916_gpio_bank *priv = dev_get_priv(dev);
|
||||
int reg;
|
||||
|
||||
priv->pid = devfdt_get_addr(dev);
|
||||
priv->pid = dev_read_addr(dev);
|
||||
if (priv->pid == FDT_ADDR_T_NONE)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -193,10 +193,8 @@ static int pm8916_gpio_ofdata_to_platdata(struct udevice *dev)
|
|||
{
|
||||
struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
||||
|
||||
uc_priv->gpio_count = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
||||
"gpio-count", 0);
|
||||
uc_priv->bank_name = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
|
||||
"gpio-bank-name", NULL);
|
||||
uc_priv->gpio_count = dev_read_u32_default(dev, "gpio-count", 0);
|
||||
uc_priv->bank_name = dev_read_string(dev, "gpio-bank-name");
|
||||
if (uc_priv->bank_name == NULL)
|
||||
uc_priv->bank_name = "pm8916";
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ static int pm8916_probe(struct udevice *dev)
|
|||
{
|
||||
struct pm8916_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->usid = devfdt_get_addr(dev);
|
||||
priv->usid = dev_read_addr(dev);
|
||||
|
||||
if (priv->usid == FDT_ADDR_T_NONE)
|
||||
return -EINVAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue