git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15802 27425a3e-05d8-49a3-a47f-9c15f0e5edd8

This commit is contained in:
Giovanni Di Sirio 2022-09-27 07:07:22 +00:00
parent b0b68413ae
commit 782aaee906
3 changed files with 6 additions and 6 deletions

View File

@ -113,10 +113,6 @@ typedef enum {
* architecture dependent, fields. * architecture dependent, fields.
*/ */
struct hal_mac_config { struct hal_mac_config {
/**
* @brief MAC address.
*/
uint8_t *mac_address;
mac_lld_config_fields; mac_lld_config_fields;
#if defined(MAC_CONFIG_EXT_FIELDS) #if defined(MAC_CONFIG_EXT_FIELDS)
MAC_CONFIG_EXT_FIELDS MAC_CONFIG_EXT_FIELDS

View File

@ -234,7 +234,9 @@ typedef struct {
/** /**
* @brief Low level fields of the MAC configuration structure. * @brief Low level fields of the MAC configuration structure.
*/ */
#define mac_lld_config_fields #define mac_lld_config_fields \
/* MAC address.*/ \
uint8_t *mac_address
/** /**
* @brief Low level fields of the MAC transmit descriptor structure. * @brief Low level fields of the MAC transmit descriptor structure.

View File

@ -250,7 +250,9 @@ typedef struct {
/** /**
* @brief Low level fields of the MAC configuration structure. * @brief Low level fields of the MAC configuration structure.
*/ */
#define mac_lld_config_fields #define mac_lld_config_fields \
/* MAC address.*/ \
uint8_t *mac_address
/** /**
* @brief Low level fields of the MAC transmit descriptor structure. * @brief Low level fields of the MAC transmit descriptor structure.