2012-03-22 17:47:02 +01:00
|
|
|
#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,
|
2014-08-01 16:20:30 +02:00
|
|
|
const char* model, const char* hints, GError** err);
|
2012-03-22 17:47:02 +01:00
|
|
|
|
|
|
|
|
gboolean apply_changes_boot(pin_configs_t* pins, int entries, int card, int device,
|
2014-08-01 16:20:30 +02:00
|
|
|
const char* model, const char* hints, GError** err);
|
2025-01-27 11:02:21 +01:00
|
|
|
gboolean reset_changes_boot(GError ** err);
|
2012-03-22 17:47:02 +01:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|