Lines Matching defs:action
5611 const struct usb_action *action)
5613 while (action->req) {
5614 switch (action->req) {
5616 reg_w(gspca_dev, action->val, action->idx);
5619 reg_r(gspca_dev, action->idx);
5623 action->val, /* reg */
5624 action->idx & 0xff, /* valL */
5625 action->idx >> 8); /* valH */
5629 action->idx >> 8, /* reg */
5630 action->idx & 0xff, /* valL */
5631 action->val); /* valH */
5635 msleep(action->idx);
5638 action++;