mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
hwsim: Don't use l_genl_msg_new_sized with a conditional
l_genl API will now automatically grow message buffers as needed, so there's no need to make the logic over-complicated
This commit is contained in:
parent
9885568b47
commit
897ef661fe
@ -1688,8 +1688,7 @@ static struct l_dbus_message *radio_manager_create(struct l_dbus *dbus,
|
||||
goto invalid;
|
||||
}
|
||||
|
||||
new_msg = l_genl_msg_new_sized(HWSIM_CMD_NEW_RADIO,
|
||||
16 + name ? strlen(name) : 0);
|
||||
new_msg = l_genl_msg_new(HWSIM_CMD_NEW_RADIO);
|
||||
l_genl_msg_append_attr(new_msg, HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE,
|
||||
0, NULL);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user