Blame view

drivers/input/mouse/lifebook.h 738 Bytes
02d7f5895   Kenan Esau   Input: Add Fujits...
1
2
3
4
5
6
7
8
9
10
11
12
  /*
   * 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
55e3d9224   Andres Salomon   Input: psmouse - ...
13
  #ifdef CONFIG_MOUSE_PS2_LIFEBOOK
7705d548c   Dmitry Torokhov   Input: psmouse - ...
14
  void lifebook_module_init(void);
b7802c5c1   Dmitry Torokhov   Input: psmouse - ...
15
  int lifebook_detect(struct psmouse *psmouse, bool set_properties);
a15d60f86   Dmitry Torokhov   Input: lifebook -...
16
  int lifebook_init(struct psmouse *psmouse);
55e3d9224   Andres Salomon   Input: psmouse - ...
17
  #else
7705d548c   Dmitry Torokhov   Input: psmouse - ...
18
19
20
  inline void lifebook_module_init(void)
  {
  }
b7802c5c1   Dmitry Torokhov   Input: psmouse - ...
21
  inline int lifebook_detect(struct psmouse *psmouse, bool set_properties)
55e3d9224   Andres Salomon   Input: psmouse - ...
22
23
24
25
26
27
28
29
  {
  	return -ENOSYS;
  }
  inline int lifebook_init(struct psmouse *psmouse)
  {
  	return -ENOSYS;
  }
  #endif
02d7f5895   Kenan Esau   Input: Add Fujits...
30
31
  
  #endif