Skip to content

Commit

Permalink
staging: cxt1e1: Fix space prohibited between function name and open …
Browse files Browse the repository at this point in the history
…parenthesis

Fix checkpatch.pl issues with space prohibited between function name and
open parenthesis in libsbew.h

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
  • Loading branch information
Gulsah Kose authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent d522924 commit 0a6088c
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions drivers/staging/cxt1e1/libsbew.h
Original file line number Diff line number Diff line change
Expand Up @@ -514,36 +514,36 @@ struct sbecom_port_param
};
typedef struct wancfg wcfg_t;

extern wcfg_t *wancfg_init (char *, char *);
extern int wancfg_card_blink (wcfg_t *, int);
extern int wancfg_ctl (wcfg_t *, int, void *, int, void *, int);
extern int wancfg_del_card_stats (wcfg_t *);
extern int wancfg_del_chan_stats (wcfg_t *, int);
extern int wancfg_enable_ports (wcfg_t *, int);
extern int wancfg_free (wcfg_t *);
extern int wancfg_get_brdaddr (wcfg_t *, struct sbe_brd_addr *);
extern int wancfg_get_brdinfo (wcfg_t *, struct sbe_brd_info *);
extern int wancfg_get_card (wcfg_t *, struct sbecom_card_param *);
extern int wancfg_get_card_chan_stats (wcfg_t *, struct sbecom_chan_stats *);
extern int wancfg_get_card_sn (wcfg_t *);
extern int wancfg_get_card_stats (wcfg_t *, struct temux_card_stats *);
extern int wancfg_get_chan (wcfg_t *, int, struct sbecom_chan_param *);
extern int wancfg_get_chan_stats (wcfg_t *, int, struct sbecom_chan_stats *);
extern int wancfg_get_drvinfo (wcfg_t *, int, struct sbe_drv_info *);
extern int wancfg_get_framer (wcfg_t *, int, struct sbecom_framer_param *);
extern int wancfg_get_iid (wcfg_t *, int, struct sbe_iid_info *);
extern int wancfg_get_sn (wcfg_t *, unsigned int *);
extern int wancfg_read (wcfg_t *, int, struct sbecom_wrt_vec *);
extern int wancfg_reset_device (wcfg_t *, int);
extern int wancfg_set_card (wcfg_t *, struct sbecom_card_param *);
extern int wancfg_set_chan (wcfg_t *, int, struct sbecom_chan_param *);
extern int wancfg_set_framer (wcfg_t *, int, struct sbecom_framer_param *);
extern int wancfg_set_loglevel (wcfg_t *, uint);
extern int wancfg_write (wcfg_t *, int, struct sbecom_wrt_vec *);
extern wcfg_t *wancfg_init(char *, char *);
extern int wancfg_card_blink(wcfg_t *, int);
extern int wancfg_ctl(wcfg_t *, int, void *, int, void *, int);
extern int wancfg_del_card_stats(wcfg_t *);
extern int wancfg_del_chan_stats(wcfg_t *, int);
extern int wancfg_enable_ports(wcfg_t *, int);
extern int wancfg_free(wcfg_t *);
extern int wancfg_get_brdaddr(wcfg_t *, struct sbe_brd_addr *);
extern int wancfg_get_brdinfo(wcfg_t *, struct sbe_brd_info *);
extern int wancfg_get_card(wcfg_t *, struct sbecom_card_param *);
extern int wancfg_get_card_chan_stats(wcfg_t *, struct sbecom_chan_stats *);
extern int wancfg_get_card_sn(wcfg_t *);
extern int wancfg_get_card_stats(wcfg_t *, struct temux_card_stats *);
extern int wancfg_get_chan(wcfg_t *, int, struct sbecom_chan_param *);
extern int wancfg_get_chan_stats(wcfg_t *, int, struct sbecom_chan_stats *);
extern int wancfg_get_drvinfo(wcfg_t *, int, struct sbe_drv_info *);
extern int wancfg_get_framer(wcfg_t *, int, struct sbecom_framer_param *);
extern int wancfg_get_iid(wcfg_t *, int, struct sbe_iid_info *);
extern int wancfg_get_sn(wcfg_t *, unsigned int *);
extern int wancfg_read(wcfg_t *, int, struct sbecom_wrt_vec *);
extern int wancfg_reset_device(wcfg_t *, int);
extern int wancfg_set_card(wcfg_t *, struct sbecom_card_param *);
extern int wancfg_set_chan(wcfg_t *, int, struct sbecom_chan_param *);
extern int wancfg_set_framer(wcfg_t *, int, struct sbecom_framer_param *);
extern int wancfg_set_loglevel(wcfg_t *, uint);
extern int wancfg_write(wcfg_t *, int, struct sbecom_wrt_vec *);

#ifdef NOT_YET_COMMON
extern int wancfg_get_tsioc (wcfg_t *, struct wanc1t3_ts_hdr *, struct wanc1t3_ts_param *);
extern int wancfg_set_tsioc (wcfg_t *, struct wanc1t3_ts_param *);
extern int wancfg_get_tsioc(wcfg_t *, struct wanc1t3_ts_hdr *, struct wanc1t3_ts_param *);
extern int wancfg_set_tsioc(wcfg_t *, struct wanc1t3_ts_param *);
#endif

#endif /*** _INC_LIBSBEW_H_ ***/

0 comments on commit 0a6088c

Please sign in to comment.