> diff --git a/arch/ppc/syslib/ppc_sys.c b/arch/ppc/syslib/ppc_sys.c
> index e3856e7..9182a36 100644
> --- a/arch/ppc/syslib/ppc_sys.c
> +++ b/arch/ppc/syslib/ppc_sys.c
> @@ -238,7 +238,7 @@ void ppc_sys_device_setfunc(enum ppc_sys
>               else
>                       *s = 0;
>       } else if (func != PPC_SYS_FUNC_DUMMY) {
> -             /* do assignment if it is not just "enable"  request */
> +             /* do assignment if it is not just "clear"  request */
>               sprintf(tmp, "%s:%s", name, ppc_sys_func_names[func]);
>               strlcpy(name, tmp, BUS_ID_SIZE);
>       }
> @@ -294,7 +294,7 @@ static int __init ppc_sys_init(void)
> 
>       for (i = 0; i < cur_ppc_sys_spec->num_devices; i++) {
>               dev_id = cur_ppc_sys_spec->device_list[i];
> -             if ((dev_id != -1) || 
> +             if ((dev_id != -1) &&
>               (cur_ppc_sys_spec->config[dev_id] & PPC_SYS_CONFIG_ENABED)) {
>                       if (ppc_sys_device_fixup != NULL)
>                               ppc_sys_device_fixup(&ppc_sys_platform_devices
> diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> index 8827daf..ce551b5 100644
> --- a/drivers/base/platform.c
> +++ b/drivers/base/platform.c
> @@ -266,7 +266,7 @@ int platform_device_add(struct platform_
>               }
>       }
> 
> -     pr_debug("Registering platform device '%s'. Parent at %s\n",
> +     pr_info("Registering platform device '%s'. Parent at %s\n",
>                pdev->dev.bus_id, pdev->dev.parent->bus_id);
> 
>       ret = device_register(&pdev->dev);

Suppose that all this hunks belong to a different patch?

Reply via email to