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

staging: dgap: rename dgap_finalize_board_init() to dgap_request_irq()

Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8148f37b
......@@ -188,7 +188,7 @@ static void dgap_do_fep_load(struct board_t *brd, const u8 *ufep, int len);
static void dgap_do_conc_load(struct board_t *brd, u8 *uaddr, int len);
#endif
static int dgap_after_config_loaded(struct board_t *brd);
static int dgap_finalize_board_init(struct board_t *brd);
static int dgap_request_irq(struct board_t *brd);
static void dgap_get_vpd(struct board_t *brd);
static void dgap_do_reset_board(struct board_t *brd);
......@@ -789,7 +789,7 @@ static int dgap_found_board(struct pci_dev *pdev, int id, int boardnum)
}
static int dgap_finalize_board_init(struct board_t *brd)
static int dgap_request_irq(struct board_t *brd)
{
int rc;
......@@ -887,7 +887,7 @@ static int dgap_firmware_load(struct pci_dev *pdev, int card_type)
if (ret)
return ret;
ret = dgap_finalize_board_init(brd);
ret = dgap_request_irq(brd);
if (ret)
return ret;
......
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