summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-02-25 12:41:16 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:54:24 -0700
commitbc154a3862260ef8d83ff750daa1b6cfbfa129cc (patch)
tree8990991af93ed31a56f1fb5cee0d4f8180dec123 /drivers/staging
parent441926795d77a3da1be99dca1720130cf46c728b (diff)
downloadop-kernel-dev-bc154a3862260ef8d83ff750daa1b6cfbfa129cc.zip
op-kernel-dev-bc154a3862260ef8d83ff750daa1b6cfbfa129cc.tar.gz
Staging: heci: fix checkpatch warnings
This resolves the outstanding scripts/checkpatch.pl warnings 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')
-rw-r--r--drivers/staging/heci/heci_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/heci/heci_main.c b/drivers/staging/heci/heci_main.c
index 6782fe9..3db9a03 100644
--- a/drivers/staging/heci/heci_main.c
+++ b/drivers/staging/heci/heci_main.c
@@ -175,7 +175,7 @@ static struct pci_driver heci_driver = {
/*
* file operations structure will be use heci char device.
*/
-static struct file_operations heci_fops = {
+static const struct file_operations heci_fops = {
.owner = THIS_MODULE,
.read = heci_read,
.ioctl = heci_ioctl,
@@ -195,7 +195,7 @@ static struct file_operations heci_fops = {
* returns 0 on success, <0 on failure.
*/
static int heci_registration_cdev(struct cdev *dev, int hminor,
- struct file_operations *fops)
+ const struct file_operations *fops)
{
int ret, devno = MKDEV(heci_major, hminor);
@@ -625,7 +625,7 @@ static int heci_clear_list(struct iamt_heci_device *dev,
struct file *file, struct list_head *heci_cb_list)
{
struct heci_cb_private *priv_cb_pos = NULL;
- struct heci_cb_private*priv_cb_next = NULL;
+ struct heci_cb_private *priv_cb_next = NULL;
struct file *file_temp;
int rets = 0;
@@ -846,7 +846,7 @@ static int heci_release(struct inode *inode, struct file *file)
}
if (heci_clear_lists(dev, file))
- dev->iamthif_state = HECI_IAMTHIF_IDLE;
+ dev->iamthif_state = HECI_IAMTHIF_IDLE;
spin_unlock_bh(&dev->device_lock);
}
OpenPOWER on IntegriCloud