From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Fixes parameters order for new API. --- android/client/if-pan.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/client/if-pan.c b/android/client/if-pan.c index 6207f6e..b0c4b84 100644 --- a/android/client/if-pan.c +++ b/android/client/if-pan.c @@ -40,8 +40,13 @@ SINTMAP(btpan_control_state_t, -1, "(unknown)") DELEMENT(BTPAN_STATE_DISABLED), ENDMAP +#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0) +static void control_state_cb(btpan_control_state_t state, int local_role, + bt_status_t error, const char *ifname) +#else static void control_state_cb(btpan_control_state_t state, bt_status_t error, int local_role, const char *ifname) +#endif { haltest_info("%s: state=%s error=%s local_role=%s ifname=%s\n", __func__, btpan_control_state_t2str(state), -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html