mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 03:32:42 +01:00
hwsim: Fixed the errors reported by checkpatch.pl
This commit is contained in:
parent
855035dc6d
commit
5d29871d89
@ -68,11 +68,11 @@ enum {
|
|||||||
|
|
||||||
static struct l_genl_family *hwsim;
|
static struct l_genl_family *hwsim;
|
||||||
|
|
||||||
static bool keep_radios = false;
|
static bool keep_radios;
|
||||||
static bool create_action = false;
|
static bool create_action;
|
||||||
static bool list_action = false;
|
static bool list_action;
|
||||||
static const char *list_option = NULL;
|
static const char *list_option;
|
||||||
static const char *destroy_action = NULL;
|
static const char *destroy_action;
|
||||||
|
|
||||||
static void do_debug(const char *str, void *user_data)
|
static void do_debug(const char *str, void *user_data)
|
||||||
{
|
{
|
||||||
@ -92,6 +92,7 @@ static void create_callback(struct l_genl_msg *msg, void *user_data)
|
|||||||
*/
|
*/
|
||||||
if (!l_genl_attr_init(&attr, msg)) {
|
if (!l_genl_attr_init(&attr, msg)) {
|
||||||
int err = l_genl_msg_get_error(msg);
|
int err = l_genl_msg_get_error(msg);
|
||||||
|
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
l_warn("Failed to initialize create return attributes"
|
l_warn("Failed to initialize create return attributes"
|
||||||
" [%d/%s]", -err, strerror(-err));
|
" [%d/%s]", -err, strerror(-err));
|
||||||
@ -118,6 +119,7 @@ static void destroy_callback(struct l_genl_msg *msg, void *user_data)
|
|||||||
|
|
||||||
if (!l_genl_attr_init(&attr, msg)) {
|
if (!l_genl_attr_init(&attr, msg)) {
|
||||||
int err = l_genl_msg_get_error(msg);
|
int err = l_genl_msg_get_error(msg);
|
||||||
|
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
l_warn("Failed to destroy radio [%d/%s]",
|
l_warn("Failed to destroy radio [%d/%s]",
|
||||||
-err, strerror(-err));
|
-err, strerror(-err));
|
||||||
@ -128,8 +130,8 @@ static void destroy_callback(struct l_genl_msg *msg, void *user_data)
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
while (l_genl_attr_next(&attr, &type, &len, &data))
|
||||||
}
|
;
|
||||||
|
|
||||||
done:
|
done:
|
||||||
l_main_quit();
|
l_main_quit();
|
||||||
@ -149,9 +151,8 @@ static void hwsim_config(struct l_genl_msg *msg, void *user_data)
|
|||||||
if (!l_genl_attr_init(&attr, msg))
|
if (!l_genl_attr_init(&attr, msg))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
while (l_genl_attr_next(&attr, &type, &len, &data))
|
||||||
l_debug("\tattr type %d len %d", type, len);
|
l_debug("\tattr type %d len %d", type, len);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void list_callback_done(void *user_data)
|
static void list_callback_done(void *user_data)
|
||||||
@ -171,6 +172,7 @@ static void list_callback(struct l_genl_msg *msg, void *user_data)
|
|||||||
|
|
||||||
if (!l_genl_attr_init(&attr, msg)) {
|
if (!l_genl_attr_init(&attr, msg)) {
|
||||||
int err = l_genl_msg_get_error(msg);
|
int err = l_genl_msg_get_error(msg);
|
||||||
|
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
l_warn("Failed to list radio [%d/%s]",
|
l_warn("Failed to list radio [%d/%s]",
|
||||||
-err, strerror(-err));
|
-err, strerror(-err));
|
||||||
@ -266,10 +268,11 @@ static void hwsim_ready(void *user_data)
|
|||||||
l_genl_family_send(hwsim, msg, destroy_callback, NULL, NULL);
|
l_genl_family_send(hwsim, msg, destroy_callback, NULL, NULL);
|
||||||
} else if (list_action) {
|
} else if (list_action) {
|
||||||
msg = l_genl_msg_new_sized(HWSIM_CMD_GET_RADIO,
|
msg = l_genl_msg_new_sized(HWSIM_CMD_GET_RADIO,
|
||||||
list_option ? 8: 4);
|
list_option ? 8 : 4);
|
||||||
|
|
||||||
if (list_option) {
|
if (list_option) {
|
||||||
uint32_t id = atoi(list_option);
|
uint32_t id = atoi(list_option);
|
||||||
|
|
||||||
l_genl_msg_append_attr(msg, HWSIM_ATTR_RADIO_ID,
|
l_genl_msg_append_attr(msg, HWSIM_ATTR_RADIO_ID,
|
||||||
4, &id);
|
4, &id);
|
||||||
l_genl_family_send(hwsim, msg, list_callback,
|
l_genl_family_send(hwsim, msg, list_callback,
|
||||||
|
Loading…
Reference in New Issue
Block a user