summaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
Diffstat (limited to 'src/console')
-rw-r--r--src/console/dlt-control-common.c2
-rw-r--r--src/console/dlt-control.c4
-rw-r--r--src/console/dlt-convert.c4
-rw-r--r--src/console/dlt-passive-node-ctrl.c6
-rw-r--r--src/console/dlt-receive.c4
-rw-r--r--src/console/dlt-sortbytimestamp.c4
-rw-r--r--src/console/logstorage/dlt-logstorage-udev.c6
7 files changed, 16 insertions, 14 deletions
diff --git a/src/console/dlt-control-common.c b/src/console/dlt-control-common.c
index d6787fc..1505f50 100644
--- a/src/console/dlt-control-common.c
+++ b/src/console/dlt-control-common.c
@@ -483,7 +483,7 @@ static void *dlt_control_listen_to_daemon(void *data)
* New values are signaled using a dedicated condition variable.
*
* @param message The DLT answer
- * @data Unused
+ * @param data Unused
*
* @return The analyzer return value or -1 on early errors.
*/
diff --git a/src/console/dlt-control.c b/src/console/dlt-control.c
index f977b46..d35c1aa 100644
--- a/src/console/dlt-control.c
+++ b/src/console/dlt-control.c
@@ -21,13 +21,13 @@
* \copyright Copyright © 2011-2015 BMW AG. \n
* License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
*
- * \file dlt-control.cpp
+ * \file dlt-control.c
*/
/*******************************************************************************
** **
-** SRC-MODULE: dlt-control.cpp **
+** SRC-MODULE: dlt-control.c **
** **
** TARGET : linux **
** **
diff --git a/src/console/dlt-convert.c b/src/console/dlt-convert.c
index 373f4d1..511ba0c 100644
--- a/src/console/dlt-convert.c
+++ b/src/console/dlt-convert.c
@@ -21,12 +21,12 @@
* \copyright Copyright © 2011-2015 BMW AG. \n
* License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
*
- * \file dlt-convert.cpp
+ * \file dlt-convert.c
*/
/*******************************************************************************
** **
-** SRC-MODULE: dlt-convert.cpp **
+** SRC-MODULE: dlt-convert.c **
** **
** TARGET : linux **
** **
diff --git a/src/console/dlt-passive-node-ctrl.c b/src/console/dlt-passive-node-ctrl.c
index c41129e..0937af7 100644
--- a/src/console/dlt-passive-node-ctrl.c
+++ b/src/console/dlt-passive-node-ctrl.c
@@ -157,11 +157,13 @@ static void dlt_print_passive_node_status(
* @brief Analyze received DLT Daemon response
*
* This function checks the received message. In particular, it checks the
- * answer string 'service(<ID>, {ok, error, perm_denied})'. In any case the
+ * answer string 'service(\<ID\>, {ok, error, perm_denied})'. In any case the
* g_callback_return variable will be set as well which is evaluated in the
* main function after the communication thread returned.
*
- * @param message Received DLT Message
+ * @param answer Recieved response
+ * @param payload Received DLT Message
+ * @param len Length of received DLT message
* @return 0 if daemon returns 'ok' message, -1 otherwise
*/
static int dlt_passive_node_analyze_response(char *answer,
diff --git a/src/console/dlt-receive.c b/src/console/dlt-receive.c
index aef92b9..4ad96f4 100644
--- a/src/console/dlt-receive.c
+++ b/src/console/dlt-receive.c
@@ -21,13 +21,13 @@
* \copyright Copyright © 2011-2015 BMW AG. \n
* License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
*
- * \file dlt-receive.cpp
+ * \file dlt-receive.c
*/
/*******************************************************************************
** **
-** SRC-MODULE: dlt-receive.cpp **
+** SRC-MODULE: dlt-receive.c **
** **
** TARGET : linux **
** **
diff --git a/src/console/dlt-sortbytimestamp.c b/src/console/dlt-sortbytimestamp.c
index c7b5818..9717e5c 100644
--- a/src/console/dlt-sortbytimestamp.c
+++ b/src/console/dlt-sortbytimestamp.c
@@ -23,12 +23,12 @@
* Copyright © 2011-2015 BMW AG. \n
* License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
*
- * \file dlt-sortbytimestamp.cpp
+ * \file dlt-sortbytimestamp.c
*/
/*******************************************************************************
** **
-** SRC-MODULE: dlt-sortbytimestamp.cpp **
+** SRC-MODULE: dlt-sortbytimestamp.c **
** **
** TARGET : linux **
** **
diff --git a/src/console/logstorage/dlt-logstorage-udev.c b/src/console/logstorage/dlt-logstorage-udev.c
index e50e660..73b4d24 100644
--- a/src/console/logstorage/dlt-logstorage-udev.c
+++ b/src/console/logstorage/dlt-logstorage-udev.c
@@ -132,8 +132,8 @@ static char *dlt_logstorage_udev_get_mount_point(char *dev_node)
* Check if the device was on the list, remove it and send the message
* to the daemon.
*
- * @event The kind of event happening
- * @part The device partition to be checked
+ * @param event The kind of event happening
+ * @param part The device partition to be checked
*
* @return 0 on success, -1 if an error occured.
*/
@@ -268,7 +268,7 @@ static int logstorage_udev_udevd_callback(void)
* The function looks for block devices that are of "partition" type.
* Then, it gets the node, and call check_mountpoint_from_partition with it.
*
- * @udev The udev device used to find all the nodes
+ * @param udev The udev device used to find all the nodes
*
* @return 0 on success, -1 otherwise.
*/