Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33cfe65a authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

drivers/sbus: Remove unnecessary casts of private_data

parent f5fa3cb9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -554,7 +554,7 @@ static int opiocgetnext(unsigned int cmd, void __user *argp)
static int openprom_bsd_ioctl(struct file * file,
			      unsigned int cmd, unsigned long arg)
{
	DATA *data = (DATA *) file->private_data;
	DATA *data = file->private_data;
	void __user *argp = (void __user *)arg;
	int err;

@@ -601,7 +601,7 @@ static int openprom_bsd_ioctl(struct file * file,
static long openprom_ioctl(struct file * file,
			   unsigned int cmd, unsigned long arg)
{
	DATA *data = (DATA *) file->private_data;
	DATA *data = file->private_data;

	switch (cmd) {
	case OPROMGETOPT: