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

Commit d471c0fc authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds
Browse files

[PATCH] uml: audio driver formatting



Whitespace and style fixes.

Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b612e475
Loading
Loading
Loading
Loading
+73 −87
Original line number Original line Diff line number Diff line
@@ -202,7 +202,6 @@ static int hostaudio_open(struct inode *inode, struct file *file)
		kfree(state);
		kfree(state);
		return(ret);
		return(ret);
	}
	}

	state->fd = ret;
	state->fd = ret;
	file->private_data = state;
	file->private_data = state;
	return(0);
	return(0);
@@ -215,7 +214,6 @@ static int hostaudio_release(struct inode *inode, struct file *file)
#ifdef DEBUG
#ifdef DEBUG
	printk("hostaudio: release called\n");
	printk("hostaudio: release called\n");
#endif
#endif

	os_close_file(state->fd);
	os_close_file(state->fd);
	kfree(state);
	kfree(state);


@@ -279,7 +277,6 @@ static int hostmixer_release(struct inode *inode, struct file *file)
	return(0);
	return(0);
}
}



/* kernel module operations */
/* kernel module operations */


static const struct file_operations hostaudio_fops = {
static const struct file_operations hostaudio_fops = {
@@ -341,14 +338,3 @@ static void __exit hostaudio_cleanup_module (void)


module_init(hostaudio_init_module);
module_init(hostaudio_init_module);
module_exit(hostaudio_cleanup_module);
module_exit(hostaudio_cleanup_module);

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * Emacs will notice this stuff at the end of the file and automatically
 * adjust the settings for this buffer only.  This must remain at the end
 * of the file.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-file-style: "linux"
 * End:
 */