mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
reset: fix bulk API when DM_RESET is disabled
In the commit "reset: Add get/assert/deassert/release for bulk of reset signals"
the disabled reset_release_bulk() and reset_get_bulk() used the wrong
struct clk_bulk instead of struct reset_ctl_bulk.
Fixes: 0c28233903
("reset: Add get/assert/deassert/release for bulk of reset signals")
Reported-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
bbac9222dc
commit
1dd181ff2b
@ -243,7 +243,8 @@ static inline int reset_get_by_index(struct udevice *dev, int index,
|
||||
return -ENOTSUPP;
|
||||
}
|
||||
|
||||
static inline int reset_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
|
||||
static inline int reset_get_bulk(struct udevice *dev,
|
||||
struct reset_ctl_bulk *bulk)
|
||||
{
|
||||
return -ENOTSUPP;
|
||||
}
|
||||
@ -284,7 +285,7 @@ static inline int reset_release_all(struct reset_ctl *reset_ctl, int count)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int reset_release_bulk(struct clk_bulk *bulk)
|
||||
static inline int reset_release_bulk(struct reset_ctl_bulk *bulk)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user