diff options
| author | Andrey Markovytch <andreym@codeaurora.org> | 2016-04-18 11:41:47 +0300 |
|---|---|---|
| committer | Jeevan Shriram <jshriram@codeaurora.org> | 2016-04-25 17:45:49 -0700 |
| commit | fe9cbb77bf9b673eb3743b6986406c55e254c4ce (patch) | |
| tree | ad6801820e9ef69af06720c9a2e205302e990a79 /include | |
| parent | e29851c910af605f1b42e9762cc830184826a93b (diff) | |
crypto: ice: split the config callback
The requests configuration has to be split so clients can inform
ICE laeyr when the request is completed.
Rename the 'config' callback to 'config_start' and add
'config_end' callback.
Change-Id: Ife0b5b62805b827449a1bb1002348db445f03c60
Signed-off-by: Gilad Broner <gbroner@codeaurora.org>
Signed-off-by: Andrey Markovytch <andreym@codeaurora.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/crypto/ice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/crypto/ice.h b/include/crypto/ice.h index 1e65ae67886a..ef4be0e5fe36 100644 --- a/include/crypto/ice.h +++ b/include/crypto/ice.h @@ -69,8 +69,8 @@ struct qcom_ice_variant_ops { int (*reset)(struct platform_device *); int (*resume)(struct platform_device *); int (*suspend)(struct platform_device *); - int (*config)(struct platform_device *, struct request *, - struct ice_data_setting *); + int (*config_start)(struct platform_device *, struct request *, + struct ice_data_setting *, bool); int (*config_end)(struct request *); int (*status)(struct platform_device *); void (*debug)(struct platform_device *); |
