Rev 4350 | Rev 4695 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4350 | Rev 4351 | ||
---|---|---|---|
Line 53... | Line 53... | ||
53 | 53 | ||
54 | /** Notifies the internetwork layer modules about the device state change. |
54 | /** Notifies the internetwork layer modules about the device state change. |
55 | * @param il_phone The internetwork layer module phone used for (semi)remote calls. Input parameter. |
55 | * @param il_phone The internetwork layer module phone used for (semi)remote calls. Input parameter. |
56 | * @param device_id The device identifier. Input parameter. |
56 | * @param device_id The device identifier. Input parameter. |
57 | * @param state The new device state. Input parameter. |
57 | * @param state The new device state. Input parameter. |
- | 58 | * @param target The target internetwork module service to be delivered to. Input parameter. |
|
58 | * @returns EOK on success. |
59 | * @returns EOK on success. |
59 | */ |
60 | */ |
60 | static inline int il_device_state_msg( int il_phone, device_id_t device_id, device_state_t state ){ |
61 | static inline int il_device_state_msg( int il_phone, device_id_t device_id, device_state_t state, services_t target ){ |
61 | return generic_device_state_msg( il_phone, NET_IL_DEVICE_STATE, device_id, state ); |
62 | return generic_device_state_msg( il_phone, NET_IL_DEVICE_STATE, device_id, state, target ); |
62 | } |
63 | } |
63 | 64 | ||
64 | /** Notifies the internetwork layer modules about the received packet/s. |
65 | /** Notifies the internetwork layer modules about the received packet/s. |
65 | * @param il_phone The internetwork layer module phone used for (semi)remote calls. Input parameter. |
66 | * @param il_phone The internetwork layer module phone used for (semi)remote calls. Input parameter. |
66 | * @param device_id The device identifier. Input parameter. |
67 | * @param device_id The device identifier. Input parameter. |