Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 154717 | Differences between
and this patch

Collapse All | Expand All

(-)acpi4asus-0.30/driver/Makefile~ (-1 / +1 lines)
Lines 28-34 Link Here
28
KMODNAME=asus_acpi
28
KMODNAME=asus_acpi
29
KMODSRC=asus_core
29
KMODSRC=asus_core
30
INCLUDE=`./get_include.sh $(KERNELSRC)/drivers/acpi $(KERNELSRC)/include/acpi`
30
INCLUDE=`./get_include.sh $(KERNELSRC)/drivers/acpi $(KERNELSRC)/include/acpi`
31
LINUX_VERSION=$(shell grep UTS_RELEASE $(KERNELSRC)/include/linux/version.h | cut -b24)
31
LINUX_VERSION=$(shell cat $(KERNELSRC)/include/linux/{utsrelease,version}.h 2>/dev/null | grep UTS_RELEASE | cut -b24)
32
32
33
include $(KERNELSRC)/.config
33
include $(KERNELSRC)/.config
34
OBJS = $(KMODSRC).o
34
OBJS = $(KMODSRC).o
(-)acpi4asus-0.30/driver/asus_core.c (-1 / +2 lines)
Lines 30-35 Link Here
30
 *
30
 *
31
 */
31
 */
32
32
33
#include <linux/config.h>
33
#include <linux/kernel.h>
34
#include <linux/kernel.h>
34
#include <linux/module.h>
35
#include <linux/module.h>
35
#include <linux/init.h>
36
#include <linux/init.h>
Lines 1138-1144 Link Here
1138
	 * HID), this bit will be moved. A global variable asus_info contains
1139
	 * HID), this bit will be moved. A global variable asus_info contains
1139
	 * the DSDT header.
1140
	 * the DSDT header.
1140
	 */
1141
	 */
1141
	status = acpi_get_table(ACPI_TABLE_DSDT, 1, &dsdt);
1142
	status = acpi_get_table(ACPI_TABLE_ID_DSDT, 1, &dsdt);
1142
	if (ACPI_FAILURE(status))
1143
	if (ACPI_FAILURE(status))
1143
		printk(KERN_WARNING "  Couldn't get the DSDT table header\n");
1144
		printk(KERN_WARNING "  Couldn't get the DSDT table header\n");
1144
	else
1145
	else

Return to bug 154717