aboutsummaryrefslogtreecommitdiff
path: root/drivers/reset/sti-reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/reset/sti-reset.c')
-rw-r--r--drivers/reset/sti-reset.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/reset/sti-reset.c b/drivers/reset/sti-reset.c
index 9287f28952..ea449bbaaf 100644
--- a/drivers/reset/sti-reset.c
+++ b/drivers/reset/sti-reset.c
@@ -280,16 +280,6 @@ static int sti_reset_program_hw(struct reset_ctl *reset_ctl, int assert)
return 0;
}
-static int sti_reset_request(struct reset_ctl *reset_ctl)
-{
- return 0;
-}
-
-static int sti_reset_free(struct reset_ctl *reset_ctl)
-{
- return 0;
-}
-
static int sti_reset_assert(struct reset_ctl *reset_ctl)
{
return sti_reset_program_hw(reset_ctl, true);
@@ -301,8 +291,6 @@ static int sti_reset_deassert(struct reset_ctl *reset_ctl)
}
struct reset_ops sti_reset_ops = {
- .request = sti_reset_request,
- .rfree = sti_reset_free,
.rst_assert = sti_reset_assert,
.rst_deassert = sti_reset_deassert,
};