dect
/
linux-2.6
Archived
13
0
Fork 0

Input: gameport - mark gameport_register_driver() __must_check

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Dmitry Torokhov 2008-06-06 01:33:51 -04:00
parent 2547203d58
commit 8c4b3c2932
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ static inline void gameport_unpin_driver(struct gameport *gameport)
int __gameport_register_driver(struct gameport_driver *drv,
struct module *owner, const char *mod_name);
static inline int gameport_register_driver(struct gameport_driver *drv)
static inline int __must_check gameport_register_driver(struct gameport_driver *drv)
{
return __gameport_register_driver(drv, THIS_MODULE, KBUILD_MODNAME);
}