libcamera: Rename header guards for internal headers

With the internal headers now in include/libcamera/internal/, we may
have identically named headers in include/libcamera/. Their header
guards would clash. Rename the header guards of internal headers to
prevent any issue.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2020-05-22 03:29:07 +03:00
parent f3f1807a1f
commit 4bd09795a1
31 changed files with 93 additions and 93 deletions

View file

@ -4,8 +4,8 @@
*
* log.h - Logging infrastructure
*/
#ifndef __LIBCAMERA_LOG_H__
#define __LIBCAMERA_LOG_H__
#ifndef __LIBCAMERA_INTERNAL_LOG_H__
#define __LIBCAMERA_INTERNAL_LOG_H__
#include <chrono>
#include <sstream>
@ -127,4 +127,4 @@ LogMessage _log(const char *file, unsigned int line,
} /* namespace libcamera */
#endif /* __LIBCAMERA_LOG_H__ */
#endif /* __LIBCAMERA_INTERNAL_LOG_H__ */