staging: ozwpan: Fix typo in typedef
authorChristoph Jaeger <email@christophjaeger.info>
Mon, 4 Aug 2014 12:54:48 +0000 (14:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:11 +0000 (12:23 -0700)
Signed-off-by: Christoph Jaeger <email@christophjaeger.info>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ozwpan/ozproto.h

index cb38e02c968ea34b866f5016da420a14a04301e9..378b7377a7a4d13309544427c978f72e2e7ccf7d 100644 (file)
@@ -34,7 +34,7 @@ typedef void (*oz_app_term_fn_t)(void);
 typedef int (*oz_app_start_fn_t)(struct oz_pd *pd, int resume);
 typedef void (*oz_app_stop_fn_t)(struct oz_pd *pd, int pause);
 typedef void (*oz_app_rx_fn_t)(struct oz_pd *pd, struct oz_elt *elt);
-typedef int (*oz_app_hearbeat_fn_t)(struct oz_pd *pd);
+typedef int (*oz_app_heartbeat_fn_t)(struct oz_pd *pd);
 typedef void (*oz_app_farewell_fn_t)(struct oz_pd *pd, u8 ep_num,
                        u8 *data, u8 len);
 
@@ -44,7 +44,7 @@ struct oz_app_if {
        oz_app_start_fn_t       start;
        oz_app_stop_fn_t        stop;
        oz_app_rx_fn_t          rx;
-       oz_app_hearbeat_fn_t    heartbeat;
+       oz_app_heartbeat_fn_t   heartbeat;
        oz_app_farewell_fn_t    farewell;
        int                     app_id;
 };
This page took 0.026926 seconds and 5 git commands to generate.