diff options
author | Tom Rini <trini@konsulko.com> | 2022-05-05 19:37:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-05-05 19:37:22 -0400 |
commit | 03b873b4f41010e4f85a72dd59016bb0b123dde1 (patch) | |
tree | 3ea6ba397b9ce3db7286537be078944c6daa23b8 /drivers/reset/reset-ti-sci.c | |
parent | 5d834bfa5fa61dc9dff94a92672c0a1185cb3a83 (diff) | |
parent | aa5ea20c71921e062aa91d5c7f924cef5d742ec2 (diff) |
Merge branch '2022-05-05-assorted-cleanups-and-fixes'
- Assorted minor code cleanups.
- Clean-up the reset uclass code slightly and fix some issues with a
lack of handlers for a case in the driver.
- Y2038 RTC fix
Diffstat (limited to 'drivers/reset/reset-ti-sci.c')
-rw-r--r-- | drivers/reset/reset-ti-sci.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/reset/reset-ti-sci.c b/drivers/reset/reset-ti-sci.c index d8510a4abb2..f35332767b2 100644 --- a/drivers/reset/reset-ti-sci.c +++ b/drivers/reset/reset-ti-sci.c @@ -63,18 +63,6 @@ static int ti_sci_reset_of_xlate(struct reset_ctl *rst, return 0; } -static int ti_sci_reset_request(struct reset_ctl *rst) -{ - debug("%s(rst=%p)\n", __func__, rst); - return 0; -} - -static int ti_sci_reset_free(struct reset_ctl *rst) -{ - debug("%s(rst=%p)\n", __func__, rst); - return 0; -} - /** * ti_sci_reset_set() - program a device's reset * @rst: Handle to a single reset signal @@ -193,8 +181,6 @@ static const struct udevice_id ti_sci_reset_of_match[] = { static struct reset_ops ti_sci_reset_ops = { .of_xlate = ti_sci_reset_of_xlate, - .request = ti_sci_reset_request, - .rfree = ti_sci_reset_free, .rst_assert = ti_sci_reset_assert, .rst_deassert = ti_sci_reset_deassert, .rst_status = ti_sci_reset_status, |