Input: remove private member from input_dev structure

Everyone should be using input_{get|set}_drvdata() by now.
Alias them to dev_{get|set}_drvdata() and remove ->private.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Dmitry Torokhov
2008-04-02 00:41:00 -04:00
parent a7097ff89c
commit 3797fec171
2 changed files with 5 additions and 9 deletions

View File

@ -1025,10 +1025,6 @@ struct ff_effect {
* @node: used to place the device onto input_dev_list
*/
struct input_dev {
/* private: */
void *private; /* do not use */
/* public: */
const char *name;
const char *phys;
const char *uniq;
@ -1238,12 +1234,12 @@ static inline void input_put_device(struct input_dev *dev)
static inline void *input_get_drvdata(struct input_dev *dev)
{
return dev->private;
return dev_get_drvdata(&dev->dev);
}
static inline void input_set_drvdata(struct input_dev *dev, void *data)
{
dev->private = data;
dev_set_drvdata(&dev->dev, data);
}
int __must_check input_register_device(struct input_dev *);