mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 21:40:49 +07:00
devlink: Clear whole devlink_flash_notify struct
[ Upstream commit ed43fbac717882165a2a4bd64f7b1f56f7467bb7 ]
The { 0 } doesn't clear all fields in the struct, but tells to the
compiler to set all fields to zero and doesn't touch any sub-fields
if they exists.
The {} is an empty initialiser that instructs to fully initialize whole
struct including sub-fields, which is error-prone for future
devlink_flash_notify extensions.
Fixes: 6700acc5f1
("devlink: collect flash notify params into a struct")
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
bda2e0a03c
commit
ee1f5ba490
@ -3403,7 +3403,7 @@ static void __devlink_flash_update_notify(struct devlink *devlink,
|
||||
|
||||
void devlink_flash_update_begin_notify(struct devlink *devlink)
|
||||
{
|
||||
struct devlink_flash_notify params = { 0 };
|
||||
struct devlink_flash_notify params = {};
|
||||
|
||||
__devlink_flash_update_notify(devlink,
|
||||
DEVLINK_CMD_FLASH_UPDATE,
|
||||
@ -3413,7 +3413,7 @@ EXPORT_SYMBOL_GPL(devlink_flash_update_begin_notify);
|
||||
|
||||
void devlink_flash_update_end_notify(struct devlink *devlink)
|
||||
{
|
||||
struct devlink_flash_notify params = { 0 };
|
||||
struct devlink_flash_notify params = {};
|
||||
|
||||
__devlink_flash_update_notify(devlink,
|
||||
DEVLINK_CMD_FLASH_UPDATE_END,
|
||||
|
Loading…
Reference in New Issue
Block a user