Release 4.11 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 | 7 | 87.50% | 1 | 50.00% |
Chen Gang S | 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 | 17 | 89.47% | 1 | 33.33% |
Dmitry Torokhov | 1 | 5.26% | 1 | 33.33% |
Chen Gang S | 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 | 15 | 93.75% | 1 | 50.00% |
Chen Gang S | 1 | 6.25% | 1 | 50.00% |
Total | 16 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andres Salomon | 39 | 45.35% | 1 | 16.67% |
Dmitry Torokhov | 24 | 27.91% | 3 | 50.00% |
Kenan Esau | 20 | 23.26% | 1 | 16.67% |
Chen Gang S | 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.