mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
media: v4l2-subdev.h: keep * together with the type
Having the '*' in the next line separated from the type makes it hard to see that these functions return a pointer to that type. Instead, keep it next to the type name so it is clear that it is a pointer to that type. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
c89ee8ed32
commit
8ecbde62c0
1 changed files with 13 additions and 12 deletions
|
@ -930,8 +930,8 @@ struct v4l2_subdev_fh {
|
|||
* @cfg: pointer to &struct v4l2_subdev_pad_config array.
|
||||
* @pad: index of the pad in the @cfg array.
|
||||
*/
|
||||
static inline struct v4l2_mbus_framefmt
|
||||
*v4l2_subdev_get_try_format(struct v4l2_subdev *sd,
|
||||
static inline struct v4l2_mbus_framefmt *
|
||||
v4l2_subdev_get_try_format(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
unsigned int pad)
|
||||
{
|
||||
|
@ -948,8 +948,8 @@ static inline struct v4l2_mbus_framefmt
|
|||
* @cfg: pointer to &struct v4l2_subdev_pad_config array.
|
||||
* @pad: index of the pad in the @cfg array.
|
||||
*/
|
||||
static inline struct v4l2_rect
|
||||
*v4l2_subdev_get_try_crop(struct v4l2_subdev *sd,
|
||||
static inline struct v4l2_rect *
|
||||
v4l2_subdev_get_try_crop(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
unsigned int pad)
|
||||
{
|
||||
|
@ -966,8 +966,8 @@ static inline struct v4l2_rect
|
|||
* @cfg: pointer to &struct v4l2_subdev_pad_config array.
|
||||
* @pad: index of the pad in the @cfg array.
|
||||
*/
|
||||
static inline struct v4l2_rect
|
||||
*v4l2_subdev_get_try_compose(struct v4l2_subdev *sd,
|
||||
static inline struct v4l2_rect *
|
||||
v4l2_subdev_get_try_compose(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
unsigned int pad)
|
||||
{
|
||||
|
@ -975,6 +975,7 @@ static inline struct v4l2_rect
|
|||
pad = 0;
|
||||
return &cfg[pad].try_compose;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
extern const struct v4l2_file_operations v4l2_subdev_fops;
|
||||
|
|
Loading…
Reference in a new issue