libcamera: Remove space between empty curly brackets

Remove spaces between empty curly brackets (replacing { } with {}) to
comply with the coding style. Fix one other coding style violation on
the lines touched by those fixes.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart
2019-11-18 02:27:48 +02:00
parent d312d0ba10
commit 918bfb3c3d
5 changed files with 14 additions and 12 deletions
+2 -2
View File
@@ -199,7 +199,7 @@ void MediaDevice::unlock()
*/
int MediaDevice::populate()
{
struct media_v2_topology topology = { };
struct media_v2_topology topology = {};
struct media_v2_entity *ents = nullptr;
struct media_v2_interface *interfaces = nullptr;
struct media_v2_link *links = nullptr;
@@ -767,7 +767,7 @@ void MediaDevice::fixupEntityFlags(struct media_v2_entity *entity)
*/
int MediaDevice::setupLink(const MediaLink *link, unsigned int flags)
{
struct media_link_desc linkDesc = { };
struct media_link_desc linkDesc = {};
MediaPad *source = link->source();
MediaPad *sink = link->sink();