Commit ac04b3b7 authored by Marti Bolivar's avatar Marti Bolivar Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192u: don't redefine container_of()



This file already includes <linux/kernel.h>.

Signed-off-by: default avatarMarti Bolivar <mbolivarmullen@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae890d51
Loading
Loading
Loading
Loading
+1 −16
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@
#ifndef IEEE80211_H
#ifndef IEEE80211_H
#define IEEE80211_H
#define IEEE80211_H
#include <linux/if_ether.h> /* ETH_ALEN */
#include <linux/if_ether.h> /* ETH_ALEN */
#include <linux/kernel.h>   /* ARRAY_SIZE */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/module.h>
#include <linux/jiffies.h>
#include <linux/jiffies.h>
#include <linux/timer.h>
#include <linux/timer.h>
@@ -49,21 +49,6 @@
#define IWEVCUSTOM 0x8c02
#define IWEVCUSTOM 0x8c02
#endif
#endif



#ifndef container_of
/**
 * container_of - cast a member of a structure out to the containing structure
 *
 * @ptr:        the pointer to the member.
 * @type:       the type of the container struct this is embedded in.
 * @member:     the name of the member within the struct.
 *
 */
#define container_of(ptr, type, member) ({                      \
	const typeof( ((type *)0)->member ) *__mptr = (ptr);    \
	(type *)( (char *)__mptr - offsetof(type,member) );})
#endif

#define KEY_TYPE_NA		0x0
#define KEY_TYPE_NA		0x0
#define KEY_TYPE_WEP40		0x1
#define KEY_TYPE_WEP40		0x1
#define KEY_TYPE_TKIP		0x2
#define KEY_TYPE_TKIP		0x2