doxygen: javadoc style

Change all occurances of /*! to /** to match javadoc
style.

Change-Id: I3a759d34e0e928216f61252682266e64c5b875f8
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2015-07-01 16:47:13 -04:00
commit 20764a2e8d
19 changed files with 260 additions and 260 deletions

View file

@ -31,7 +31,7 @@
#ifndef _DEVICE_H_
#define _DEVICE_H_
/*! @def DECLARE_DEVICE_INIT_CONFIG
/** @def DECLARE_DEVICE_INIT_CONFIG
*
* @brief Define an config object
*
@ -62,24 +62,24 @@ struct device;
/* Static device infomation (In ROM) Per driver instance */
struct device_config {
/*! name of the device */
/** name of the device */
char *name;
/*! init function for the driver */
/** init function for the driver */
int (*init)(struct device *device);
/*! address of driver instance config information */
/** address of driver instance config information */
void *config_info;
};
/* Runtime device structure (In memory) Per driver instance */
struct device {
/*! Build time config information */
/** Build time config information */
struct device_config *config;
/*! pointer to structure containing the API functions for the
/** pointer to structure containing the API functions for the
* device type. This pointer is filled in by the driver at
* init time.
*/
void *driver_api;
/*! Driver instance data. For driver use only*/
/** Driver instance data. For driver use only*/
void *driver_data;
};