diff options
author | Maximilian Luz <luzmaximilian@gmail.com> | 2021-06-05 00:09:07 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-06-16 18:47:54 +0300 |
commit | f9e7f9a2b2a0d76c03ebdbb8ffc7940017b326b9 (patch) | |
tree | 00a9fd4bcb4278351e49932a12e2eb016886d194 /drivers/platform | |
parent | 37ed76a745b099565b4ae7915f0441b1316bf108 (diff) | |
download | linux-f9e7f9a2b2a0d76c03ebdbb8ffc7940017b326b9.tar.xz |
platform/surface: aggregator: Drop unnecessary variable initialization
The status variable in ssam_controller_event_disable() is always set, no
need to initialize it.
Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
Link: https://lore.kernel.org/r/20210604210907.25738-3-luzmaximilian@gmail.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/surface/aggregator/controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/surface/aggregator/controller.c b/drivers/platform/surface/aggregator/controller.c index 634399387d76..b8c377b3f932 100644 --- a/drivers/platform/surface/aggregator/controller.c +++ b/drivers/platform/surface/aggregator/controller.c @@ -2464,7 +2464,7 @@ int ssam_controller_event_disable(struct ssam_controller *ctrl, u16 rqid = ssh_tc_to_rqid(id.target_category); struct ssam_nf *nf = &ctrl->cplt.event.notif; struct ssam_nf_refcount_entry *entry; - int status = 0; + int status; if (!ssh_rqid_is_event(rqid)) return -EINVAL; |