aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/fw/arc
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-10-11 18:46:08 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-10-11 18:46:08 -0400
commit05dc8c02bf40090e9ed23932b1980ead48eb8870 (patch)
treeebf34c90f31b52e1a0c1e6185a50a1470c1b3677 /arch/mips/fw/arc
parent112b20a1e849aec8077bbf11fc3de338b62f363a (diff)
[MIPS] ARC: Get rid of mips_machgroup
This has not been any serious user of this ill conceived thing since the original invention in like '95. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/fw/arc')
-rw-r--r--arch/mips/fw/arc/identify.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/mips/fw/arc/identify.c b/arch/mips/fw/arc/identify.c
index 5d28dbe06f40..28dfd2e2989a 100644
--- a/arch/mips/fw/arc/identify.c
+++ b/arch/mips/fw/arc/identify.c
@@ -22,7 +22,6 @@
22struct smatch { 22struct smatch {
23 char *arcname; 23 char *arcname;
24 char *liname; 24 char *liname;
25 int group;
26 int type; 25 int type;
27 int flags; 26 int flags;
28}; 27};
@@ -31,49 +30,41 @@ static struct smatch mach_table[] = {
31 { 30 {
32 .arcname = "SGI-IP22", 31 .arcname = "SGI-IP22",
33 .liname = "SGI Indy", 32 .liname = "SGI Indy",
34 .group = MACH_GROUP_SGI,
35 .type = MACH_SGI_IP22, 33 .type = MACH_SGI_IP22,
36 .flags = PROM_FLAG_ARCS, 34 .flags = PROM_FLAG_ARCS,
37 }, { 35 }, {
38 .arcname = "SGI-IP27", 36 .arcname = "SGI-IP27",
39 .liname = "SGI Origin", 37 .liname = "SGI Origin",
40 .group = MACH_GROUP_SGI,
41 .type = MACH_SGI_IP27, 38 .type = MACH_SGI_IP27,
42 .flags = PROM_FLAG_ARCS, 39 .flags = PROM_FLAG_ARCS,
43 }, { 40 }, {
44 .arcname = "SGI-IP28", 41 .arcname = "SGI-IP28",
45 .liname = "SGI IP28", 42 .liname = "SGI IP28",
46 .group = MACH_GROUP_SGI,
47 .type = MACH_SGI_IP28, 43 .type = MACH_SGI_IP28,
48 .flags = PROM_FLAG_ARCS, 44 .flags = PROM_FLAG_ARCS,
49 }, { 45 }, {
50 .arcname = "SGI-IP30", 46 .arcname = "SGI-IP30",
51 .liname = "SGI Octane", 47 .liname = "SGI Octane",
52 .group = MACH_GROUP_SGI,
53 .type = MACH_SGI_IP30, 48 .type = MACH_SGI_IP30,
54 .flags = PROM_FLAG_ARCS, 49 .flags = PROM_FLAG_ARCS,
55 }, { 50 }, {
56 .arcname = "SGI-IP32", 51 .arcname = "SGI-IP32",
57 .liname = "SGI O2", 52 .liname = "SGI O2",
58 .group = MACH_GROUP_SGI,
59 .type = MACH_SGI_IP32, 53 .type = MACH_SGI_IP32,
60 .flags = PROM_FLAG_ARCS, 54 .flags = PROM_FLAG_ARCS,
61 }, { 55 }, {
62 .arcname = "Microsoft-Jazz", 56 .arcname = "Microsoft-Jazz",
63 .liname = "Jazz MIPS_Magnum_4000", 57 .liname = "Jazz MIPS_Magnum_4000",
64 .group = MACH_GROUP_JAZZ,
65 .type = MACH_MIPS_MAGNUM_4000, 58 .type = MACH_MIPS_MAGNUM_4000,
66 .flags = 0, 59 .flags = 0,
67 }, { 60 }, {
68 .arcname = "PICA-61", 61 .arcname = "PICA-61",
69 .liname = "Jazz Acer_PICA_61", 62 .liname = "Jazz Acer_PICA_61",
70 .group = MACH_GROUP_JAZZ,
71 .type = MACH_ACER_PICA_61, 63 .type = MACH_ACER_PICA_61,
72 .flags = 0, 64 .flags = 0,
73 }, { 65 }, {
74 .arcname = "RM200PCI", 66 .arcname = "RM200PCI",
75 .liname = "SNI RM200_PCI", 67 .liname = "SNI RM200_PCI",
76 .group = MACH_GROUP_SNI_RM,
77 .type = MACH_SNI_RM200_PCI, 68 .type = MACH_SNI_RM200_PCI,
78 .flags = PROM_FLAG_DONT_FREE_TEMP, 69 .flags = PROM_FLAG_DONT_FREE_TEMP,
79 } 70 }
@@ -125,7 +116,6 @@ void __init prom_identify_arch(void)
125 mach = string_to_mach(iname); 116 mach = string_to_mach(iname);
126 system_type = mach->liname; 117 system_type = mach->liname;
127 118
128 mips_machgroup = mach->group;
129 mips_machtype = mach->type; 119 mips_machtype = mach->type;
130 prom_flags = mach->flags; 120 prom_flags = mach->flags;
131} 121}