Commit c7873665 authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman

staging: dgap: remove unused paramter in dgap_parsefile()

"remove" parameter is not used in dgap_parsefile().
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7bf0a4cc
...@@ -174,7 +174,7 @@ static void dgap_remove_tty_sysfs(struct device *c); ...@@ -174,7 +174,7 @@ static void dgap_remove_tty_sysfs(struct device *c);
/* /*
* Function prototypes from dgap_parse.h * Function prototypes from dgap_parse.h
*/ */
static int dgap_parsefile(char **in, int remove); static int dgap_parsefile(char **in);
static struct cnode *dgap_find_config(int type, int bus, int slot); static struct cnode *dgap_find_config(int type, int bus, int slot);
static uint dgap_config_get_num_prts(struct board_t *bd); static uint dgap_config_get_num_prts(struct board_t *bd);
static char *dgap_create_config_string(struct board_t *bd, char *string); static char *dgap_create_config_string(struct board_t *bd, char *string);
...@@ -852,7 +852,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type) ...@@ -852,7 +852,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type)
*/ */
tmp_ptr = dgap_config_buf; tmp_ptr = dgap_config_buf;
if (dgap_parsefile(&tmp_ptr, TRUE) != 0) { if (dgap_parsefile(&tmp_ptr) != 0) {
kfree(dgap_config_buf); kfree(dgap_config_buf);
return -EINVAL; return -EINVAL;
} }
...@@ -6427,7 +6427,7 @@ static void dgap_remove_tty_sysfs(struct device *c) ...@@ -6427,7 +6427,7 @@ static void dgap_remove_tty_sysfs(struct device *c)
/* /*
* Parse a configuration file read into memory as a string. * Parse a configuration file read into memory as a string.
*/ */
static int dgap_parsefile(char **in, int remove) static int dgap_parsefile(char **in)
{ {
struct cnode *p, *brd, *line, *conc; struct cnode *p, *brd, *line, *conc;
int rc; int rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment