Merge pull request #2559 from authmillenon/ng_netdev/doc/fixes

ng_netdev: fix some documentation and a suggestion for a type change
This commit is contained in:
Hauke Petersen 2015-03-10 15:14:05 +01:00
commit b9f4cdc3ae

View File

@ -145,13 +145,13 @@ typedef struct {
/**
* @brief This function is called by a MAC layer when a message of type
* NETDEV_MSG_EVENT_TYPE was received
* @ref NG_NETDEV_MSG_TYPE_EVENT was received
*
* @param[in] dev network device descriptor
* @param[in] event_type event type, given by @ref msg_t::value in the
* received message
* @param[in] event_type event type, given by msg_t::content::value
* in the received message
*/
void (*isr_event)(ng_netdev_t *dev, uint16_t event_type);
void (*isr_event)(ng_netdev_t *dev, uint32_t event_type);
} ng_netdev_driver_t;
/**