···125125 */126126struct clk *clk_get_parent(struct clk *clk);127127128128+/**129129+ * clk_get_sys - get a clock based upon the device name130130+ * @dev_id: device name131131+ * @con_id: connection ID132132+ *133133+ * Returns a struct clk corresponding to the clock producer, or134134+ * valid IS_ERR() condition containing errno. The implementation135135+ * uses @dev_id and @con_id to determine the clock consumer, and136136+ * thereby the clock producer. In contrast to clk_get() this function137137+ * takes the device name instead of the device itself for identification.138138+ *139139+ * Drivers must assume that the clock source is not enabled.140140+ *141141+ * clk_get_sys should not be called from within interrupt context.142142+ */143143+struct clk *clk_get_sys(const char *dev_id, const char *con_id);144144+128145#endif