Commit 0800471f authored by Federico Vaga's avatar Federico Vaga

kernel: continue registration if sdb is already there

Signed-off-by: 's avatarFederico Vaga <federico.vaga@gmail.com>
parent eb6ded96
......@@ -258,7 +258,7 @@ int ft_probe(struct fmc_device *fmc)
/* Now that the PLL is locked, we can read the SDB info */
ret = fmc_scan_sdb_tree(fmc, 0);
if (ret < 0) {
if (ret < 0 && ret != -EBUSY) {
dev_err(dev,
"%s: no SDB in the bitstream. Are you sure you've provided the correct one?\n",
KBUILD_MODNAME);
......
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