Input: make name, phys and uniq be 'const char *' because once

set noone should attempt to change them.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Dmitry Torokhov 2005-06-30 00:50:38 -05:00
parent f96b434d3b
commit 5b6271bda4
3 changed files with 17 additions and 36 deletions

View file

@ -811,9 +811,9 @@ struct input_dev {
void *private;
char *name;
char *phys;
char *uniq;
const char *name;
const char *phys;
const char *uniq;
struct input_id id;
unsigned long evbit[NBITS(EV_MAX)];