Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drivers: core: fix kernel-doc markup for dev_err_probe()

There are two literal blocks there. Fix the markups, in order
to produce the right html output and solve those warnings:

./drivers/base/core.c:4218: WARNING: Unexpected indentation.
./drivers/base/core.c:4222: WARNING: Definition list ends without a blank line; unexpected unindent.
./drivers/base/core.c:4223: WARNING: Block quote ends without a blank line; unexpected unindent.

Fixes: a787e5400a1c ("driver core: add device probe log helper")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

+5 -2
+5 -2
drivers/base/core.c
··· 4210 4210 * -EPROBE_DEFER and propagate error upwards. 4211 4211 * In case of -EPROBE_DEFER it sets also defer probe reason, which can be 4212 4212 * checked later by reading devices_deferred debugfs attribute. 4213 - * It replaces code sequence: 4213 + * It replaces code sequence:: 4214 + * 4214 4215 * if (err != -EPROBE_DEFER) 4215 4216 * dev_err(dev, ...); 4216 4217 * else 4217 4218 * dev_dbg(dev, ...); 4218 4219 * return err; 4219 - * with 4220 + * 4221 + * with:: 4222 + * 4220 4223 * return dev_err_probe(dev, err, ...); 4221 4224 * 4222 4225 * Returns @err.