Use the canonical name of the vendors/devices and the
same format for all CHIP_NAME() entries in LinuxBIOS (Closes #20). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@linuxbios.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2490 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -75,7 +75,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8661f_ops = {
|
||||
CHIP_NAME("ITE it8661f")
|
||||
CHIP_NAME("ITE IT8661F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -79,7 +79,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8671f_ops = {
|
||||
CHIP_NAME("ITE it8671f")
|
||||
CHIP_NAME("ITE IT8671F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -81,7 +81,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8673f_ops = {
|
||||
CHIP_NAME("ITE it8673f")
|
||||
CHIP_NAME("ITE IT8673F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -82,7 +82,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8705f_ops = {
|
||||
CHIP_NAME("ITE it8705f")
|
||||
CHIP_NAME("ITE IT8705F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -87,7 +87,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8712f_ops = {
|
||||
CHIP_NAME("ITE it8712f")
|
||||
CHIP_NAME("ITE IT8712F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -87,7 +87,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8716f_ops = {
|
||||
CHIP_NAME("ITE it8716f")
|
||||
CHIP_NAME("ITE IT8716F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -83,7 +83,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_ite_it8718f_ops = {
|
||||
CHIP_NAME("ITE it8718f")
|
||||
CHIP_NAME("ITE IT8718F Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -68,6 +68,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc8374_ops = {
|
||||
CHIP_NAME("NSC 8374")
|
||||
CHIP_NAME("NSC PC8374 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -75,6 +75,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87351_ops = {
|
||||
CHIP_NAME("NSC 87351")
|
||||
CHIP_NAME("NSC PC87351 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -71,6 +71,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87360_ops = {
|
||||
CHIP_NAME("NSC 87360")
|
||||
CHIP_NAME("NSC PC87360 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -71,6 +71,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87366_ops = {
|
||||
CHIP_NAME("NSC 87366")
|
||||
CHIP_NAME("NSC PC87366 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -72,6 +72,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87417_ops = {
|
||||
CHIP_NAME("NSC pc87417")
|
||||
CHIP_NAME("NSC PC87417 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -72,6 +72,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc87427_ops = {
|
||||
CHIP_NAME("NSC 87427")
|
||||
CHIP_NAME("NSC PC87427 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -83,6 +83,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc97307_ops = {
|
||||
CHIP_NAME("NSC 97307")
|
||||
CHIP_NAME("NSC PC97307 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -85,6 +85,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_nsc_pc97317_ops = {
|
||||
CHIP_NAME("NSC 97317")
|
||||
CHIP_NAME("NSC PC97317 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -47,7 +47,7 @@ static void dump_pnp_device(device_t dev);
|
||||
|
||||
|
||||
struct chip_operations superio_smsc_lpc47b272_ops = {
|
||||
CHIP_NAME("smsc lpc47b272")
|
||||
CHIP_NAME("SMSC LPC47B272 Super I/O")
|
||||
.enable_dev = enable_dev
|
||||
};
|
||||
|
||||
|
@@ -211,7 +211,7 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_smsc_lpc47b397_ops = {
|
||||
CHIP_NAME("smsc lpc47b397")
|
||||
CHIP_NAME("SMSC LPC47B397 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -48,7 +48,7 @@ static void dump_pnp_device(device_t dev);
|
||||
|
||||
|
||||
struct chip_operations superio_smsc_lpc47m10x_ops = {
|
||||
CHIP_NAME("smsc lpc47m10x")
|
||||
CHIP_NAME("SMSC LPC47M10x Super I/O")
|
||||
.enable_dev = enable_dev
|
||||
};
|
||||
|
||||
|
@@ -53,7 +53,7 @@ static void pnp_exit_conf_state(device_t dev);
|
||||
|
||||
|
||||
struct chip_operations superio_smsc_lpc47n217_ops = {
|
||||
CHIP_NAME("smsc lpc47n217")
|
||||
CHIP_NAME("SMSC LPC47N217 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
||||
|
@@ -217,6 +217,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_via_vt1211_ops = {
|
||||
CHIP_NAME("VIA vt1211")
|
||||
CHIP_NAME("VIA VT1211 Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -193,6 +193,6 @@ static void enable_dev(struct device *dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_winbond_w83627hf_ops = {
|
||||
CHIP_NAME("Winbond w83627hf")
|
||||
CHIP_NAME("Winbond W83627HF Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -105,6 +105,6 @@ static void enable_dev(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_winbond_w83627thf_ops = {
|
||||
CHIP_NAME("Winbond w83627thf")
|
||||
CHIP_NAME("Winbond W83627THF Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
@@ -109,6 +109,6 @@ static void enable_dev(device_t dev)
|
||||
}
|
||||
|
||||
struct chip_operations superio_winbond_w83977tf_ops = {
|
||||
CHIP_NAME("Winbond w83977tf")
|
||||
CHIP_NAME("Winbond W83977TF Super I/O")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
Reference in New Issue
Block a user