mtd/drivers/mtd mtdchar.c,1.65,1.66
David Woodhouse
dwmw2 at infradead.org
Wed Jan 5 13:05:44 EST 2005
- Previous message: mtd/drivers/mtd/nand diskonchip.c,1.44,1.45 s3c2410.c,1.6,1.7
- Next message: mtd/drivers/mtd/chips jedec.c, 1.21, 1.22 map_ram.c, 1.21,
1.22 map_rom.c, 1.22, 1.23
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/mtd/drivers/mtd
In directory phoenix.infradead.org:/tmp/cvs-serv1701/drivers/mtd
Modified Files:
mtdchar.c
Log Message:
patch] mtd: remove void * casts
Signed-off-by: Domen Puncer <domen at coderock.org>
Index: mtdchar.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/mtdchar.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- mtdchar.c 23 Sep 2004 23:45:47 -0000 1.65
+++ mtdchar.c 5 Jan 2005 18:05:11 -0000 1.66
@@ -61,7 +61,7 @@
static loff_t mtd_lseek (struct file *file, loff_t offset, int orig)
{
- struct mtd_info *mtd=(struct mtd_info *)file->private_data;
+ struct mtd_info *mtd = file->private_data;
switch (orig) {
case 0:
@@ -134,7 +134,7 @@
DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
- mtd = (struct mtd_info *)file->private_data;
+ mtd = file->private_data;
if (mtd->sync)
mtd->sync(mtd);
@@ -151,7 +151,7 @@
static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
{
- struct mtd_info *mtd = (struct mtd_info *)file->private_data;
+ struct mtd_info *mtd = file->private_data;
size_t retlen=0;
size_t total_retlen=0;
int ret=0;
@@ -210,7 +210,7 @@
static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
{
- struct mtd_info *mtd = (struct mtd_info *)file->private_data;
+ struct mtd_info *mtd = file->private_data;
char *kbuf;
size_t retlen;
size_t total_retlen=0;
@@ -276,7 +276,7 @@
static int mtd_ioctl(struct inode *inode, struct file *file,
u_int cmd, u_long arg)
{
- struct mtd_info *mtd = (struct mtd_info *)file->private_data;
+ struct mtd_info *mtd = file->private_data;
void __user *argp = (void __user *)arg;
int ret = 0;
u_long size;
- Previous message: mtd/drivers/mtd/nand diskonchip.c,1.44,1.45 s3c2410.c,1.6,1.7
- Next message: mtd/drivers/mtd/chips jedec.c, 1.21, 1.22 map_ram.c, 1.21,
1.22 map_rom.c, 1.22, 1.23
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the linux-mtd-cvs
mailing list