mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
boot: Use unsigned for beep counting
This commit is contained in:
parent
dede50a715
commit
54d9ecc380
@ -570,7 +570,7 @@ static inline void outb(uint16_t port, uint8_t value) {
|
||||
asm volatile("outb %0, %1" : : "a"(value), "Nd"(port));
|
||||
}
|
||||
|
||||
void beep(UINTN beep_count) {
|
||||
void beep(unsigned beep_count) {
|
||||
enum {
|
||||
PITCH = 500,
|
||||
BEEP_DURATION_USEC = 100 * 1000,
|
||||
|
@ -191,9 +191,9 @@ void hexdump(const char16_t *prefix, const void *data, size_t size);
|
||||
}
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
void beep(UINTN beep_count);
|
||||
void beep(unsigned beep_count);
|
||||
#else
|
||||
static inline void beep(UINTN beep_count) {}
|
||||
static inline void beep(unsigned beep_count) {}
|
||||
#endif
|
||||
|
||||
EFI_STATUS open_volume(EFI_HANDLE device, EFI_FILE **ret_file);
|
||||
|
Loading…
x
Reference in New Issue
Block a user