Commit aa1d19f1 authored by Takashi Iwai's avatar Takashi Iwai Committed by Greg Kroah-Hartman
Browse files

fonts: Fix coding style



Fix indentation, spaces, and move EXPORT_SYMBOL line to the
appropriate place as a preliminary work.  No actual code change.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 055ecea0
Loading
Loading
Loading
Loading
+40 −43
Original line number Diff line number Diff line
@@ -90,7 +90,6 @@ static const struct font_desc *fonts[] = {
 *	specified font.
 *
 */

const struct font_desc *find_font(const char *name)
{
	unsigned int i;
@@ -100,6 +99,7 @@ const struct font_desc *find_font(const char *name)
			return fonts[i];
	return NULL;
}
EXPORT_SYMBOL(find_font);


/**
@@ -116,7 +116,6 @@ const struct font_desc *find_font(const char *name)
 *	chosen font.
 *
 */

const struct font_desc *get_default_font(int xres, int yres, u32 font_w,
					 u32 font_h)
{
@@ -152,8 +151,6 @@ const struct font_desc *get_default_font(int xres, int yres, u32 font_w,
	}
	return g;
}

EXPORT_SYMBOL(find_font);
EXPORT_SYMBOL(get_default_font);

MODULE_AUTHOR("James Simmons <jsimmons@users.sf.net>");