mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-25 17:45:06 +03:00
ipa: raspberrypi: Tidy up variable names to be consistent
Change variable names to camel case to be consistent with the rest of the source files. Remove #define consts and replace with constexpr. Add some newlines to make the code more readable. There are no functional changes in this commit. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> [Kieran: Rebase merge conflicts resolved] [Kieran: Fix checkstyle line under 80 chars] Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
0e2c714024
commit
4c2bfc317a
3 changed files with 98 additions and 95 deletions
|
@ -41,7 +41,7 @@ enum BufferMask {
|
|||
};
|
||||
|
||||
/* Size of the LS grid allocation. */
|
||||
#define MAX_LS_GRID_SIZE (32 << 10)
|
||||
static constexpr unsigned int MaxLsGridSize = 32 << 10;
|
||||
|
||||
/* List of controls handled by the Raspberry Pi IPA */
|
||||
static const ControlInfoMap Controls = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue