fix gp2x build
authornotaz <notasas@gmail.com>
Thu, 10 Oct 2013 22:04:24 +0000 (01:04 +0300)
committernotaz <notasas@gmail.com>
Thu, 10 Oct 2013 22:04:24 +0000 (01:04 +0300)
gp2x/in_gp2x.c

index 99cd46a..bfa2df1 100644 (file)
@@ -88,7 +88,7 @@ static int in_gp2x_get_wiz_bits(void)
        return value;
 }
 
-static void in_gp2x_probe(void)
+static void in_gp2x_probe(const in_drv_t *drv)
 {
        switch (gp2x_dev_id)
        {
@@ -121,7 +121,7 @@ static void in_gp2x_free(void *drv_data)
 }
 
 static const char * const *
-in_gp2x_get_key_names(int *count)
+in_gp2x_get_key_names(const in_drv_t *drv, int *count)
 {
        *count = IN_GP2X_NBUTTONS;
        return in_gp2x_keys;
@@ -303,6 +303,6 @@ void in_gp2x_init(const struct in_default_bind *defbinds)
        
        in_gp2x_combo_keys = in_gp2x_combo_acts = 0;
 
-       in_register_driver(&in_gp2x_drv, defbinds);
+       in_register_driver(&in_gp2x_drv, defbinds, NULL);
 }