mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
13 lines
291 B
C
13 lines
291 B
C
/*
|
|
* (C) Copyright 2002
|
|
* Keith Outwater, keith_outwater@mvis.com
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
void init_beeper(void);
|
|
void set_beeper_frequency(uint frequency);
|
|
void beeper_on(void);
|
|
void beeper_off(void);
|
|
void set_beeper_volume(int steps);
|
|
int do_beeper(char *sequence);
|