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

mfd: usbio: add Sabre HWID for LNL #28

Open
wants to merge 1 commit into
base: cce_lnl_release
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions drivers/mfd/usbio.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ char *gpio_hids[] = {
"INTC1096", /* ADL */
"INTC100B", /* RPL */
"INTC10D1", /* MTL-CVF */
"INTC1007", /* MTL */
"INTC10B5", /* LNL */
"INTC1007", /* MTL */
};
static struct mfd_cell_acpi_match usbio_acpi_match_gpio;

Expand All @@ -38,8 +38,8 @@ static char *i2c_hids[] = {
"INTC1097", /* ADL */
"INTC100C", /* RPL */
"INTC10D2", /* MTL-CVF */
"INTC1008", /* MTL */
"INTC10B6", /* LNL */
"INTC1008", /* MTL */
};
static struct mfd_cell_acpi_match usbio_acpi_match_i2cs;

Expand Down Expand Up @@ -1159,6 +1159,7 @@ static const struct usb_device_id usbio_table[] = {
{USB_DEVICE(0x2AC1, 0x20C1)}, /* Lattice NX40 */
{USB_DEVICE(0x2AC1, 0x20C9)}, /* Lattice NX33 */
{USB_DEVICE(0x2AC1, 0x20CB)}, /* Lattice NX33U */
{USB_DEVICE(0x06CB, 0x0701)}, /* Synaptics */
{}
};
MODULE_DEVICE_TABLE(usb, usbio_table);
Expand Down