Messages in this thread Patch in this message |  | | | Date | Sun, 20 Mar 2011 16:15:27 +0530 | | From | Jeffrin Jose <> | | Subject | format fixes |
| |
hello ,
I have created a patch with fixes and format error by replacing spaces with tabs.
I have attached the patch along with this mail.
/Thanks
-- software engineer. department of computer science rajagiri school of engineering and technology. From e60771bb9c855231773f741c48d76d26fcda893f Mon Sep 17 00:00:00 2001 From: Jeffrin Jose <ahiliation@yahoo.co.in> Date: Sun, 20 Mar 2011 16:03:37 +0530 Subject: [PATCH] Fixed format issue by replacing spaces with tabs.
This is a patch to the samsung-laptop.c file in staging section under drivers that fixes up format issue by replacing spaces with tabs Author : Jeffrin Jose Signed-off-by: Jeffrin Jose --- drivers/staging/samsung-laptop/samsung-laptop.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/samsung-laptop/samsung-laptop.c b/drivers/staging/samsung-laptop/samsung-laptop.c index 6607a89..ca27aec 100644 --- a/drivers/staging/samsung-laptop/samsung-laptop.c +++ b/drivers/staging/samsung-laptop/samsung-laptop.c @@ -261,7 +261,7 @@ static int sabi_get_command(u8 command, struct sabi_retval *sretval) iface_data = readb(sabi_iface + SABI_IFACE_DATA); if (complete != 0xaa || iface_data == 0xff) { pr_warn("SABI get command 0x%02x failed with completion flag 0x%02x and data 0x%02x\n", - command, complete, iface_data); + command, complete, iface_data); retval = -EINVAL; goto exit; } -- 1.7.1
|  |