Merge tag 'driver-core-3.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core updates from Greg Kroah-Hartman: "Here's the driver core, and other driver subsystems, pull request for the 3.5-rc1 merge window. Outside of a few minor driver core changes, we ended up with the following different subsystem and core changes as well, due to interdependancies on the driver core: - hyperv driver updates - drivers/memory being created and some drivers moved into it - extcon driver subsystem created out of the old Android staging switch driver code - dynamic debug updates - printk rework, and /dev/kmsg changes All of this has been tested in the linux-next releases for a few weeks with no reported problems. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>" Fix up conflicts in drivers/extcon/extcon-max8997.c where git noticed that a patch to the deleted drivers/misc/max8997-muic.c driver needs to be applied to this one. * tag 'driver-core-3.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (90 commits) uio_pdrv_genirq: get irq through platform resource if not set otherwise memory: tegra{20,30}-mc: Remove empty *_remove() printk() - isolate KERN_CONT users from ordinary complete lines sysfs: get rid of some lockdep false positives Drivers: hv: util: Properly handle version negotiations. Drivers: hv: Get rid of an unnecessary check in vmbus_prep_negotiate_resp() memory: tegra{20,30}-mc: Use dev_err_ratelimited() driver core: Add dev_*_ratelimited() family Driver Core: don't oops with unregistered driver in driver_find_device() printk() - restore prefix/timestamp printing for multi-newline strings printk: add stub for prepend_timestamp() ARM: tegra30: Make MC optional in Kconfig ARM: tegra20: Make MC optional in Kconfig ARM: tegra30: MC: Remove unnecessary BUG*() ARM: tegra20: MC: Remove unnecessary BUG*() printk: correctly align __log_buf ARM: tegra30: Add Tegra Memory Controller(MC) driver ARM: tegra20: Add Tegra Memory Controller(MC) driver printk() - restore timestamp printing at console output printk() - do not merge continuation lines of different threads ...
This commit is contained in:
33
init/main.c
33
init/main.c
@@ -226,7 +226,7 @@ static int __init loglevel(char *str)
|
||||
early_param("loglevel", loglevel);
|
||||
|
||||
/* Change NUL term back to "=", to make "param" the whole string. */
|
||||
static int __init repair_env_string(char *param, char *val)
|
||||
static int __init repair_env_string(char *param, char *val, const char *unused)
|
||||
{
|
||||
if (val) {
|
||||
/* param=val or param="val"? */
|
||||
@@ -246,9 +246,9 @@ static int __init repair_env_string(char *param, char *val)
|
||||
* Unknown boot options get handed to init, unless they look like
|
||||
* unused parameters (modprobe will find them in /proc/cmdline).
|
||||
*/
|
||||
static int __init unknown_bootoption(char *param, char *val)
|
||||
static int __init unknown_bootoption(char *param, char *val, const char *unused)
|
||||
{
|
||||
repair_env_string(param, val);
|
||||
repair_env_string(param, val, unused);
|
||||
|
||||
/* Handle obsolete-style parameters */
|
||||
if (obsolete_checksetup(param))
|
||||
@@ -385,7 +385,7 @@ static noinline void __init_refok rest_init(void)
|
||||
}
|
||||
|
||||
/* Check for early params. */
|
||||
static int __init do_early_param(char *param, char *val)
|
||||
static int __init do_early_param(char *param, char *val, const char *unused)
|
||||
{
|
||||
const struct obs_kernel_param *p;
|
||||
|
||||
@@ -725,14 +725,14 @@ static initcall_t *initcall_levels[] __initdata = {
|
||||
};
|
||||
|
||||
static char *initcall_level_names[] __initdata = {
|
||||
"early parameters",
|
||||
"core parameters",
|
||||
"postcore parameters",
|
||||
"arch parameters",
|
||||
"subsys parameters",
|
||||
"fs parameters",
|
||||
"device parameters",
|
||||
"late parameters",
|
||||
"early",
|
||||
"core",
|
||||
"postcore",
|
||||
"arch",
|
||||
"subsys",
|
||||
"fs",
|
||||
"device",
|
||||
"late",
|
||||
};
|
||||
|
||||
static void __init do_initcall_level(int level)
|
||||
@@ -745,7 +745,7 @@ static void __init do_initcall_level(int level)
|
||||
static_command_line, __start___param,
|
||||
__stop___param - __start___param,
|
||||
level, level,
|
||||
repair_env_string);
|
||||
&repair_env_string);
|
||||
|
||||
for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++)
|
||||
do_one_initcall(*fn);
|
||||
@@ -755,8 +755,13 @@ static void __init do_initcalls(void)
|
||||
{
|
||||
int level;
|
||||
|
||||
for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++)
|
||||
for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++) {
|
||||
pr_info("initlevel:%d=%s, %d registered initcalls\n",
|
||||
level, initcall_level_names[level],
|
||||
(int) (initcall_levels[level+1]
|
||||
- initcall_levels[level]));
|
||||
do_initcall_level(level);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user