Commit 36a24b4e authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

staging: wilc1000: delete wilc_type.h



The .h file isn't needed at all, so just remove it.

Cc: Johnny Kim <johnny.kim@atmel.com>
Cc: Rachel Kim <rachel.kim@atmel.com>
Cc: Dean Lee <dean.lee@atmel.com>
Cc: Chris Park <chris.park@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b6d9e0cb
Loading
Loading
Loading
Loading
+0 −34
Original line number Diff line number Diff line
/* ////////////////////////////////////////////////////////////////////////// */
/*  */
/* Copyright (c) Atmel Corporation.  All rights reserved. */
/*  */
/* Module Name:  wilc_type.h */
/*  */
/*  */
/* //////////////////////////////////////////////////////////////////////////// */
#ifndef WILC_TYPE_H
#define WILC_TYPE_H

/********************************************
 *
 *      Type Defines
 *
 ********************************************/
#ifdef WIN32
typedef char int8_t;
typedef short int16_t;
typedef long int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
#else
#ifdef _linux_
/*typedef unsigned char         uint8_t;
 * typedef unsigned short       uint16_t;
 * typedef unsigned long        uint32_t;*/
#include <stdint.h>
#else
#include "wilc_oswrapper.h"
#endif
#endif
#endif
+1 −1
Original line number Diff line number Diff line
#ifndef WILC_WLAN_H
#define WILC_WLAN_H

#include "wilc_type.h"
#include "wilc_oswrapper.h"


#define ISWILC1000(id)   (((id & 0xfffff000) == 0x100000) ? 1 : 0)
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
/* #define USE_OLD_SPI_SW */


#include "wilc_type.h"
#include "wilc_oswrapper.h"
#include "linux_wlan_common.h"