Lines Matching defs:sdev
286 * @sdev: client handle.
295 int slim_read(struct slim_device *sdev, u32 addr, size_t count, u8 *val)
301 return slim_xfer_msg(sdev, &msg, SLIM_MSG_MC_REQUEST_VALUE);
308 * @sdev: client handle.
313 int slim_readb(struct slim_device *sdev, u32 addr)
318 ret = slim_read(sdev, addr, 1, &buf);
329 * @sdev: client handle.
338 int slim_write(struct slim_device *sdev, u32 addr, size_t count, u8 *val)
344 return slim_xfer_msg(sdev, &msg, SLIM_MSG_MC_CHANGE_VALUE);
351 * @sdev: client handle.
360 int slim_writeb(struct slim_device *sdev, u32 addr, u8 value)
362 return slim_write(sdev, addr, 1, &value);