mirror of https://gitee.com/openkylin/linux.git
V4L/DVB (9702): Move the ov9650 vflip table to avoid compilation warnings on older kernels
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
8eaaf4034f
commit
30881ab7b3
|
@ -18,6 +18,42 @@
|
||||||
|
|
||||||
#include "m5602_ov9650.h"
|
#include "m5602_ov9650.h"
|
||||||
|
|
||||||
|
/* Vertically and horizontally flips the image if matched, needed for machines
|
||||||
|
where the sensor is mounted upside down */
|
||||||
|
static
|
||||||
|
const
|
||||||
|
struct dmi_system_id ov9650_flip_dmi_table[] = {
|
||||||
|
{
|
||||||
|
.ident = "ASUS A6VC",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.ident = "ASUS A6VM",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.ident = "ASUS A6JC",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.ident = "ASUS A6Kt",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
int ov9650_read_sensor(struct sd *sd, const u8 address,
|
int ov9650_read_sensor(struct sd *sd, const u8 address,
|
||||||
u8 *i2c_data, const u8 len)
|
u8 *i2c_data, const u8 len)
|
||||||
{
|
{
|
||||||
|
|
|
@ -464,40 +464,4 @@ static const unsigned char power_down_ov9650[][3] =
|
||||||
{BRIDGE, M5602_XB_SEN_CLK_CTRL, 0xb0}
|
{BRIDGE, M5602_XB_SEN_CLK_CTRL, 0xb0}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Vertically and horizontally flips the image if matched, needed for machines
|
|
||||||
where the sensor is mounted upside down */
|
|
||||||
static
|
|
||||||
const
|
|
||||||
struct dmi_system_id ov9650_flip_dmi_table[] = {
|
|
||||||
{
|
|
||||||
.ident = "ASUS A6VC",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.ident = "ASUS A6VM",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.ident = "ASUS A6JC",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
.ident = "ASUS A6Kt",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue