staging: kpc2000: remove dead code in core.c

Fixes checkpatch warning: "Consider removing the code enclosed by
this #if 0 and its #endif".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Simon Sandström 2019-06-13 15:14:51 +02:00 committed by Greg Kroah-Hartman
parent c90c1b427b
commit 0c3b9b7e19
1 changed files with 0 additions and 6 deletions

View File

@ -223,15 +223,9 @@ static void wait_and_read_ssid(struct kp2000_device *pcard)
dev_notice(&pcard->pdev->dev, "SSID didn't show up!\n");
#if 0
// Timed out waiting for the SSID to show up, just use the DDNA instead?
read_val = readq(pcard->sysinfo_regs_base + REG_FPGA_DDNA);
pcard->ssid = read_val;
#else
// Timed out waiting for the SSID to show up, stick all zeros in the
// value
pcard->ssid = 0;
#endif
}
static int read_system_regs(struct kp2000_device *pcard)