Message ID | 20240306095608.26839-1-zeming@nfschina.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | sed-opal: Remove unnecessary ‘0’ values from error | expand |
On Wed, 06 Mar 2024 17:56:08 +0800, Li zeming wrote: > error is assigned first, so it does not need to initialize the assignment. > > Applied, thanks! [1/1] sed-opal: Remove unnecessary ‘0’ values from error commit: 147fe6133477b9654f0ede339ef9267425955e88 Best regards,
diff --git a/block/sed-opal.c b/block/sed-opal.c index 3d9e9cd250bd5..e5b069dde905e 100644 --- a/block/sed-opal.c +++ b/block/sed-opal.c @@ -1208,7 +1208,7 @@ static int cmd_start(struct opal_dev *dev, const u8 *uid, const u8 *method) static int start_opal_session_cont(struct opal_dev *dev) { u32 hsn, tsn; - int error = 0; + int error; error = parse_and_check_status(dev); if (error) @@ -1350,7 +1350,7 @@ static int get_active_key_cont(struct opal_dev *dev) { const char *activekey; size_t keylen; - int error = 0; + int error; error = parse_and_check_status(dev); if (error)
error is assigned first, so it does not need to initialize the assignment. Signed-off-by: Li zeming <zeming@nfschina.com> --- block/sed-opal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)