]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
staging: sm750fb: fix division by zero in ps_to_hz()
authorJunrui Luo <moonafterrain@outlook.com>
Mon, 23 Mar 2026 07:31:56 +0000 (15:31 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 31 Mar 2026 08:33:21 +0000 (10:33 +0200)
commit75a1621e4f91310673c9acbcbb25c2a7ff821cd3
tree7432658c4ccc6af3407fe39cb21a953366e42226
parent2541d1822954b6629cf4bbc0d20fea82143452b3
staging: sm750fb: fix division by zero in ps_to_hz()

ps_to_hz() is called from hw_sm750_crtc_set_mode() without validating
that pixclock is non-zero. A zero pixclock passed via FBIOPUT_VSCREENINFO
causes a division by zero.

Fix by rejecting zero pixclock in lynxfb_ops_check_var(), consistent
with other framebuffer drivers.

Fixes: 81dee67e215b ("staging: sm750fb: add sm750 to staging")
Reported-by: Yuhao Jiang <danisjiang@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Junrui Luo <moonafterrain@outlook.com>
Link: https://patch.msgid.link/SYBPR01MB7881AFBFCE28CCF528B35D0CAF4BA@SYBPR01MB7881.ausprd01.prod.outlook.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750.c