aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/gspca/m5602/m5602_ov9650.c
diff options
context:
space:
mode:
authorErik Andrén <erik.andren@gmail.com>2009-06-11 16:20:23 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 18:07:29 -0400
commit926b3b4122e4ebca52e67eecf9beb9a517e593f4 (patch)
tree55c800fb1430b5bb0ecf91b9de60ce168729bb02 /drivers/media/video/gspca/m5602/m5602_ov9650.c
parent40a4f2fc6525f621f6f855e1d5506c3b14acf3cc (diff)
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>
Diffstat (limited to 'drivers/media/video/gspca/m5602/m5602_ov9650.c')
-rw-r--r--drivers/media/video/gspca/m5602/m5602_ov9650.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/drivers/media/video/gspca/m5602/m5602_ov9650.c b/drivers/media/video/gspca/m5602/m5602_ov9650.c
index a441f8c06ab..c2739d6605a 100644
--- a/drivers/media/video/gspca/m5602/m5602_ov9650.c
+++ b/drivers/media/video/gspca/m5602/m5602_ov9650.c
@@ -45,60 +45,60 @@ static
45 const 45 const
46 struct dmi_system_id ov9650_flip_dmi_table[] = { 46 struct dmi_system_id ov9650_flip_dmi_table[] = {
47 { 47 {
48 .ident = "ASUS A6VA", 48 .ident = "ASUS A6Ja",
49 .matches = { 49 .matches = {
50 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 50 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
51 DMI_MATCH(DMI_PRODUCT_NAME, "A6VA") 51 DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
52 } 52 }
53 }, 53 },
54 { 54 {
55 55 .ident = "ASUS A6JC",
56 .ident = "ASUS A6VC",
57 .matches = { 56 .matches = {
58 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 57 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
59 DMI_MATCH(DMI_PRODUCT_NAME, "A6VC") 58 DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
60 } 59 }
61 }, 60 },
62 { 61 {
63 .ident = "ASUS A6VM", 62 .ident = "ASUS A6K",
64 .matches = { 63 .matches = {
65 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 64 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
66 DMI_MATCH(DMI_PRODUCT_NAME, "A6VM") 65 DMI_MATCH(DMI_PRODUCT_NAME, "A6K")
67 } 66 }
68 }, 67 },
69 { 68 {
70 .ident = "ASUS A6JC", 69 .ident = "ASUS A6Kt",
71 .matches = { 70 .matches = {
72 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 71 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
73 DMI_MATCH(DMI_PRODUCT_NAME, "A6JC") 72 DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
74 } 73 }
75 }, 74 },
76 { 75 {
77 .ident = "ASUS A6Ja", 76 .ident = "ASUS A6VA",
78 .matches = { 77 .matches = {
79 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 78 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
80 DMI_MATCH(DMI_PRODUCT_NAME, "A6J") 79 DMI_MATCH(DMI_PRODUCT_NAME, "A6VA")
81 } 80 }
82 }, 81 },
83 { 82 {
84 .ident = "ASUS A6Kt", 83
84 .ident = "ASUS A6VC",
85 .matches = { 85 .matches = {
86 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 86 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
87 DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt") 87 DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
88 } 88 }
89 }, 89 },
90 { 90 {
91 .ident = "ASUS A6K", 91 .ident = "ASUS A6VM",
92 .matches = { 92 .matches = {
93 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 93 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
94 DMI_MATCH(DMI_PRODUCT_NAME, "A6K") 94 DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
95 } 95 }
96 }, 96 },
97 { 97 {
98 .ident = "ASUS A6VA", 98 .ident = "ASUS A7V",
99 .matches = { 99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), 100 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
101 DMI_MATCH(DMI_PRODUCT_NAME, "A6VA") 101 DMI_MATCH(DMI_PRODUCT_NAME, "A7V")
102 } 102 }
103 }, 103 },
104 { 104 {