|
@@ -100,8 +100,8 @@ void omap_mux_write_array(struct omap_mux_partition *partition,
|
|
|
|
|
|
static char *omap_mux_options;
|
|
static char *omap_mux_options;
|
|
|
|
|
|
-static int __init _omap_mux_init_gpio(struct omap_mux_partition *partition,
|
|
|
|
- int gpio, int val)
|
|
|
|
|
|
+static int _omap_mux_init_gpio(struct omap_mux_partition *partition,
|
|
|
|
+ int gpio, int val)
|
|
{
|
|
{
|
|
struct omap_mux_entry *e;
|
|
struct omap_mux_entry *e;
|
|
struct omap_mux *gpio_mux = NULL;
|
|
struct omap_mux *gpio_mux = NULL;
|
|
@@ -145,7 +145,7 @@ static int __init _omap_mux_init_gpio(struct omap_mux_partition *partition,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-int __init omap_mux_init_gpio(int gpio, int val)
|
|
|
|
|
|
+int omap_mux_init_gpio(int gpio, int val)
|
|
{
|
|
{
|
|
struct omap_mux_partition *partition;
|
|
struct omap_mux_partition *partition;
|
|
int ret;
|
|
int ret;
|
|
@@ -159,9 +159,9 @@ int __init omap_mux_init_gpio(int gpio, int val)
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __init _omap_mux_get_by_name(struct omap_mux_partition *partition,
|
|
|
|
- const char *muxname,
|
|
|
|
- struct omap_mux **found_mux)
|
|
|
|
|
|
+static int _omap_mux_get_by_name(struct omap_mux_partition *partition,
|
|
|
|
+ const char *muxname,
|
|
|
|
+ struct omap_mux **found_mux)
|
|
{
|
|
{
|
|
struct omap_mux *mux = NULL;
|
|
struct omap_mux *mux = NULL;
|
|
struct omap_mux_entry *e;
|
|
struct omap_mux_entry *e;
|
|
@@ -240,7 +240,7 @@ omap_mux_get_by_name(const char *muxname,
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
}
|
|
}
|
|
|
|
|
|
-int __init omap_mux_init_signal(const char *muxname, int val)
|
|
|
|
|
|
+int omap_mux_init_signal(const char *muxname, int val)
|
|
{
|
|
{
|
|
struct omap_mux_partition *partition = NULL;
|
|
struct omap_mux_partition *partition = NULL;
|
|
struct omap_mux *mux = NULL;
|
|
struct omap_mux *mux = NULL;
|