View | Details | Raw Unified | Return to bug 234403 | Differences between
and this patch

Collapse All | Expand All

(-)b/share/man/man4/acpi_ibm.4 (-4 / +3 lines)
Lines 25-36 Link Here
25
.\"
25
.\"
26
.\" $FreeBSD$
26
.\" $FreeBSD$
27
.\"
27
.\"
28
.Dd June 19, 2015
28
.Dd December 24, 2018
29
.Dt ACPI_IBM 4
29
.Dt ACPI_IBM 4
30
.Os
30
.Os
31
.Sh NAME
31
.Sh NAME
32
.Nm acpi_ibm
32
.Nm acpi_ibm
33
.Nd "ACPI extras driver for IBM laptops"
33
.Nd "ThinkPad ACPI Extras Driver"
34
.Sh SYNOPSIS
34
.Sh SYNOPSIS
35
To compile this driver into the kernel,
35
To compile this driver into the kernel,
36
place the following line in your
36
place the following line in your
Lines 46-54 module at boot time, place the following line in Link Here
46
acpi_ibm_load="YES"
46
acpi_ibm_load="YES"
47
.Ed
47
.Ed
48
.Sh DESCRIPTION
48
.Sh DESCRIPTION
49
The
50
.Nm
49
.Nm
51
driver provides support for hotkeys and other components of IBM laptops.
50
provides support for hotkeys and other components of ThinkPad laptops.
52
The main purpose of this driver is to provide an interface,
51
The main purpose of this driver is to provide an interface,
53
accessible via
52
accessible via
54
.Xr sysctl 8
53
.Xr sysctl 8
(-)b/sys/dev/acpi_support/acpi_ibm.c (-4 / +3 lines)
Lines 29-35 Link Here
29
__FBSDID("$FreeBSD$");
29
__FBSDID("$FreeBSD$");
30
30
31
/*
31
/*
32
 * Driver for extra ACPI-controlled gadgets found on IBM ThinkPad laptops.
32
 * Driver for extra ACPI-controlled gadgets found on ThinkPad laptops.
33
 * Inspired by the ibm-acpi and tpb projects which implement these features
33
 * Inspired by the ibm-acpi and tpb projects which implement these features
34
 * on Linux.
34
 * on Linux.
35
 *
35
 *
Lines 302-308 struct acpi_ibm_models { Link Here
302
	}
302
	}
303
};
303
};
304
304
305
ACPI_SERIAL_DECL(ibm, "ACPI IBM extras");
305
ACPI_SERIAL_DECL(ibm, "ThinkPad ACPI Extras");
306
306
307
static int	acpi_ibm_probe(device_t dev);
307
static int	acpi_ibm_probe(device_t dev);
308
static int	acpi_ibm_attach(device_t dev);
308
static int	acpi_ibm_attach(device_t dev);
Lines 416-422 acpi_ibm_probe(device_t dev) Link Here
416
	    device_get_unit(dev) != 0)
416
	    device_get_unit(dev) != 0)
417
		return (ENXIO);
417
		return (ENXIO);
418
418
419
	device_set_desc(dev, "IBM ThinkPad ACPI Extras");
419
	device_set_desc(dev, "ThinkPad ACPI Extras");
420
420
421
	return (0);
421
	return (0);
422
}
422
}
423
- 

Return to bug 234403