|
@@ -20,6 +20,18 @@
|
|
|
#ifndef _WLAN_HDD_SYSFS_H_
|
|
|
#define _WLAN_HDD_SYSFS_H_
|
|
|
|
|
|
+/**
|
|
|
+ * struct hdd_sysfs_print_ctx - keeps track of sysfs buffer printing
|
|
|
+ * @buf: pointer to sysfs char buffer
|
|
|
+ * @idx: current position in char buffer
|
|
|
+ * @new_line: if set true, newline will be added at end of each print
|
|
|
+ */
|
|
|
+struct hdd_sysfs_print_ctx {
|
|
|
+ char *buf;
|
|
|
+ int idx;
|
|
|
+ bool new_line;
|
|
|
+};
|
|
|
+
|
|
|
#ifdef WLAN_SYSFS
|
|
|
|
|
|
#define MAX_SYSFS_USER_COMMAND_SIZE_LENGTH (32)
|
|
@@ -100,6 +112,24 @@ void hdd_sysfs_create_wifi_root_obj(void);
|
|
|
*/
|
|
|
void hdd_sysfs_destroy_wifi_root_obj(void);
|
|
|
|
|
|
+/*
|
|
|
+ * hdd_sysfs_print() - print to sysfs char buffer
|
|
|
+ * @ctx: pointer to struct hdd_sysfs_print_ctx
|
|
|
+ * @fmt: string format
|
|
|
+ *
|
|
|
+ * To use this function, create a hdd_sysfs_print_ctx variable, set
|
|
|
+ * idx to 0, set buf to the outbuffer and set new_line to true or false.
|
|
|
+ * Pass this context struct to every function call.
|
|
|
+ * Using this function will then write the data to the outbuffer and
|
|
|
+ * increment the counter.
|
|
|
+ *
|
|
|
+ * The context pointer is void to be compatible with qdf_abstract_print,
|
|
|
+ * to allow for abstract printing.
|
|
|
+ *
|
|
|
+ * Return: Number of characters written
|
|
|
+ */
|
|
|
+int hdd_sysfs_print(void *ctx, const char *fmt, ...);
|
|
|
+
|
|
|
#else
|
|
|
static inline int
|
|
|
hdd_sysfs_validate_and_copy_buf(char *dest_buf, size_t dest_buf_size,
|
|
@@ -139,6 +169,7 @@ static inline void hdd_sysfs_create_wifi_root_obj(void)
|
|
|
static inline void hdd_sysfs_destroy_wifi_root_obj(void)
|
|
|
{
|
|
|
}
|
|
|
+
|
|
|
#endif /* End of WLAN SYSFS*/
|
|
|
|
|
|
#endif /* End of _WLAN_HDD_SYSFS_H_ */
|