EDAC: i5100_edac: get rid of an unused var
As reported by GCC with W=1: drivers/edac/i5100_edac.c:714:16: warning: variable ‘et’ set but not used [-Wunused-but-set-variable] 714 | unsigned long et; | ^~ It sounds some left over from some code before the addition of an udelay(). Acked-by: Borislav Petkov <bp@alien8.de> Acked-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
54ecb8f702
commit
c43fa3b11e
|
@ -713,7 +713,6 @@ static int i5100_read_spd_byte(const struct mem_ctl_info *mci,
|
|||
{
|
||||
struct i5100_priv *priv = mci->pvt_info;
|
||||
u16 w;
|
||||
unsigned long et;
|
||||
|
||||
pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
|
||||
if (i5100_spddata_busy(w))
|
||||
|
@ -724,7 +723,6 @@ static int i5100_read_spd_byte(const struct mem_ctl_info *mci,
|
|||
0, 0));
|
||||
|
||||
/* wait up to 100ms */
|
||||
et = jiffies + HZ / 10;
|
||||
udelay(100);
|
||||
while (1) {
|
||||
pci_read_config_word(priv->mc, I5100_SPDDATA, &w);
|
||||
|
|
Loading…
Reference in New Issue