Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54369cc6 authored by Pekka Enberg's avatar Pekka Enberg Committed by Greg Kroah-Hartman
Browse files

Staging: w35und: remove ->shutdown from struct wbsoft_priv



It's not actually used for anything, so remove it.

Acked-by: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 72e202d0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@ w35und-objs := \
	wb35rx.o		\
	wb35tx.o		\
	wbhal.o			\
	wblinux.o		\
	wbusb.o			\


+0 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ struct wbsoft_priv {
	MDS Mds;

	spinlock_t SpinLock;
	u32 shutdown;

	atomic_t ThreadCount;

+0 −1
Original line number Diff line number Diff line
@@ -850,7 +850,6 @@ void hal_surprise_remove(struct wbsoft_priv *adapter)
		#ifdef _PE_STATE_DUMP_
		WBDEBUG(("Calling hal_surprise_remove\n"));
		#endif
		WBLINUX_stop( adapter );
	}
}

drivers/staging/winbond/wblinux.c

deleted100644 → 0
+0 −31
Original line number Diff line number Diff line
//============================================================================
//  Copyright (c) 1996-2005 Winbond Electronic Corporation
//
//  Module Name:
//    wblinux.c
//
//  Abstract:
//    Linux releated routines
//
//============================================================================
#include <linux/netdevice.h>

#include "mds_f.h"
#include "mto_f.h"
#include "os_common.h"
#include "wbhal_f.h"
#include "wblinux_f.h"

void
WBLINUX_stop(  struct wbsoft_priv * adapter )
{
	if (atomic_inc_return(&adapter->ThreadCount) == 1) {
		// Shutdown module immediately
		adapter->shutdown = 1;
#ifdef _PE_STATE_DUMP_
		WBDEBUG(( "[w35und] SKB_RELEASE OK\n" ));
#endif
	}

	atomic_dec(&adapter->ThreadCount);
}
+0 −2
Original line number Diff line number Diff line
@@ -10,9 +10,7 @@
// wblinux_f.h
//
int wb35_start_xmit(struct sk_buff *skb, struct net_device *netdev );
void WBLINUX_stop(  struct wbsoft_priv *adapter );
void wb35_set_multicast( struct net_device *netdev );
struct net_device_stats * wb35_netdev_stats( struct net_device *netdev );
void WBLINUX_stop(  struct wbsoft_priv *adapter );

#endif
Loading