Home
last modified time | relevance | path

Searched refs:__format (Results 1 – 4 of 4) sorted by relevance

/drivers/media/i2c/
Dmt9t001.c371 struct v4l2_mbus_framefmt *__format; in mt9t001_set_format() local
394 __format = __mt9t001_get_pad_format(mt9t001, fh, format->pad, in mt9t001_set_format()
396 __format->width = __crop->width / hratio; in mt9t001_set_format()
397 __format->height = __crop->height / vratio; in mt9t001_set_format()
399 format->format = *__format; in mt9t001_set_format()
420 struct v4l2_mbus_framefmt *__format; in mt9t001_set_crop() local
451 __format = __mt9t001_get_pad_format(mt9t001, fh, crop->pad, in mt9t001_set_crop()
453 __format->width = rect.width; in mt9t001_set_crop()
454 __format->height = rect.height; in mt9t001_set_crop()
Dmt9v032.c516 struct v4l2_mbus_framefmt *__format; in mt9v032_set_format() local
539 __format = __mt9v032_get_pad_format(mt9v032, fh, format->pad, in mt9v032_set_format()
541 __format->width = __crop->width / hratio; in mt9v032_set_format()
542 __format->height = __crop->height / vratio; in mt9v032_set_format()
550 format->format = *__format; in mt9v032_set_format()
571 struct v4l2_mbus_framefmt *__format; in mt9v032_set_crop() local
602 __format = __mt9v032_get_pad_format(mt9v032, fh, crop->pad, in mt9v032_set_crop()
604 __format->width = rect.width; in mt9v032_set_crop()
605 __format->height = rect.height; in mt9v032_set_crop()
Dmt9p031.c551 struct v4l2_mbus_framefmt *__format; in mt9p031_set_format() local
574 __format = __mt9p031_get_pad_format(mt9p031, fh, format->pad, in mt9p031_set_format()
576 __format->width = __crop->width / hratio; in mt9p031_set_format()
577 __format->height = __crop->height / vratio; in mt9p031_set_format()
579 format->format = *__format; in mt9p031_set_format()
600 struct v4l2_mbus_framefmt *__format; in mt9p031_set_crop() local
629 __format = __mt9p031_get_pad_format(mt9p031, fh, crop->pad, in mt9p031_set_crop()
631 __format->width = rect.width; in mt9p031_set_crop()
632 __format->height = rect.height; in mt9p031_set_crop()
/drivers/net/wireless/rt2x00/
Drt2x00debug.c437 #define RT2X00DEBUGFS_OPS_READ(__name, __format, __type) \ argument
464 size = sprintf(line, __format, value); \
513 #define RT2X00DEBUGFS_OPS(__name, __format, __type) \ argument
514 RT2X00DEBUGFS_OPS_READ(__name, __format, __type); \