mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
batman-adv: Convert batadv_dat_addr_t to proper type
The #define for batadv_dat_addr_t is doing nothing else than giving u16 a new typename. But C already has the special keyword "typedef" which is also better supported by kernel-doc. Signed-off-by: Sven Eckelmann <sven@narfation.org> Acked-by: Antonio Quartulli <a@unstable.cc> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
This commit is contained in:
parent
3b1709de64
commit
993a4a5f7c
@ -43,12 +43,13 @@ struct seq_file;
|
||||
#ifdef CONFIG_BATMAN_ADV_DAT
|
||||
|
||||
/**
|
||||
* batadv_dat_addr_t - it is the type used for all DHT addresses. If it is
|
||||
* changed, BATADV_DAT_ADDR_MAX is changed as well.
|
||||
* typedef batadv_dat_addr_t - type used for all DHT addresses
|
||||
*
|
||||
* If it is changed, BATADV_DAT_ADDR_MAX is changed as well.
|
||||
*
|
||||
* *Please be careful: batadv_dat_addr_t must be UNSIGNED*
|
||||
*/
|
||||
#define batadv_dat_addr_t u16
|
||||
typedef u16 batadv_dat_addr_t;
|
||||
|
||||
#endif /* CONFIG_BATMAN_ADV_DAT */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user