diff options
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/extres/clk/clk.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/extres/clk/clk.c b/sys/dev/extres/clk/clk.c index 9c189fa86699..b3996c53bdc8 100644 --- a/sys/dev/extres/clk/clk.c +++ b/sys/dev/extres/clk/clk.c @@ -1205,7 +1205,9 @@ clk_set_assigned(device_t dev, phandle_t node) "assigned-clock-parents", "#clock-cells", &nclocks); if (error != 0) { - device_printf(dev, "cannot parse assigned-clock-parents property\n"); + if (error != ENOENT) + device_printf(dev, + "cannot parse assigned-clock-parents property\n"); return (error); } |
