X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=arch%2Fsh%2Fboards%2Funknown%2Fsetup.c;h=1c941370a2e32a8bc0ea9b55a200dd6907be9a42;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=7d772a6f88657ab7974b253b9a932fbaeb46eb48;hpb=5273a3df6485dc2ad6aa7ddd441b9a21970f003b;p=linux-2.6.git diff --git a/arch/sh/boards/unknown/setup.c b/arch/sh/boards/unknown/setup.c index 7d772a6f8..1c941370a 100644 --- a/arch/sh/boards/unknown/setup.c +++ b/arch/sh/boards/unknown/setup.c @@ -7,17 +7,15 @@ * License. See linux/COPYING for more information. * * Setup code for an unknown machine (internal peripherials only) + * + * This is the simplest of all boards, and serves only as a quick and dirty + * method to start debugging a new board during bring-up until proper board + * setup code is written. */ - -#include #include +#include -const char *get_system_type(void) -{ - return "Unknown"; -} - -void __init platform_setup(void) -{ -} - +struct sh_machine_vector mv_unknown __initmv = { + .mv_name = "Unknown", +}; +ALIAS_MV(unknown)