blob: 8d713d756105b91856e8d8283e9a0fb540391283 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* linux/include/linux/sound_control.h
*
* franciscofranco.1990@gmail.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef _LINUX_SOUNT_CONTROL_H
#define _LINUX_SOUNT_CONTROL_H
void update_headphones_volume_boost(int vol_boost);
void update_headset_boost(int vol_boost);
void update_speaker_gain(int vol_boost);
void update_mic_gain(int vol_boost);
#endif
|