init.c 714 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2002-3 Patrick Mochel
  3. * Copyright (c) 2002-3 Open Source Development Labs
  4. *
  5. * This file is released under the GPLv2
  6. */
  7. #include <linux/device.h>
  8. #include <linux/init.h>
  9. #include <linux/memory.h>
  10. #include "base.h"
  11. /**
  12. * driver_init - initialize driver model.
  13. *
  14. * Call the driver model init functions to initialize their
  15. * subsystems. Called early from init/main.c.
  16. */
  17. void __init driver_init(void)
  18. {
  19. /* These are the core pieces */
  20. devtmpfs_init();
  21. devices_init();
  22. buses_init();
  23. classes_init();
  24. firmware_init();
  25. hypervisor_init();
  26. /* These are also core pieces, but must come after the
  27. * core core pieces.
  28. */
  29. platform_bus_init();
  30. cpu_dev_init();
  31. memory_dev_init();
  32. }