summaryrefslogtreecommitdiffstats
path: root/drivers/staging/batman-adv/bat_debugfs.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-07-12 13:50:10 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 14:43:51 -0700
commitba952d84e1d45df80e125d4abc64f3b778ae6dd7 (patch)
tree38414036ccd832df3cdf200f97292190c7d45581 /drivers/staging/batman-adv/bat_debugfs.c
parentf69b0d6451679f1466381a46ac7ab671a7b5668c (diff)
downloadop-kernel-dev-ba952d84e1d45df80e125d4abc64f3b778ae6dd7.zip
op-kernel-dev-ba952d84e1d45df80e125d4abc64f3b778ae6dd7.tar.gz
Staging: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/batman-adv/bat_debugfs.c')
-rw-r--r--drivers/staging/batman-adv/bat_debugfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/batman-adv/bat_debugfs.c b/drivers/staging/batman-adv/bat_debugfs.c
index 8e8eef0..507da68 100644
--- a/drivers/staging/batman-adv/bat_debugfs.c
+++ b/drivers/staging/batman-adv/bat_debugfs.c
@@ -104,7 +104,7 @@ static int log_release(struct inode *inode, struct file *file)
static ssize_t log_read(struct file *file, char __user *buf,
size_t count, loff_t *ppos)
{
- struct bat_priv *bat_priv = (struct bat_priv *)file->private_data;
+ struct bat_priv *bat_priv = file->private_data;
struct debug_log *debug_log = bat_priv->debug_log;
int error, i = 0;
char c;
@@ -158,7 +158,7 @@ static ssize_t log_read(struct file *file, char __user *buf,
static unsigned int log_poll(struct file *file, poll_table *wait)
{
- struct bat_priv *bat_priv = (struct bat_priv *)file->private_data;
+ struct bat_priv *bat_priv = file->private_data;
struct debug_log *debug_log = bat_priv->debug_log;
poll_wait(file, &debug_log->queue_wait, wait);
OpenPOWER on IntegriCloud