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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Greg Kroah-Hartman 2015-08-14 19:26:20 -07:00
parent b6d9e0cb14
commit 36a24b4eb6
3 changed files with 2 additions and 36 deletions

View file

@ -1,34 +0,0 @@
/* ////////////////////////////////////////////////////////////////////////// */
/* */
/* 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

View file

@ -1,7 +1,7 @@
#ifndef WILC_WLAN_H
#define WILC_WLAN_H
#include "wilc_type.h"
#include "wilc_oswrapper.h"
#define ISWILC1000(id) (((id & 0xfffff000) == 0x100000) ? 1 : 0)

View file

@ -20,7 +20,7 @@
/* #define USE_OLD_SPI_SW */
#include "wilc_type.h"
#include "wilc_oswrapper.h"
#include "linux_wlan_common.h"