pcsp_input.h 327 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * PC-Speaker driver for Linux
  4. *
  5. * Copyright (C) 2001-2008 Stas Sergeev
  6. */
  7. #ifndef __PCSP_INPUT_H__
  8. #define __PCSP_INPUT_H__
  9. int pcspkr_input_init(struct input_dev **rdev, struct device *dev);
  10. int pcspkr_input_remove(struct input_dev *dev);
  11. void pcspkr_stop_sound(void);
  12. #endif