mirror of
https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
synced 2025-10-19 17:11:09 +02:00
* rtw-ap: Fix compiler warning. Signed-off-by: Ben Greear <greearb@candelatech.com> * makefile: Add entry for compiling against openwrt tree. Users would need to edit it to match their path, but this should get them started. Signed-off-by: Ben Greear <greearb@candelatech.com> * makefile: Allow defining KSRC outside of build. So, you can do this: KSRC=/tmp/my/kernel make And not have to edit the makefile to have this function as desired. Signed-off-by: Ben Greear <greearb@candelatech.com> * Fix stack-too-large warning on x86-64 compile Signed-off-by: Ben Greear <greearb@candelatech.com> * compile: Allow cross-compiling on cmd-line w/out editing Makefile For instance: KSRC=/home/greearb/git/openwrt-neo2-dev/build_dir/target-aarch64_cortex-a53_musl/linux-sunxi_cortexa53/linux-4.14.78 \ EXT_EXTRA_CFLAGS=-DCONFIG_LITTLE_ENDIAN ARCH=arm64 CROSS_COMPILE=aarch64-openwrt-linux- MODDESTDIR=/tmp make V=1 Signed-off-by: Ben Greear <greearb@candelatech.com> * build: Attempt to auto-detect endian-ness. Will make building in openwrt much easier. Signed-off-by: Ben Greear <greearb@candelatech.com> * Fix build against openwrt backports tree. Like breaks builds elsewhere, can fix it up later. Signed-off-by: Ben Greear <greearb@candelatech.com> * Register wiphy after we probe MAC addr. This way the phy object has a valid MAC-addr, which can be helpful for identification. Signed-off-by: Ben Greear <greearb@candelatech.com> * Make sure MAC is set in wiphy_preinit This is needed to make sure the phy registers with a proper MAC address instead of all 00 Signed-off-by: Ben Greear <greearb@candelatech.com> * Fix build on 4.19 kernel. Signed-off-by: Ben Greear <greearb@candelatech.com> * Fix compile against 4.20 kernel. Remove some variable-length arrays (which could be security bugs, ways to overflow the stack it seems), and remove use of get_monotonic_boottime. Signed-off-by: Ben Greear <greearb@candelatech.com> * Support arm64
94 lines
2.9 KiB
C
94 lines
2.9 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef _LINUX_WIRELESS_H
|
|
#define _LINUX_WIRELESS_H
|
|
|
|
/***************************** INCLUDES *****************************/
|
|
|
|
#if 0
|
|
#include <linux/types.h> /* for __u* and __s* typedefs */
|
|
#include <linux/socket.h> /* for "struct sockaddr" et al */
|
|
#include <linux/if.h> /* for IFNAMSIZ and co... */
|
|
#else
|
|
#define __user
|
|
//typedef uint16_t __u16;
|
|
#include <sys/socket.h> /* for "struct sockaddr" et al */
|
|
#include <net/if.h> /* for IFNAMSIZ and co... */
|
|
#endif
|
|
|
|
/****************************** TYPES ******************************/
|
|
#ifdef CONFIG_COMPAT
|
|
struct compat_iw_point {
|
|
compat_caddr_t pointer;
|
|
__u16 length;
|
|
__u16 flags;
|
|
};
|
|
#endif
|
|
/* --------------------------- SUBTYPES --------------------------- */
|
|
/*
|
|
* For all data larger than 16 octets, we need to use a
|
|
* pointer to memory allocated in user space.
|
|
*/
|
|
struct iw_point {
|
|
void __user *pointer; /* Pointer to the data (in user space) */
|
|
__u16 length; /* number of fields or size in bytes */
|
|
__u16 flags; /* Optional params */
|
|
};
|
|
|
|
|
|
/* ------------------------ IOCTL REQUEST ------------------------ */
|
|
/*
|
|
* This structure defines the payload of an ioctl, and is used
|
|
* below.
|
|
*
|
|
* Note that this structure should fit on the memory footprint
|
|
* of iwreq (which is the same as ifreq), which mean a max size of
|
|
* 16 octets = 128 bits. Warning, pointers might be 64 bits wide...
|
|
* You should check this when increasing the structures defined
|
|
* above in this file...
|
|
*/
|
|
union iwreq_data {
|
|
/* Config - generic */
|
|
char name[IFNAMSIZ];
|
|
/* Name : used to verify the presence of wireless extensions.
|
|
* Name of the protocol/provider... */
|
|
|
|
struct iw_point data; /* Other large parameters */
|
|
};
|
|
|
|
/*
|
|
* The structure to exchange data for ioctl.
|
|
* This structure is the same as 'struct ifreq', but (re)defined for
|
|
* convenience...
|
|
* Do I need to remind you about structure size (32 octets) ?
|
|
*/
|
|
struct iwreq {
|
|
union {
|
|
char ifrn_name[IFNAMSIZ]; /* if name, e.g. "eth0" */
|
|
} ifr_ifrn;
|
|
|
|
/* Data part (defined just above) */
|
|
union iwreq_data u;
|
|
};
|
|
|
|
#endif /* _LINUX_WIRELESS_H */
|
|
|