Commit 8b5be694 authored by Alessandro Rubini's avatar Alessandro Rubini

kernel/core: trivial message fix (more info)

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent d4955eba
......@@ -184,7 +184,8 @@ int fd_probe(struct fmc_device *fmc)
/* FIXME: factorize the following stuff */
/* Verify that we have SDB at offset 0 */
if (fmc_readl(fmc, 0) != 0x5344422d) {
dev_err(dev, "Can't find SDB magic\n");
dev_err(dev, "Can't find SDB magic (got 0x%x)\n",
fmc_readl(fmc, 0));
ret = -ENODEV;
goto out;
}
......
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