1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

Merge pull request #12686 from maribu/code_style

drivers/net/netdev: Use consistent code formatting
This commit is contained in:
Alexandre Abadie 2019-11-11 13:54:06 +01:00 committed by GitHub
commit b75ba42b77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -283,7 +283,7 @@ typedef void (*netdev_event_cb_t)(netdev_t *dev, netdev_event_t event);
struct netdev {
const struct netdev_driver *driver; /**< ptr to that driver's interface. */
netdev_event_cb_t event_callback; /**< callback for device events */
void* context; /**< ptr to network stack context */
void *context; /**< ptr to network stack context */
#ifdef MODULE_NETDEV_LAYER
netdev_t *lower; /**< ptr to the lower netdev layer */
#endif