Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3f2b9ed authored by Arun KS's avatar Arun KS Committed by manohar
Browse files

drivers: media: mpq demux: Fix formatting error



This patch fix the position of __func__,version >> 8 to match
their data types.

Change-Id: Ie201aa56f4ffc0263932ab4528cb668ced56ac66
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
parent b62aaff3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
/* Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
/* Copyright (c) 2013-2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -339,8 +339,8 @@ int sdmx_open_session(int *session_handle)
	/* Get and print the app version */
	version_ret = sdmx_get_version(*session_handle, &version);
	if (version_ret == SDMX_SUCCESS)
		pr_info("%s: TZ SDMX version is %x.%x\n", version >> 8,
			__func__, version & 0xFF);
		pr_info("%s: TZ SDMX version is %x.%x\n", __func__,
			version >> 8, version & 0xFF);
	else
		pr_err("%s: Error reading TZ SDMX version\n", __func__);