alsa-tools/hdajackretask/apply-changes.h
David Henningsson eb6408a791 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>
2014-08-04 11:07:01 +02:00

15 lines
436 B
C

#ifndef __APPLY_CHANGES_H__
#define __APPLY_CHANGES_H__
#include "sysfs-pin-configs.h"
#include <glib.h>
gboolean apply_changes_reconfig(pin_configs_t* pins, int entries, int card, int device,
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, const char* hints, GError** err);
gboolean reset_changes_boot();
#endif