ieee802154_i.h (0ea3da64fa602efa0a89502eefdb396be84d2eba) | ieee802154_i.h (5d65cae4bf6ffe29bba90f621e947922c5fb80db) |
---|---|
1/* 2 * Copyright (C) 2007-2012 Siemens AG 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 6 * as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, --- 40 unchanged lines hidden (view full) --- 49 * with serial driver. 50 */ 51 struct workqueue_struct *workqueue; 52 53 /* SoftMAC device is registered and running. One can add subinterfaces. 54 * This flag should be modified under slaves_mtx and RTNL, so you can 55 * read them using any of protection methods. 56 */ | 1/* 2 * Copyright (C) 2007-2012 Siemens AG 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 6 * as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, --- 40 unchanged lines hidden (view full) --- 49 * with serial driver. 50 */ 51 struct workqueue_struct *workqueue; 52 53 /* SoftMAC device is registered and running. One can add subinterfaces. 54 * This flag should be modified under slaves_mtx and RTNL, so you can 55 * read them using any of protection methods. 56 */ |
57 bool running; | 57 bool started; |
58 59 struct tasklet_struct tasklet; 60 struct sk_buff_head skb_queue; 61}; 62 63#define MAC802154_DEVICE_STOPPED 0x00 64#define MAC802154_DEVICE_RUN 0x01 65 --- 126 unchanged lines hidden --- | 58 59 struct tasklet_struct tasklet; 60 struct sk_buff_head skb_queue; 61}; 62 63#define MAC802154_DEVICE_STOPPED 0x00 64#define MAC802154_DEVICE_RUN 0x01 65 --- 126 unchanged lines hidden --- |