Skip to content
Snippets Groups Projects
Commit afad6212 authored by Jakob Olsson's avatar Jakob Olsson
Browse files

correction to wrapper header, temporary verify_pin for hilink

parent d0030dd1
Branches
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ struct json_object *mobile_verify_pin(struct device *dev, char *pin) ...@@ -25,7 +25,7 @@ struct json_object *mobile_verify_pin(struct device *dev, char *pin)
if (strcmp(dev->usb.if_name, "usb0") == 0) if (strcmp(dev->usb.if_name, "usb0") == 0)
return mobile_verify_pin_zte(dev->ip, pin); return mobile_verify_pin_zte(dev->ip, pin);
else if (strcmp(dev->usb.if_name, "eth5") == 0) else if (strcmp(dev->usb.if_name, "eth5") == 0)
//return mobile_verify_pin_hilink(dev->ip, pin); return mobile_set_pin_hilink("12345678", "12345678");
return NULL; return NULL;
} }
......
...@@ -33,5 +33,5 @@ struct json_object *mobile_delete_apn_profile(struct device *dev, char *name); ...@@ -33,5 +33,5 @@ struct json_object *mobile_delete_apn_profile(struct device *dev, char *name);
struct json_object *mobile_set_apn_profile(struct device *dev, char *name); struct json_object *mobile_set_apn_profile(struct device *dev, char *name);
struct json_object *mobile_create_apn_profile(struct device *dev, char *profile_name, char *wan_apn, char *pdp_type); struct json_object *mobile_create_apn_profile(struct device *dev, char *profile_name, char *wan_apn, char *pdp_type);
struct json_object *mobile_get_current_apn(struct device *dev); struct json_object *mobile_get_current_apn(struct device *dev);
struct json_object *mobile_mobile_get_rssi(struct device *dev); struct json_object *mobile_get_rssi(struct device *dev);
#endif #endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment