staging: brcm80211: removed function declaration typedefs from otp.c

Softmac related code cleanup. Typedefs are undesirable according to the
CodingStyle document.

Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Reviewed-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Roland Vossen
2011-08-08 15:57:55 +02:00
committed by Greg Kroah-Hartman
parent bc8adcd523
commit 87c0c569a2

View File

@@ -59,23 +59,15 @@
#define MAXNUMRDES 9 /* Maximum OTP redundancy entries */ #define MAXNUMRDES 9 /* Maximum OTP redundancy entries */
/* OTP common function type */
typedef int (*otp_status_t) (void *oh);
typedef int (*otp_size_t) (void *oh);
typedef void *(*otp_init_t) (struct si_pub *sih);
typedef u16(*otp_read_bit_t) (void *oh, chipcregs_t *cc, uint off);
typedef int (*otp_read_region_t) (struct si_pub *sih, int region, u16 *data,
uint *wlen);
typedef int (*otp_nvread_t) (void *oh, char *data, uint *len);
/* OTP function struct */ /* OTP function struct */
struct otp_fn_s { struct otp_fn_s {
otp_size_t size; int (*size)(void *oh);
otp_read_bit_t read_bit; u16 (*read_bit)(void *oh, chipcregs_t *cc, uint off);
otp_init_t init; void *(*init)(struct si_pub *sih);
otp_read_region_t read_region; int (*read_region)(struct si_pub *sih, int region, u16 *data,
otp_nvread_t nvread; uint *wlen);
otp_status_t status; int (*nvread)(void *oh, char *data, uint *len);
int (*status)(void *oh);
}; };
struct otpinfo { struct otpinfo {
@@ -445,14 +437,14 @@ static int ipxotp_nvread(void *oh, char *data, uint *len)
} }
static struct otp_fn_s ipxotp_fn = { static struct otp_fn_s ipxotp_fn = {
(otp_size_t) ipxotp_size, (int (*)(void *)) ipxotp_size,
(otp_read_bit_t) ipxotp_read_bit, (u16 (*)(void *, chipcregs_t *, uint)) ipxotp_read_bit,
(otp_init_t) ipxotp_init, (void *(*)(struct si_pub *)) ipxotp_init,
(otp_read_region_t) ipxotp_read_region, (int (*)(struct si_pub *, int, u16 *, uint *)) ipxotp_read_region,
(otp_nvread_t) ipxotp_nvread, (int (*)(void *, char *, uint *)) ipxotp_nvread,
(otp_status_t) ipxotp_status (int (*)(void *)) ipxotp_status
}; };
/* /*