Skip to content

Commit 64f83a8

Browse files
committed
Revert "video: ssd1307fb: Do not hard code active-low reset sequence"
This reverts commit 9827f26. On 10/09/2018 02:20 AM, Shawn Guo wrote: > Well, it means the change breaks the ABI between kernel and device tree, > e.g. the new kernel will not work with existing/installed DTBs. Revert the change until DTB compatibility issue is resolved. Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
1 parent 9703759 commit 64f83a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/video/fbdev/ssd1307fb.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,10 +667,10 @@ static int ssd1307fb_probe(struct i2c_client *client,
667667

668668
if (par->reset) {
669669
/* Reset the screen */
670-
gpiod_set_value_cansleep(par->reset, 1);
671-
udelay(4);
672670
gpiod_set_value_cansleep(par->reset, 0);
673671
udelay(4);
672+
gpiod_set_value_cansleep(par->reset, 1);
673+
udelay(4);
674674
}
675675

676676
if (par->vbat_reg) {

0 commit comments

Comments
 (0)