commands: make `struct blob_buf status` public
authorAlexander Couzens <lynxis@fe80.eu>
Sun, 1 Oct 2023 16:29:49 +0000 (18:29 +0200)
committerAlexander Couzens <lynxis@fe80.eu>
Sat, 9 Mar 2024 20:15:21 +0000 (21:15 +0100)
status is already used by other files as public variable.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
commands-nas.c
commands.c
commands.h

index 9c0a626adce3a17d7735ce8d477509bdb48c66c5..148bc7cd413f2c0b23a41b778a6074c2451343b7 100644 (file)
@@ -20,6 +20,7 @@
  */
 
 #include "qmi-message.h"
+#include "commands.h"
 
 static struct qmi_nas_get_tx_rx_info_request tx_rx_req;
 static struct qmi_nas_set_system_selection_preference_request sel_req;
index 8e9810d2cb2c58d855e0dbc25b157ac02744fbb3..7ac67b486589dba95cc5b8de7c3238774b5a311d 100644 (file)
@@ -31,7 +31,7 @@
 #include "uqmi.h"
 #include "commands.h"
 
-static struct blob_buf status;
+struct blob_buf status;
 bool single_line = false;
 
 static void no_cb(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg)
index f409ec42658d8288283ba5982f4f302b8d50f0dd..08aaa8e33f54d47c269323f0241430dc453566d6 100644 (file)
@@ -23,6 +23,8 @@
 #define __UQMI_COMMANDS_H
 
 #include <stdbool.h>
+#include <libubox/blob.h>
+
 #include "commands-wds.h"
 #include "commands-dms.h"
 #include "commands-nas.h"
@@ -75,6 +77,7 @@ enum uqmi_command {
 
 extern bool single_line;
 extern const struct uqmi_cmd_handler uqmi_cmd_handler[];
+extern struct blob_buf status;
 void uqmi_add_command(char *arg, int longidx);
 bool uqmi_run_commands(struct qmi_dev *qmi);
 int uqmi_add_error(const char *msg);