Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3c602840528cf1aa835e6e32d76a0a45936b8e4c Commit: 3c602840528cf1aa835e6e32d76a0a45936b8e4c Parent: 653a00c9662304ef72a3eb4e681c91720960e0b4 Author: Len Brown <[EMAIL PROTECTED]> AuthorDate: Sat Feb 2 04:05:54 2008 -0500 Committer: Len Brown <[EMAIL PROTECTED]> CommitDate: Sat Feb 2 04:05:54 2008 -0500
ACPI: fan: build fix for CONFIG_ACPI_PROCFS=n drivers/acpi/fan.c:340: error: ‘acpi_fan_dir’ undeclared (first use in this function) Signed-off-by: Len Brown <[EMAIL PROTECTED]> --- drivers/acpi/fan.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c index f6e8165..48cb705 100644 --- a/drivers/acpi/fan.c +++ b/drivers/acpi/fan.c @@ -337,10 +337,12 @@ static int __init acpi_fan_init(void) int result = 0; +#ifdef CONFIG_ACPI_PROCFS acpi_fan_dir = proc_mkdir(ACPI_FAN_CLASS, acpi_root_dir); if (!acpi_fan_dir) return -ENODEV; acpi_fan_dir->owner = THIS_MODULE; +#endif result = acpi_bus_register_driver(&acpi_fan_driver); if (result < 0) { - To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html