Home
last modified time | relevance | path

Searched refs:volume_percent (Results 1 – 1 of 1) sorted by relevance

/linux-6.6.21/drivers/input/keyboard/
Dlkkbd.c314 static unsigned char volume_to_hw(int volume_percent) in volume_to_hw() argument
318 if (volume_percent < 0) in volume_to_hw()
319 volume_percent = 0; in volume_to_hw()
320 if (volume_percent > 100) in volume_to_hw()
321 volume_percent = 100; in volume_to_hw()
323 if (volume_percent >= 0) in volume_to_hw()
325 if (volume_percent >= 13) /* 12.5 */ in volume_to_hw()
327 if (volume_percent >= 25) in volume_to_hw()
329 if (volume_percent >= 38) /* 37.5 */ in volume_to_hw()
331 if (volume_percent >= 50) in volume_to_hw()
[all …]