search for: aabbccdd

Displaying 5 results from an estimated 5 matches for "aabbccdd".

2016 May 19
2
[PATCH] gpu/nouveau/nouveau_acpi.c: Fix Type Mismatch ACPI warning
...nc, int arg, uint32_t *result) > { > - int i; > union acpi_object *obj; > - char args_buff[4]; > - union acpi_object argv4 = { > - .buffer.type = ACPI_TYPE_BUFFER, > - .buffer.length = 4, > - .buffer.pointer = args_buff > - }; > - > - /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ > - for (i = 0; i < 4; i++) > - args_buff[i] = (arg >> i * 8) & 0xFF; > - > *result = 0; > obj = acpi_evaluate_dsm_typed(handle, nouveau_op_dsm_muid, 0x00000100, > - func, &argv4, ACPI_TYPE_BUFFER); > + func, NULL...
2007 Mar 19
3
DavkaWriter 6 ?
...keyboard (for entering Hebrew characters) are boxes and so are the instructions as to which keyboard to select. If I didn't know how to drive this under Windows, I'd be stumped. Also, when trying to select a font, many of the sample displays (to the right of the font name, in the "AaBbCcDd..." format) also show boxes, although many do show the correct font sample. But leaving the font selection also leaves a solid block of grey on the top R-H side of the document display area. Lastly, picking up existing documents is a real problem. New documents, provided you select sensi...
2002 Dec 17
4
booting from local disk
Hi, I've mostly set up a kickstart for RedHat 8.0. I'm using the instructions posted by Alf W. : http://www.stanford.edu/~alfw/PXE-Kickstart/PXE-Kickstart.html The whole thing works, except when I go to reboot the system it hangs. ie. TFTP Prefix: Trying to load: pxelinux.cfg/AABBCCDD Trying to load: pxelinux.cfg/AABBCCD Trying to load: pxelinux.cfg/AABBCC Trying to load: pxelinux.cfg/AABBC Trying to load: pxelinux.cfg/AABB ... Trying to load: pxelinux.cfg/default Booting from localdisk And then it just sits there. If I understood what it was looking for here, I'd pro...
2015 Jan 17
0
[PATCH RFC] nouveau: Add support for Gmux _DSM method
...+static int nouveau_gmux_dsm(acpi_handle handle, int func, int arg, uint32_t *result) +{ + int i; + union acpi_object *obj; + char args_buff[4]; + union acpi_object argv4 = { + .buffer.type = ACPI_TYPE_BUFFER, + .buffer.length = 4, + .buffer.pointer = args_buff + }; + + /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ + for (i = 0; i < 4; i++) + args_buff[i] = (arg >> i * 8) & 0xFF; + + *result = 0; + obj = acpi_evaluate_dsm_typed(handle, nouveau_gmux_dsm_muid, 0x00000101, + func, &argv4, ACPI_TYPE_BUFFER); + if (!obj) { + acpi_handle_info(handle, "failed...
2016 May 20
0
[PATCH] gpu/nouveau/nouveau_acpi.c: Fix Type Mismatch ACPI warning
...> - char args_buff[4]; > > - union acpi_object argv4 = { > > - .buffer.type = ACPI_TYPE_BUFFER, > > - .buffer.length = 4, > > - .buffer.pointer = args_buff > > - }; > > - > > - /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ > > - for (i = 0; i < 4; i++) > > - args_buff[i] = (arg >> i * 8) & 0xFF; > > - > > *result = 0; > > obj = acpi_evaluate_dsm_typed(handle, nouveau_op_dsm_muid, > 0x00000100, > > -...