doxygen: Fix/improve 'struct sr_probe_group' documentation.
This commit is contained in:
parent
57d0a2e195
commit
a0dc461d7b
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue