Hi Janusz,
This is a V4L2 driver for TI OMAP1 SoC camera interface.
"0x%0x\n", __func__, it_status);
"0x%0x\n", __func__, it_status);
dev_warn(dev, "%s: format %#x not found\n", __func__,
dev_warn(icd->dev.parent, "Format %#x not found\n",
Two bytes could be saved with consistent use of %#x. :-) Does it make sense to say `%0x' without giving a field width to pad to? That's another two bytes saved. A veritable word!
Cheers, Ralph.