1/* SPDX-License-Identifier: GPL-2.0 */
2/******************************************************************************
3 *
4 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
5 *
6 * Modifications for inclusion into the Linux staging tree are
7 * Copyright(c) 2010 Larry Finger. All rights reserved.
8 *
9 * Contact information:
10 * WLAN FAE <wlanfae@realtek.com>
11 * Larry Finger <Larry.Finger@lwfinger.net>
12 *
13 ******************************************************************************/
14#ifndef __BASIC_TYPES_H__
15#define __BASIC_TYPES_H__
16
17#include <linux/types.h>
18
19#define sint signed int
20
21/* Should we extend this to be host_addr_t and target_addr_t for case:
22 *	host : x86_64
23 *	target : mips64
24 */
25#define addr_t unsigned long
26
27#endif /*__BASIC_TYPES_H__*/
28
29