diff options
author | Tobin C. Harding <me@tobin.cc> | 2017-04-27 11:25:26 +1000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-28 11:47:26 +0200 |
commit | f730fb19dd5fca3ccf1af9e80e4455c76bf46f28 (patch) | |
tree | 70b6b445ddd1533f7e95a708bfedde8b7286f85a /drivers/staging | |
parent | 72f78682da2af5fa57f89f39d4c789123288274d (diff) |
staging: ks7010: add enum multicast_filter_type
Driver uses preprocessor directives to define multicast filter
constants. These can be defined using an enumeration type. Doing so
adds to the readability and gives the assists the compiler.
Add enumeration type multicast_filter_type to replace preprocessor
defined constants.
Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/ks7010/ks_hostif.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/staging/ks7010/ks_hostif.h b/drivers/staging/ks7010/ks_hostif.h index f1fdd840c8be..41ae74a5c804 100644 --- a/drivers/staging/ks7010/ks_hostif.h +++ b/drivers/staging/ks7010/ks_hostif.h @@ -624,10 +624,11 @@ enum { SHORT_PREAMBLE }; -/* multicast filter */ -#define MCAST_FILTER_MCAST 0 -#define MCAST_FILTER_MCASTALL 1 -#define MCAST_FILTER_PROMISC 2 +enum multicast_filter_type { + MCAST_FILTER_MCAST, + MCAST_FILTER_MCASTALL, + MCAST_FILTER_PROMISC, +}; #define NIC_MAX_MCAST_LIST 32 |