From 38fff1b5279665e6e639ae93bf163765bd9df368 Mon Sep 17 00:00:00 2001 From: nvt-se Date: Wed, 24 Jun 2009 16:31:49 +0000 Subject: [PATCH] mac_driver structure has been changed to include the init function. --- core/net/rime/rime-udp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/net/rime/rime-udp.c b/core/net/rime/rime-udp.c index f75850cc9..d5c4376cc 100644 --- a/core/net/rime/rime-udp.c +++ b/core/net/rime/rime-udp.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: rime-udp.c,v 1.3 2009/04/13 19:55:15 nvt-se Exp $ + * $Id: rime-udp.c,v 1.4 2009/06/24 16:31:49 nvt-se Exp $ */ /** @@ -152,6 +152,7 @@ off(int keep_radio_on) /*---------------------------------------------------------------------------*/ const struct mac_driver rime_udp_driver = { "rime-udp", + rime_udp_init, send_packet, read_packet, set_receive_function,