Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8712: base_types: Remove unused macros

Those #define's are not used anywhere, get rid of them.

Signed-off-by: Mauro Dreissig <mukadr@gmail.com>
Link: https://lore.kernel.org/r/20200701214420.5566-3-mukadr@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Mauro Dreissig and committed by
Greg Kroah-Hartman
0f6ba599 2becc421

-7
-7
drivers/staging/rtl8712/basic_types.h
··· 14 14 #ifndef __BASIC_TYPES_H__ 15 15 #define __BASIC_TYPES_H__ 16 16 17 - #define SUCCESS 0 18 - #define FAIL (-1) 19 - 20 17 #include <linux/types.h> 21 18 22 - #define SIZE_T __kernel_size_t 23 19 #define sint signed int 24 20 25 21 /* Should we extend this to be host_addr_t and target_addr_t for case: ··· 23 27 * target : mips64 24 28 */ 25 29 #define addr_t unsigned long 26 - 27 - #define MEM_ALIGNMENT_OFFSET (sizeof(SIZE_T)) 28 - #define MEM_ALIGNMENT_PADDING (sizeof(SIZE_T) - 1) 29 30 30 31 #endif /*__BASIC_TYPES_H__*/ 31 32