ipa: raspberrypi: Fix bcm2835-isp inclusion type.

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>
This commit is contained in:
Kieran Bingham 2021-08-09 17:53:11 +01:00
parent c0417c4d52
commit 5b7d16dc1f
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
#include <map> #include <map>
#include "linux/bcm2835-isp.h" #include <linux/bcm2835-isp.h>
#include <libcamera/base/log.h> #include <libcamera/base/log.h>

View file

@ -6,7 +6,7 @@
*/ */
#include <math.h> #include <math.h>
#include "linux/bcm2835-isp.h" #include <linux/bcm2835-isp.h>
#include <libcamera/base/log.h> #include <libcamera/base/log.h>