Skip to content

Commit

Permalink
uapi: bcm2835-isp: Fixups for bcm2835-isp uapi structures
Browse files Browse the repository at this point in the history
Rename pad_[] to padding[].
struct bcm2835_isp_rational.den is now unsigned.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
  • Loading branch information
naushir committed Jun 29, 2020
1 parent 66a3e23 commit a6636b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/uapi/linux/bcm2835-isp.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
struct bcm2835_isp_rational {
__s32 num;
__s32 den;
__u32 den;
};

/**
Expand Down Expand Up @@ -140,7 +140,7 @@ struct bcm2835_isp_black_level {
__u16 black_level_r;
__u16 black_level_g;
__u16 black_level_b;
__u8 pad_[2]; /* Unused */
__u8 padding[2]; /* Unused */
};

/**
Expand Down

0 comments on commit a6636b6

Please # to comment.