Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/sh/boards/unknown/setup.c |
| 3 | * |
| 4 | * Copyright (C) 2002 Paul Mundt |
| 5 | * |
| 6 | * May be copied or modified under the terms of the GNU General Public |
| 7 | * License. See linux/COPYING for more information. |
| 8 | * |
| 9 | * Setup code for an unknown machine (internal peripherials only) |
Paul Mundt | 50373c1 | 2006-02-01 03:06:03 -0800 | [diff] [blame] | 10 | * |
| 11 | * This is the simplest of all boards, and serves only as a quick and dirty |
| 12 | * method to start debugging a new board during bring-up until proper board |
| 13 | * setup code is written. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/config.h> |
| 16 | #include <linux/init.h> |
Paul Mundt | 50373c1 | 2006-02-01 03:06:03 -0800 | [diff] [blame] | 17 | #include <asm/machvec.h> |
| 18 | #include <asm/irq.h> |
| 19 | |
| 20 | struct sh_machine_vector mv_unknown __initmv = { |
| 21 | .mv_nr_irqs = NR_IRQS, |
| 22 | }; |
| 23 | ALIAS_MV(unknown) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | const char *get_system_type(void) |
| 26 | { |
| 27 | return "Unknown"; |
| 28 | } |
| 29 | |
| 30 | void __init platform_setup(void) |
| 31 | { |
| 32 | } |
| 33 | |