Commit 2bf47eef authored by Andreas Pape's avatar Andreas Pape Committed by Mauro Carvalho Chehab
Browse files

media: stkwebcam: Support for ASUS A6VM notebook added.



The ASUS A6VM notebook has a built in stk11xx webcam which is mounted
in a way that the video is vertically and horizontally flipped.
Therefore this notebook is added to the special handling in the driver
to automatically flip the video into the correct orientation.

Signed-off-by: default avatarAndreas Pape <ap@ca-pape.de>
Reviewed-by: default avatarKieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent bcebf812
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -116,6 +116,13 @@ static const struct dmi_system_id stk_upside_down_dmi_table[] = {
			DMI_MATCH(DMI_PRODUCT_NAME, "T12Rg-H")
			DMI_MATCH(DMI_PRODUCT_NAME, "T12Rg-H")
		}
		}
	},
	},
	{
		.ident = "ASUS A6VM",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
		}
	},
	{}
	{}
};
};