doxygen: Fix/improve 'struct sr_probe_group' documentation.

This commit is contained in:
Uwe Hermann 2013-11-11 07:42:51 +01:00
parent 57d0a2e195
commit a0dc461d7b
1 changed files with 4 additions and 2 deletions

View File

@ -550,11 +550,13 @@ struct sr_probe {
char *trigger;
};
/** Structure for groups of probes that have common properties. */
struct sr_probe_group {
/** Name of the probe group. */
char *name;
/* List of sr_probe structs. */
/** List of sr_probe structs of the probes belonging to this group. */
GSList *probes;
/* Private data for driver use. */
/** Private data for driver use. */
void *priv;
};