mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 18:42:14 -04:00
media: ccs-pll: Print missing PLL flags
Printing the OP_PIX_CLOCK_PER_LANE and NO_OP_CLOCKS CCS PLL flags is missing, add them now. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
committed by
Hans Verkuil
parent
2ab7b3d07d
commit
715f84c1e5
@@ -124,7 +124,9 @@ static void print_pll(struct device *dev, const struct ccs_pll *pll)
|
||||
dev_dbg(dev, "pixel rate on CSI-2 bus:\t%u\n",
|
||||
pll->pixel_rate_csi);
|
||||
|
||||
dev_dbg(dev, "flags%s%s%s%s%s%s%s%s\n",
|
||||
dev_dbg(dev, "flags%s%s%s%s%s%s%s%s%s%s\n",
|
||||
pll->flags & PLL_FL(OP_PIX_CLOCK_PER_LANE) ? " op-pix-clock-per-lane" : "",
|
||||
pll->flags & PLL_FL(NO_OP_CLOCKS) ? " no-op-clocks" : "",
|
||||
pll->flags & PLL_FL(LANE_SPEED_MODEL) ? " lane-speed" : "",
|
||||
pll->flags & PLL_FL(EXT_IP_PLL_DIVIDER) ?
|
||||
" ext-ip-pll-divider" : "",
|
||||
|
||||
Reference in New Issue
Block a user