diff options
Diffstat (limited to 'drivers/acpi/video_detect.c')
| -rw-r--r-- | drivers/acpi/video_detect.c | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index 811d298637cb..33474fd96991 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c @@ -147,6 +147,7 @@ static const struct dmi_system_id video_detect_dmi_table[] = {  		},  	},  	{ +	.callback = video_detect_force_vendor,  	.ident = "Sony VPCEH3U1E",  	.matches = {  		DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), @@ -384,6 +385,30 @@ static const struct dmi_system_id video_detect_dmi_table[] = {  		DMI_MATCH(DMI_BOARD_NAME, "BA51_MV"),  		},  	}, +	{ +	.callback = video_detect_force_native, +	.ident = "ASUSTeK COMPUTER INC. GA401", +	.matches = { +		DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), +		DMI_MATCH(DMI_PRODUCT_NAME, "GA401"), +		}, +	}, +	{ +	.callback = video_detect_force_native, +	.ident = "ASUSTeK COMPUTER INC. GA502", +	.matches = { +		DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), +		DMI_MATCH(DMI_PRODUCT_NAME, "GA502"), +		}, +	}, +	{ +	.callback = video_detect_force_native, +	.ident = "ASUSTeK COMPUTER INC. GA503", +	.matches = { +		DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), +		DMI_MATCH(DMI_PRODUCT_NAME, "GA503"), +		}, +	},  	/*  	 * Desktops which falsely report a backlight and which our heuristics | 
