mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
video: exynos_mipi_dsi: Remove unnecessary NULL check
'dsim' is allocated and checked for NULL in the probe function. Hence this check is redundant. This cleanup also fixes a potential NULL pointer dereference error when dsim which is NULL references its member in the error print message. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
parent
c520f9faac
commit
ebe9f7b025
1 changed files with 0 additions and 5 deletions
|
@ -79,11 +79,6 @@ irqreturn_t exynos_mipi_dsi_interrupt_handler(int irq, void *dev_id)
|
||||||
struct mipi_dsim_device *dsim = dev_id;
|
struct mipi_dsim_device *dsim = dev_id;
|
||||||
unsigned int intsrc, intmsk;
|
unsigned int intsrc, intmsk;
|
||||||
|
|
||||||
if (dsim == NULL) {
|
|
||||||
dev_err(dsim->dev, "%s: wrong parameter\n", __func__);
|
|
||||||
return IRQ_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
intsrc = exynos_mipi_dsi_read_interrupt(dsim);
|
intsrc = exynos_mipi_dsi_read_interrupt(dsim);
|
||||||
intmsk = exynos_mipi_dsi_read_interrupt_mask(dsim);
|
intmsk = exynos_mipi_dsi_read_interrupt_mask(dsim);
|
||||||
intmsk = ~intmsk & intsrc;
|
intmsk = ~intmsk & intsrc;
|
||||||
|
|
Loading…
Reference in a new issue