Commit 926b3b41 authored by Erik Andrén's avatar Erik Andrén Committed by Mauro Carvalho Chehab

V4L/DVB (11942): gspca - m5602-ov9650: Reorder quirk list and add A7V quirk

The quirk list has grown and was in need of sorting. This is now done. Add a new vflip quirk for the ASUS A7V while we're at it. Thanks to Carsten Menzel for reporting.
Signed-off-by: default avatarErik Andrén <erik.andren@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 40a4f2fc
...@@ -45,60 +45,60 @@ static ...@@ -45,60 +45,60 @@ static
const const
struct dmi_system_id ov9650_flip_dmi_table[] = { struct dmi_system_id ov9650_flip_dmi_table[] = {
{ {
.ident = "ASUS A6VA", .ident = "ASUS A6Ja",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6VA") DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
} }
}, },
{ {
.ident = "ASUS A6JC",
.ident = "ASUS A6VC",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6VC") DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
} }
}, },
{ {
.ident = "ASUS A6VM", .ident = "ASUS A6K",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6VM") DMI_MATCH(DMI_PRODUCT_NAME, "A6K")
} }
}, },
{ {
.ident = "ASUS A6JC", .ident = "ASUS A6Kt",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6JC") DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
} }
}, },
{ {
.ident = "ASUS A6Ja", .ident = "ASUS A6VA",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6J") DMI_MATCH(DMI_PRODUCT_NAME, "A6VA")
} }
}, },
{ {
.ident = "ASUS A6Kt",
.ident = "ASUS A6VC",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt") DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
} }
}, },
{ {
.ident = "ASUS A6K", .ident = "ASUS A6VM",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6K") DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
} }
}, },
{ {
.ident = "ASUS A6VA", .ident = "ASUS A7V",
.matches = { .matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "A6VA") DMI_MATCH(DMI_PRODUCT_NAME, "A7V")
} }
}, },
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment