mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 12:56:00 +01:00
gpio: mvebu_gpio: Set bank name to mvebu%d
Currently bank name is just one alphabetical letter. Change it to mvebu and number. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
dc986c600f
commit
da76996a1a
@ -23,7 +23,7 @@ struct mvebu_gpio_regs {
|
|||||||
|
|
||||||
struct mvebu_gpio_priv {
|
struct mvebu_gpio_priv {
|
||||||
struct mvebu_gpio_regs *regs;
|
struct mvebu_gpio_regs *regs;
|
||||||
char name[2];
|
char name[sizeof("mvebuX_")];
|
||||||
};
|
};
|
||||||
|
|
||||||
static int mvebu_gpio_direction_input(struct udevice *dev, unsigned int gpio)
|
static int mvebu_gpio_direction_input(struct udevice *dev, unsigned int gpio)
|
||||||
@ -93,7 +93,7 @@ static int mvebu_gpio_probe(struct udevice *dev)
|
|||||||
|
|
||||||
priv->regs = dev_read_addr_ptr(dev);
|
priv->regs = dev_read_addr_ptr(dev);
|
||||||
uc_priv->gpio_count = dev_read_u32_default(dev, "ngpios", MVEBU_GPIOS_PER_BANK);
|
uc_priv->gpio_count = dev_read_u32_default(dev, "ngpios", MVEBU_GPIOS_PER_BANK);
|
||||||
priv->name[0] = 'A' + dev_seq(dev);
|
sprintf(priv->name, "mvebu%d_", dev_seq(dev));
|
||||||
uc_priv->bank_name = priv->name;
|
uc_priv->bank_name = priv->name;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user