Lines Matching refs:sl
193 ssize_t sl; in of_device_modalias() local
198 sl = of_modalias(dev->of_node, str, len - 2); in of_device_modalias()
199 if (sl < 0) in of_device_modalias()
200 return sl; in of_device_modalias()
201 if (sl > len - 2) in of_device_modalias()
204 str[sl++] = '\n'; in of_device_modalias()
205 str[sl] = 0; in of_device_modalias()
206 return sl; in of_device_modalias()
255 int sl; in of_device_uevent_modalias() local
264 sl = of_modalias(dev->of_node, &env->buf[env->buflen-1], in of_device_uevent_modalias()
266 if (sl < 0) in of_device_uevent_modalias()
267 return sl; in of_device_uevent_modalias()
268 if (sl >= (sizeof(env->buf) - env->buflen)) in of_device_uevent_modalias()
270 env->buflen += sl; in of_device_uevent_modalias()