umc.c 437 B

1234567891011121314151617181920212223242526
  1. #include <linux/kernel.h>
  2. #include <asm/processor.h>
  3. #include "cpu.h"
  4. /*
  5. * UMC chips appear to be only either 386 or 486,
  6. * so no special init takes place.
  7. */
  8. static const struct cpu_dev umc_cpu_dev = {
  9. .c_vendor = "UMC",
  10. .c_ident = { "UMC UMC UMC" },
  11. .legacy_models = {
  12. { .family = 4, .model_names =
  13. {
  14. [1] = "U5D",
  15. [2] = "U5S",
  16. }
  17. },
  18. },
  19. .c_x86_vendor = X86_VENDOR_UMC,
  20. };
  21. cpu_dev_register(umc_cpu_dev);