Commit d18cd552 authored by Federico Vaga's avatar Federico Vaga

kernel: remove useless messages/actions

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent c73a1099
......@@ -90,5 +90,4 @@ void fa_read_eeprom_calib(struct fa_dev *fa)
memcpy(&fa->calib, fa->fmc->eeprom + FA_CAL_OFFSET, sizeof(fa->calib));
fa_endian_calib(&fa->calib);
fa_verify_calib(&fa->fmc->dev, &fa->calib, &fa_identity_calib);
dev_info(fa->msgdev, "%s succeeds.\n", __func__);
}
......@@ -520,7 +520,6 @@ int fa_probe(struct fmc_device *fmc)
fwname = ""; /* reprogram will pick from module parameter */
else
fwname = fa->carrier_op->get_gwname();
dev_info(fa->msgdev, "Gateware (%s)\n", fwname);
/* We first write a new binary (and lm32) within the carrier */
err = fmc_reprogram(fmc, &fa_dev_drv, fwname, 0x0);
......@@ -529,7 +528,6 @@ int fa_probe(struct fmc_device *fmc)
fwname, err);
goto out;
}
dev_info(fa->msgdev, "Gateware successfully loaded\n");
} else {
dev_info(fa->msgdev,
"Gateware already there. Set the \"gateware\" parameter to overwrite the current gateware\n");
......
......@@ -233,9 +233,6 @@ int fa_onewire_init(struct fa_dev *fa)
if (ds18x_read_serial(fa) < 0)
return -EIO;
/* read the temperature once, to ensure it works, and print it */
fa_read_temp(fa, 2);
return 0;
}
......
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