2.6.28-stable review patch. If anyone has any objections, please let us know. ------------------ From: Jiri Slaby commit 2b639386a2a26c84c8d26c649cf657ebd43a7bc8 upstream. Fix endianness of bus member of hid_device_id in modpost. Signed-off-by: Jiri Slaby Reported-by: Nye Liu Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- scripts/mod/file2alias.c | 1 + 1 file changed, 1 insertion(+) --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c @@ -210,6 +210,7 @@ static void do_usb_table(void *symval, u static int do_hid_entry(const char *filename, struct hid_device_id *id, char *alias) { + id->bus = TO_NATIVE(id->bus); id->vendor = TO_NATIVE(id->vendor); id->product = TO_NATIVE(id->product); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/