search for: nsrepair2

Displaying 3 results from an estimated 3 matches for "nsrepair2".

2016 Jul 01
1
[PATCH 1/6] lib: string: add function strtolower()
...semantics (returning a pointer to dst's terminating \0) means a caller might avoid a strlen call. - Maybe do strtoupper while you're at it. Quick grepping didn't find any use for the copy-while-lowercasing, but copy-while-uppercasing can at least be used in drivers/acpi/acpica/nsrepair2.c, drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c, drivers/power/power_supply_sysfs.c along with a bunch of inplace uppercasing. Rasmus
2016 Jun 30
6
[PATCH 0/6] lib: string: add function strtolower()
This series introduces a new generic function strtolower(), which converts strings to lowercase in-place, overwriting the original string. This kind of functionality is needed in several places in the kernel. Right now, everybody seems to be implementing their own copy of this function. So, we replace several custom "strtolower" implementations with this new library function. Another
2012 Mar 03
0
[RFC GIT PATCHES] acpioff: COM32 module to shut off machine using ACPI
...drivers/acpi/acpica/nsobject.c | 448 +++++++ .../acpica_linuxized/drivers/acpi/acpica/nsparse.c | 202 ++++ .../drivers/acpi/acpica/nspredef.c | 1172 ++++++++++++++++++ .../drivers/acpi/acpica/nsrepair.c | 730 +++++++++++ .../drivers/acpi/acpica/nsrepair2.c | 754 ++++++++++++ .../drivers/acpi/acpica/nssearch.c | 399 ++++++ .../acpica_linuxized/drivers/acpi/acpica/nsutils.c | 750 ++++++++++++ .../acpica_linuxized/drivers/acpi/acpica/nswalk.c | 357 ++++++ .../drivers/acpi/acpica/nsxfeval.c | 857...