From bd3e3e079384b6ff61e31b2595fa4f227cb867e4 Mon Sep 17 00:00:00 2001 From: Arun Muthusamy <arun.muthusamy@inteno.se> Date: Mon, 4 Jun 2018 09:55:22 +0200 Subject: [PATCH] rename common.h to common_zte.h --- common_zte.c | 2 +- dongle.c | 2 +- dongle_apn.h | 4 ++-- dongle_infrastructure.h | 2 +- dongle_network.h | 4 ++-- dongle_pin.h | 2 +- stack.h | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/common_zte.c b/common_zte.c index 70a8ff9..fd9dc29 100644 --- a/common_zte.c +++ b/common_zte.c @@ -1,4 +1,4 @@ -#include "common.h" +#include "common_zte.h" int print_to_ubus(struct json_object *parsed_response, struct ubus_context *ctx, struct ubus_request_data *req) { diff --git a/dongle.c b/dongle.c index 88dfe59..a066a02 100644 --- a/dongle.c +++ b/dongle.c @@ -1,6 +1,6 @@ #include <getopt.h> -#include "common.h" +#include "common_zte.h" #include "dongle_apn.h" #include "dongle_pin.h" #include "dongle_network.h" diff --git a/dongle_apn.h b/dongle_apn.h index 0b6a0bf..551ab77 100644 --- a/dongle_apn.h +++ b/dongle_apn.h @@ -1,6 +1,6 @@ #ifndef APN_H #define APN_H -#include "common.h" +#include "common_zte.h" int expose_apn_object(struct ubus_context *ctx); -#endif \ No newline at end of file +#endif diff --git a/dongle_infrastructure.h b/dongle_infrastructure.h index ee67437..46aba1b 100644 --- a/dongle_infrastructure.h +++ b/dongle_infrastructure.h @@ -1,6 +1,6 @@ #ifndef INFRASTRUCTURE_H #define INFRASTRUCTURE_H -#include "common.h" +#include "common_zte.h" #define IPV4_MAX 16 #define DYNAMIC_OBJ_NAME_SIZE 50 diff --git a/dongle_network.h b/dongle_network.h index 2aa6ec2..088d470 100644 --- a/dongle_network.h +++ b/dongle_network.h @@ -1,6 +1,6 @@ #ifndef NETWORK_H #define NETWORK_H -#include "common.h" +#include "common_zte.h" int expose_network_object(struct ubus_context *ctx); @@ -25,4 +25,4 @@ int disable_roaming(struct ubus_context *ctx, struct ubus_object *obj, int roam_status(struct ubus_context *ctx, struct ubus_object *obj, struct ubus_request_data *req, const char *method, struct blob_attr *msg); -#endif \ No newline at end of file +#endif diff --git a/dongle_pin.h b/dongle_pin.h index 8259165..a45616e 100644 --- a/dongle_pin.h +++ b/dongle_pin.h @@ -1,6 +1,6 @@ #ifndef PIN_H #define PIN_H -#include "common.h" +#include "dongle_pin.h" int expose_pin_object(struct ubus_context *ctx); #endif diff --git a/stack.h b/stack.h index a94e482..39db7ba 100644 --- a/stack.h +++ b/stack.h @@ -1,6 +1,6 @@ #ifndef DFS_H #define DFS_H -#include "common.h" +#include "common_zte.h" struct directory { struct list_head list; @@ -12,4 +12,4 @@ struct directory *pop(struct list_head *list); bool search(char *path, struct list_head *list); void clear_list(struct list_head *list); void print_list_dfs(struct list_head *list); -#endif \ No newline at end of file +#endif -- GitLab