9
0
Fork 0

svn_rev_366

make pointer const
This commit is contained in:
Sascha Hauer 2007-07-05 18:01:47 +02:00 committed by Sascha Hauer
parent 23f4cd5520
commit e6bd6faf63
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ struct device_d *get_device_by_id(const char *id);
struct device_d *get_first_device(void);
int get_free_deviceid(char *id, char *id_template);
struct driver_d *get_driver_by_name(char *name);
struct driver_d *get_driver_by_name(const char *name);
ssize_t dev_read(struct device_d *dev, void *buf, size_t count, ulong offset, ulong flags);
ssize_t dev_write(struct device_d *dev, const void *buf, size_t count, ulong offset, ulong flags);