Release 4.7 drivers/input/mouse/lifebook.h
/*
* Fujitsu B-series Lifebook PS/2 TouchScreen driver
*
* Copyright (c) 2005 Vojtech Pavlik
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*/
#ifndef _LIFEBOOK_H
#define _LIFEBOOK_H
#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
void lifebook_module_init(void);
int lifebook_detect(struct psmouse *psmouse, bool set_properties);
int lifebook_init(struct psmouse *psmouse);
#else
static inline void lifebook_module_init(void)
{
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
dmitry torokhov | dmitry torokhov | 7 | 87.50% | 1 | 50.00% |
chen gang | chen gang | 1 | 12.50% | 1 | 50.00% |
| Total | 8 | 100.00% | 2 | 100.00% |
static inline int lifebook_detect(struct psmouse *psmouse, bool set_properties)
{
return -ENOSYS;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andres salomon | andres salomon | 17 | 89.47% | 1 | 33.33% |
dmitry torokhov | dmitry torokhov | 1 | 5.26% | 1 | 33.33% |
chen gang | chen gang | 1 | 5.26% | 1 | 33.33% |
| Total | 19 | 100.00% | 3 | 100.00% |
static inline int lifebook_init(struct psmouse *psmouse)
{
return -ENOSYS;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andres salomon | andres salomon | 15 | 93.75% | 1 | 50.00% |
chen gang | chen gang | 1 | 6.25% | 1 | 50.00% |
| Total | 16 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andres salomon | andres salomon | 39 | 45.35% | 1 | 16.67% |
dmitry torokhov | dmitry torokhov | 24 | 27.91% | 3 | 50.00% |
kenan esau | kenan esau | 20 | 23.26% | 1 | 16.67% |
chen gang | chen gang | 3 | 3.49% | 1 | 16.67% |
| Total | 86 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.