Skip to content

Commit

Permalink
ipa: raspberrypi: Fix bcm2835-isp inclusion type.
Browse files Browse the repository at this point in the history
The bcm2835-isp.h is included with quotes rather than
angle brackets.

Quoted includes is reserved for internal includes, while the
linux/bcm2835-isp.h header is exported from the Linux kernel.

Fix the inclusion type.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
  • Loading branch information
kbingham committed Aug 17, 2021
1 parent c0417c4 commit 5b7d16d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ipa/raspberrypi/controller/rpi/agc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include <map>

#include "linux/bcm2835-isp.h"
#include <linux/bcm2835-isp.h>

#include <libcamera/base/log.h>

Expand Down
2 changes: 1 addition & 1 deletion src/ipa/raspberrypi/controller/rpi/lux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
#include <math.h>

#include "linux/bcm2835-isp.h"
#include <linux/bcm2835-isp.h>

#include <libcamera/base/log.h>

Expand Down

0 comments on commit 5b7d16d

Please sign in to comment.