mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
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: Erik Andrén <erik.andren@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
40a4f2fc65
commit
926b3b4122
@ -44,6 +44,34 @@ static int ov9650_set_auto_exposure(struct gspca_dev *gspca_dev, __s32 val);
|
||||
static
|
||||
const
|
||||
struct dmi_system_id ov9650_flip_dmi_table[] = {
|
||||
{
|
||||
.ident = "ASUS A6Ja",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6JC",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6K",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6K")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6Kt",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6VA",
|
||||
.matches = {
|
||||
@ -67,38 +95,10 @@ static
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6JC",
|
||||
.ident = "ASUS A7V",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6Ja",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6Kt",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6K",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6K")
|
||||
}
|
||||
},
|
||||
{
|
||||
.ident = "ASUS A6VA",
|
||||
.matches = {
|
||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6VA")
|
||||
DMI_MATCH(DMI_PRODUCT_NAME, "A7V")
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user