aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/heci/heci_main.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-02-25 13:06:49 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:54:24 -0700
commitc4739ea63c56928103bc1748c6d9b1df5d815a02 (patch)
tree27ccc9500d710e8579797eb010112160cc3a8e1b /drivers/staging/heci/heci_main.c
parentbc154a3862260ef8d83ff750daa1b6cfbfa129cc (diff)
Staging: heci: fix some sparse warnings
This resolves a lot of the more obvious sparse warnings in the code. There still are some major problems in the ioctl handlers dealing with user and kernel pointers that this patch does not resolve, that needs to be addressed still. Also, the locking seems to be a bit strange in places, which sparse points out, that too need to be resolved. Cc: Anas Nashif <anas.nashif@intel.com> Cc: Marcin Obara <marcin.obara@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/heci/heci_main.c')
-rw-r--r--drivers/staging/heci/heci_main.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/staging/heci/heci_main.c b/drivers/staging/heci/heci_main.c
index 3db9a038864..00e44c78142 100644
--- a/drivers/staging/heci/heci_main.c
+++ b/drivers/staging/heci/heci_main.c
@@ -71,10 +71,10 @@
/*
* heci driver strings
*/
-char heci_driver_name[] = HECI_DRIVER_NAME;
-char heci_driver_string[] = "Intel(R) Management Engine Interface";
-char heci_driver_version[] = HECI_DRIVER_VERSION;
-char heci_copyright[] = "Copyright (c) 2003 - 2008 Intel Corporation.";
+static char heci_driver_name[] = HECI_DRIVER_NAME;
+static char heci_driver_string[] = "Intel(R) Management Engine Interface";
+static char heci_driver_version[] = HECI_DRIVER_VERSION;
+static char heci_copyright[] = "Copyright (c) 2003 - 2008 Intel Corporation.";
#ifdef HECI_DEBUG
@@ -96,7 +96,7 @@ static int heci_major;
/* The device pointer */
static struct pci_dev *heci_device;
-struct class *heci_class;
+static struct class *heci_class;
/* heci_pci_tbl - PCI Device ID Table */
@@ -1331,7 +1331,7 @@ static int heci_ioctl(struct inode *inode, struct file *file,
int if_num = iminor(inode);
struct heci_file_private *file_ext = file->private_data;
/* in user space */
- struct heci_message_data *u_msg = (struct heci_message_data *) data;
+ struct heci_message_data __user *u_msg;
struct heci_message_data k_msg; /* all in kernel on the stack */
struct iamt_heci_device *dev;
@@ -1353,6 +1353,7 @@ static int heci_ioctl(struct inode *inode, struct file *file,
spin_unlock_bh(&dev->device_lock);
/* first copy from user all data needed */
+ u_msg = (struct heci_message_data __user *)data;
if (copy_from_user(&k_msg, u_msg, sizeof(k_msg))) {
DBG("first copy from user all data needed filled\n");
return -EFAULT;