hdajackretask: Add new program for easy retask of hda pin nodes

Most HDA Intel soundcards are to some degree retaskable, i e can be
used for more than one thing. This tool is a GUI to make it easy to
retask your jacks - e g, turn your Mic jack into an extra Headphone,
or why not make them both line outs and connect them to your surround
receiver?

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
David Henningsson 2012-03-22 17:47:02 +01:00
parent a680841d4a
commit 7aa4a74f88
9 changed files with 1586 additions and 1 deletions

View file

@ -0,0 +1,15 @@
#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, GError** err);
gboolean apply_changes_boot(pin_configs_t* pins, int entries, int card, int device,
const char* model, GError** err);
gboolean reset_changes_boot();
#endif