// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2002-3 Patrick Mochel * Copyright (c) 2002-3 Open Source Development Labs */ #include <linux/device.h> #include <linux/init.h> #include <linux/memory.h> #include <linux/of.h> #include <linux/backing-dev.h> #include "base.h" /** * driver_init - initialize driver model. * * Call the driver model init functions to initialize their * subsystems. Called early from init/main.c. */ void __init driver_init(void) { … }