9
0
Fork 0

doc: fix wrongly named parameter

Silence this warning:

lib/parameter.c:85: Warning: argument `value' of command @param is not found in the argument list of dev_set_param(struct device_d *dev, const char *name, const char *val)
lib/parameter.c:85: Warning: The following parameters of dev_set_param(struct device_d *dev, const char *name, const char *val) are not documented:
  parameter val

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Robert Schwebel 2010-10-22 18:45:08 +02:00 committed by Sascha Hauer
parent eab2d21f6e
commit ee1419ec92
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ int dev_set_param_ip(struct device_d *dev, char *name, IPaddr_t ip)
* dev_set_param - set a parameter of a device to a new value
* @param dev The device
* @param name The name of the parameter
* @param value The new value of the parameter
* @param val The new value of the parameter
*/
int dev_set_param(struct device_d *dev, const char *name, const char *val)
{