[PATCH v2 1/3] video: fbdev: Fix checkpatch warnings in goldfishfb.c

2018-06-11 Thread rkir
From: Roman Kiryanov Address issues pointed by checkpatch.pl Signed-off-by: Roman Kiryanov --- Changes in v2: - Updated the commit message to include "video: fbdev:" and added a description. drivers/video/fbdev/goldfishfb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff

[PATCH v2 3/3] video: fbdev: Set pixclock = 0 in goldfishfb

2018-06-11 Thread rkir
From: Christoffer Dall User space Android code identifies pixclock == 0 as a sign for emulation and will set the frame rate to 60 fps when reading this value, which is the desired outcome. Signed-off-by: Christoffer Dall Signed-off-by: Peter Maydell Signed-off-by: Roman Kiryanov --- Changes

[PATCH v2 2/3] video: fbdev: Enable ACPI-based enumeration for goldfishfb

2018-06-11 Thread rkir
From: Yu Ning Add an ACPI id to make goldfish framebuffer to support ACPI enumeration. Signed-off-by: Yu Ning Signed-off-by: Roman Kiryanov --- Changes in v2: - Removed references to commits outside of kernel.org. - Updated the commit description. drivers/video/fbdev/goldfishfb.c | 8

[PATCH 1/3] Fix checkpatch warnings in goldfishfb.c

2018-06-01 Thread rkir
From: Roman Kiryanov Address issues pointed by checkpatch.pl Signed-off-by: Roman Kiryanov --- drivers/video/fbdev/goldfishfb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c index

[PATCH 2/3] goldfish: Enable ACPI-based enumeration for goldfish framebuffer

2018-06-01 Thread rkir
From: Yu Ning Follow the same way in which ACPI was enabled for goldfish battery. See commit d3be10e for details. Note that this patch also depends on commit af33cac. Signed-off-by: Yu Ning Signed-off-by: Roman Kiryanov --- drivers/video/fbdev/goldfishfb.c | 8 1 file changed, 8

[PATCH 3/3] ANDROID: goldfish_fb: Set pixclock = 0

2018-06-01 Thread rkir
From: Christoffer Dall User space Android code identifies pixclock == 0 as a sign for emulation and will set the frame rate to 60 fps when reading this value, which is the desired outcome. Change-Id: I759bf518bf6683446bc786bf1be3cafa02dd8d42 Signed-off-by: Christoffer Dall Signed-off-by: Peter