|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2012-2015 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2012-2015,2017 The Linux Foundation. All rights reserved.
|
|
|
*
|
|
|
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
|
|
*
|
|
@@ -47,6 +47,8 @@
|
|
|
* to follow the convention that an _S suffix is appended for
|
|
|
* a shift count, while the field mask has no suffix.
|
|
|
*/
|
|
|
+#undef SM
|
|
|
+#undef MS
|
|
|
#define SM(_v, _f) (((_v) << _f ## _S) & _f)
|
|
|
#define MS(_v, _f) (((_v) & _f) >> _f ## _S)
|
|
|
|