summaryrefslogtreecommitdiffstats
path: root/sys/pccard/driver.h
blob: 7df99dd025ad742913eb397cd56f98f2e1e1b319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*-
 * pccard driver interface.
 * Bruce Evans, November 1995.
 * This file is in the public domain.
 *
 * $FreeBSD$
 */

#ifndef _PCCARD_DRIVER_H_
#define	_PCCARD_DRIVER_H_

struct pccard_device;

void	pccard_add_driver __P((struct pccard_device *));

enum beepstate { BEEP_OFF, BEEP_ON };

void	pccard_insert_beep __P((void));
void	pccard_remove_beep __P((void));
void	pccard_success_beep __P((void));
void	pccard_failure_beep __P((void));
int	pccard_beep_select __P((enum beepstate));

#endif /* !_PCCARD_DRIVER_H_ */
OpenPOWER on IntegriCloud