mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 23:01:29 +00:00
V4L/DVB (9703): Move the s5k4aa vflip quirk table to the main sensor file in order to avoid compilation errors 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
30881ab7b3
commit
579ef87999
@ -18,6 +18,39 @@
|
|||||||
|
|
||||||
#include "m5602_s5k4aa.h"
|
#include "m5602_s5k4aa.h"
|
||||||
|
|
||||||
|
static
|
||||||
|
const
|
||||||
|
struct dmi_system_id s5k4aa_vflip_dmi_table[] = {
|
||||||
|
{
|
||||||
|
.ident = "Fujitsu-Siemens Amilo Xa 2528",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528")
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
.ident = "Fujitsu-Siemens Amilo Xi 2550",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 2550")
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
.ident = "MSI GX700",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "GX700"),
|
||||||
|
DMI_MATCH(DMI_BIOS_DATE, "07/26/2007")
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
.ident = "MSI GX700/GX705/EX700",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "GX700/GX705/EX700")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
int s5k4aa_probe(struct sd *sd)
|
int s5k4aa_probe(struct sd *sd)
|
||||||
{
|
{
|
||||||
u8 prod_id[6] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
u8 prod_id[6] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||||
|
@ -338,36 +338,4 @@ static const unsigned char init_s5k4aa[][4] =
|
|||||||
{SENSOR, S5K4AA_GAIN_2, 0xa0, 0x00}
|
{SENSOR, S5K4AA_GAIN_2, 0xa0, 0x00}
|
||||||
};
|
};
|
||||||
|
|
||||||
static
|
|
||||||
const
|
|
||||||
struct dmi_system_id s5k4aa_vflip_dmi_table[] = {
|
|
||||||
{
|
|
||||||
.ident = "Fujitsu-Siemens Amilo Xa 2528",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528")
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
.ident = "Fujitsu-Siemens Amilo Xi 2550",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 2550")
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
.ident = "MSI GX700",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "GX700"),
|
|
||||||
DMI_MATCH(DMI_BIOS_DATE, "07/26/2007")
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
.ident = "MSI GX700/GX705/EX700",
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "GX700/GX705/EX700")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user