qseecom: Move qseecom_ioctl from inline to normal function

Marking inline for qseecom_ioctl() increases stack heavily
which causes stack overflow at multiple places with different
call stacks, hence remove inline macro from ioctl function
to fix stack corruption issue.

Change-Id: If1704cbfcfb925fb8f9d6f97b99cb12e30bb6ab1
Signed-off-by: AnilKumar Chimata <anilc@codeaurora.org>
diff --git a/drivers/misc/qseecom.c b/drivers/misc/qseecom.c
index 29c84b6..8832604 100644
--- a/drivers/misc/qseecom.c
+++ b/drivers/misc/qseecom.c
@@ -7130,7 +7130,7 @@
 	}
 }
 
-static inline long qseecom_ioctl(struct file *file,
+static long qseecom_ioctl(struct file *file,
 			unsigned int cmd, unsigned long arg)
 {
 	int ret = 0;