15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * PC-Speaker driver for Linux4 *5 * Copyright (C) 2001-2008 Stas Sergeev6 */7 8#ifndef __PCSP_INPUT_H__9#define __PCSP_INPUT_H__10 11int pcspkr_input_init(struct input_dev **rdev, struct device *dev);12void pcspkr_stop_sound(void);13 14#endif15