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

staging: dgap: fixed "foo* bar should be foo * bar" in dgap.c

clean up checkpatch.pl error:
ERROR: "foo* bar" should be "foo *bar"
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1177ce46
......@@ -202,7 +202,7 @@ static int dgap_test_bios(struct board_t *brd);
static int dgap_test_fep(struct board_t *brd);
static int dgap_tty_register_ports(struct board_t *brd);
static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
struct board_t* brd);
struct board_t *brd);
static void dgap_cleanup_module(void);
......@@ -574,7 +574,7 @@ static int dgap_init_pci(void)
static int dgap_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
{
int rc;
struct board_t* brd;
struct board_t *brd;
if (dgap_numboards >= MAXBOARDS)
return -EPERM;
......@@ -872,7 +872,7 @@ static void dgap_free_irq(struct board_t *brd)
}
static int dgap_firmware_load(struct pci_dev *pdev, int card_type,
struct board_t* brd)
struct board_t *brd)
{
const struct firmware *fw;
char *tmp_ptr;
......
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