| /* |
| * Copyright (c) 2013 The Linux Foundation. All rights reserved. |
| * |
| * Previously licensed under the ISC license by Qualcomm Atheros, Inc. |
| * |
| * |
| * Permission to use, copy, modify, and/or distribute this software for |
| * any purpose with or without fee is hereby granted, provided that the |
| * above copyright notice and this permission notice appear in all |
| * copies. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
| * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
| * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| * PERFORMANCE OF THIS SOFTWARE. |
| */ |
| |
| /* |
| * This file was originally distributed by Qualcomm Atheros, Inc. |
| * under proprietary terms before Copyright ownership was assigned |
| * to the Linux Foundation. |
| */ |
| |
| //depot/sw/qca_main/perf_pwr_offload/drivers/host/include/a_types.h#7 - integrate change 1327637 (ktext) |
| //============================================================================== |
| // This file contains the definitions of the basic atheros data types. |
| // It is used to map the data types in atheros files to a platform specific |
| // type. |
| // |
| // Author(s): ="Atheros" |
| //============================================================================== |
| |
| #ifndef _A_TYPES_H_ |
| #define _A_TYPES_H_ |
| #include <athdefs.h> |
| |
| typedef unsigned int A_UINT32; |
| typedef unsigned long long A_UINT64; |
| typedef unsigned short A_UINT16; |
| typedef unsigned char A_UINT8; |
| typedef int A_INT32; |
| typedef short A_INT16; |
| typedef char A_INT8; |
| typedef unsigned char A_UCHAR; |
| typedef char A_CHAR; |
| typedef _Bool A_BOOL; |
| |
| #endif /* _ATHTYPES_H_ */ |