From 247de015b5ac9cb89b0207b584da5faa048ac655 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Mon, 30 Jun 2008 08:09:17 +0000 Subject: [PATCH] added name to mac structure --- core/net/mac/nullmac.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/net/mac/nullmac.c b/core/net/mac/nullmac.c index 5a8dcc8de..0554c1e26 100644 --- a/core/net/mac/nullmac.c +++ b/core/net/mac/nullmac.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: nullmac.c,v 1.7 2008/02/24 21:05:28 adamdunkels Exp $ + * $Id: nullmac.c,v 1.8 2008/06/30 08:09:17 adamdunkels Exp $ */ /** @@ -91,6 +91,7 @@ off(int keep_radio_on) } /*---------------------------------------------------------------------------*/ const struct mac_driver nullmac_driver = { + "nullmac", send_packet, read_packet, set_receive_function,