net/mlx5e: Make function mlx5e_change_rep_mtu() static
[linux-2.6/btrfs-unstable.git] / drivers / base / init.c
blobdd85b05a6a163da4d4d6c37e460f6241619afcb7
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2002-3 Patrick Mochel
4 * Copyright (c) 2002-3 Open Source Development Labs
5 */
7 #include <linux/device.h>
8 #include <linux/init.h>
9 #include <linux/memory.h>
10 #include <linux/of.h>
12 #include "base.h"
14 /**
15 * driver_init - initialize driver model.
17 * Call the driver model init functions to initialize their
18 * subsystems. Called early from init/main.c.
20 void __init driver_init(void)
22 /* These are the core pieces */
23 devtmpfs_init();
24 devices_init();
25 buses_init();
26 classes_init();
27 firmware_init();
28 hypervisor_init();
30 /* These are also core pieces, but must come after the
31 * core core pieces.
33 platform_bus_init();
34 cpu_dev_init();
35 memory_dev_init();
36 container_dev_init();
37 of_core_init();