litest-device-lid-switch-surface3.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright © 2017 James Ye <jye836@gmail.com>
  3. * Copyright © 2017 Red Hat, Inc.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice (including the next
  13. * paragraph) shall be included in all copies or substantial portions of the
  14. * Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. */
  24. #include "config.h"
  25. #include "litest-int.h"
  26. #include "litest.h"
  27. static struct input_id input_id = {
  28. .bustype = 0x19,
  29. .vendor = 0x0,
  30. .product = 0x5,
  31. };
  32. /* clang-format off */
  33. static int events[] = {
  34. EV_SW, SW_LID,
  35. -1, -1,
  36. };
  37. /* clang-format on */
  38. static const char quirk_file[] =
  39. "[litest Surface Lid]\n"
  40. "MatchName=litest Lid Switch Surface3\n"
  41. "AttrLidSwitchReliability=write_open\n";
  42. TEST_DEVICE(LITEST_LID_SWITCH_SURFACE3,
  43. .features = LITEST_SWITCH,
  44. .interface = NULL,
  45. .name = "Lid Switch Surface3",
  46. .id = &input_id,
  47. .events = events,
  48. .absinfo = NULL,
  49. .quirk_file = quirk_file,
  50. .udev_properties = {
  51. { "ID_INPUT_SWITCH", "1" },
  52. { "ID_INTEGRATION", "internal" },
  53. { NULL },
  54. }, )