aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2015-03-05 10:54:34 +0000
committerSandrine Bailleux <sandrine.bailleux@arm.com>2015-03-05 12:02:07 +0000
commitba592e280229c8d86e2ad688d0eba11b70172f5f (patch)
treec088f032c61d12d7cd0ee35c1fad18efddba8fb7 /common
parent95d5353c332d2c9e425a1efc6c28555456d843e9 (diff)
downloadtrusted-firmware-a-ba592e280229c8d86e2ad688d0eba11b70172f5f.tar.gz
Fix violations to the coding style
All coding style violations have been fixed in a previous patch and since then, each individual patch has been checked in this regard. However, the latest version of the checkpatch.pl script from the Linux kernel is more advanced and it is able to flag new errors in the Trusted Firmware codebase. This patch fixes them. Change-Id: I1f332f2440984be85d36b231bb83260368987077
Diffstat (limited to 'common')
-rw-r--r--common/tf_printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/tf_printf.c b/common/tf_printf.c
index 02461c0bc2..c68b990444 100644
--- a/common/tf_printf.c
+++ b/common/tf_printf.c
@@ -38,7 +38,7 @@ static void unsigned_num_print(unsigned long int unum, unsigned int radix)
{
/* Just need enough space to store 64 bit decimal integer */
unsigned char num_buf[20];
- int i = 0 , rem;
+ int i = 0, rem;
do {
rem = unum % radix;