Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Linux 6.12 #707

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hid-kye.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ static __u8 *kye_consumer_control_fixup(struct hid_device *hdev, __u8 *rdesc,
return rdesc;
}

static __u8 *kye_report_fixup(struct hid_device *hdev, __u8 *rdesc,
static const __u8 *kye_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
switch (hdev->product) {
Expand Down
2 changes: 1 addition & 1 deletion hid-polostar.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static __u8 pt1001_rdesc_fixed[] = {
0xC0, /* End Collection */
};

static __u8 *polostar_report_fixup(struct hid_device *hdev, __u8 *rdesc,
static const __u8 *polostar_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
struct usb_interface *iface = to_usb_interface(hdev->dev.parent);
Expand Down
2 changes: 1 addition & 1 deletion hid-uclogic-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static void uclogic_inrange_timeout(struct timer_list *t)
input_sync(input);
}

static __u8 *uclogic_report_fixup(struct hid_device *hdev, __u8 *rdesc,
static const __u8 *uclogic_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
struct uclogic_drvdata *drvdata = hid_get_drvdata(hdev);
Expand Down
2 changes: 1 addition & 1 deletion hid-uclogic-params.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "hid-ids.h"
#include <linux/ctype.h>
#include <linux/string.h>
#include <asm/unaligned.h>
#include <linux/unaligned.h>

#include <linux/version.h>

Expand Down
2 changes: 1 addition & 1 deletion hid-uclogic-rdesc.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "hid-uclogic-rdesc.h"
#include <linux/slab.h>
#include <asm/unaligned.h>
#include <linux/unaligned.h>

/* Fixed WP4030U report descriptor */
__u8 uclogic_rdesc_wp4030u_fixed_arr[] = {
Expand Down
2 changes: 1 addition & 1 deletion hid-viewsonic.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static __u8 pd1011_rdesc_fixed[] = {
0xC0 /* End Collection */
};

static __u8 *viewsonic_report_fixup(struct hid_device *hdev, __u8 *rdesc,
static const __u8 *viewsonic_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
{
switch (hdev->product) {
Expand Down