hdajackretask: Add "hints" functionality

The kernel driver has some hints you can send to it that changes
parser behaviour. This patch exposes that functionality to the user.

(This patch also includes minor fixes for documentation, GTK warnings
and whitespace.)

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
David Henningsson 2014-08-01 16:20:30 +02:00 committed by Takashi Iwai
parent 406f80c968
commit eb6408a791
7 changed files with 209 additions and 33 deletions

View file

@ -5,10 +5,10 @@
#include <glib.h>
gboolean apply_changes_reconfig(pin_configs_t* pins, int entries, int card, int device,
const char* model, GError** err);
const char* model, const char* hints, GError** err);
gboolean apply_changes_boot(pin_configs_t* pins, int entries, int card, int device,
const char* model, GError** err);
const char* model, const char* hints, GError** err);
gboolean reset_changes_boot();
#endif