Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45223
b: refs/heads/master
c: 8be7ed1
h: refs/heads/master
i:
  45221: 50ea4ac
  45219: 052d320
  45215: 446ad21
v: v3
  • Loading branch information
Linus Torvalds committed Jan 4, 2007
1 parent 640d14a commit 75f6490
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 30c4cf577fb5b68c16e5750d6bdbd7072e42b279
refs/heads/master: 8be7ed14f4f45e0cd19a70120a1526e1121af4b0
6 changes: 3 additions & 3 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -532,13 +532,13 @@ L: netdev@vger.kernel.org
S: Maintained

ASUS ACPI EXTRAS DRIVER
P: Corentin Chary
M: corentincj@iksaif.net
P: Karol Kozimor
M: sziwan@users.sourceforge.net
P: Julien Lerouge
M: julien.lerouge@free.fr
L: acpi4asus-user@lists.sourceforge.net
W: http://sourceforge.net/projects/acpi4asus
W: http://julien.lerouge.free.fr
W: http://xf.iksaif.net/acpi4asus
S: Maintained

ATA OVER ETHERNET DRIVER
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/i386/kernel/acpi/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
/*
* Parse Interrupt Source Override for the ACPI SCI
*/
static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
{
if (trigger == 0) /* compatible SCI trigger is level */
trigger = 3;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ static void acpi_ec_gpe_query(void *ec_cxt)

snprintf(object_name, 8, "_Q%2.2X", value);

printk(KERN_INFO PREFIX "evaluating %s\n", object_name);
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluating %s", object_name));

acpi_evaluate_object(ec->handle, object_name, NULL, NULL);
}
Expand Down
18 changes: 13 additions & 5 deletions trunk/drivers/hid/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ menu "HID Devices"

config HID
tristate "Generic HID support"
depends on INPUT
default y
---help---
Say Y here if you want generic HID support to connect keyboards,
mice, joysticks, graphic tablets, or any other HID based devices
to your computer. You also need to select particular types of
HID devices you want to compile support for, in the particular
driver menu (USB, Bluetooth)
A human interface device (HID) is a type of computer device that
interacts directly with and takes input from humans. The term "HID"
most commonly used to refer to the USB-HID specification, but other
devices (such as, but not strictly limited to, Bluetooth) are
designed using HID specification (this involves certain keyboards,
mice, tablets, etc). This option compiles into kernel the generic
HID layer code (parser, usages, etc.), which can then be used by
transport-specific HID implementation (like USB or Bluetooth).

For docs and specs, see http://www.usb.org/developers/hidpage/

If unsure, say Y

endmenu

6 changes: 2 additions & 4 deletions trunk/drivers/usb/input/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ config USB_HID
---help---
Say Y here if you want full HID support to connect USB keyboards,
mice, joysticks, graphic tablets, or any other HID based devices
to your computer via USB. You also need to select HID Input layer
support (below) if you want to use keyboards, mice, joysticks and
the like ... as well as Uninterruptible Power Supply (UPS) and
monitor control devices.
to your computer via USB, as well as Uninterruptible Power Supply
(UPS) and monitor control devices.

You can't use this driver and the HIDBP (Boot Protocol) keyboard
and mouse drivers at the same time. More information is available:
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/corgi_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int corgibl_probe(struct platform_device *pdev)
machinfo->limit_mask = -1;

corgi_backlight_device = backlight_device_register ("corgi-bl",
NULL, &corgibl_data);
&pdev->dev, NULL, &corgibl_data);
if (IS_ERR (corgi_backlight_device))
return PTR_ERR (corgi_backlight_device);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/hp680_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static struct backlight_properties hp680bl_data = {
static int __init hp680bl_probe(struct platform_device *dev)
{
hp680_backlight_device = backlight_device_register ("hp680-bl",
NULL, &hp680bl_data);
&dev->dev, NULL, &hp680bl_data);
if (IS_ERR (hp680_backlight_device))
return PTR_ERR (hp680_backlight_device);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/locomolcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static int locomolcd_probe(struct locomo_dev *ldev)

local_irq_restore(flags);

locomolcd_bl_device = backlight_device_register("locomo-bl", NULL, &locomobl_data);
locomolcd_bl_device = backlight_device_register("locomo-bl", &ldev->dev, NULL, &locomobl_data);

if (IS_ERR (locomolcd_bl_device))
return PTR_ERR (locomolcd_bl_device);
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/acpi/acconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

/* Maximum object reference count (detects object deletion issues) */

#define ACPI_MAX_REFERENCE_COUNT 0x800
#define ACPI_MAX_REFERENCE_COUNT 0x1000

/* Size of cached memory mapping for system memory operation region */

Expand Down

0 comments on commit 75f6490

Please sign in to comment.