aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_bios.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.c')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c
index 58d8c85b85d..528fb608781 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bios.c
+++ b/drivers/gpu/drm/nouveau/nouveau_bios.c
@@ -3771,6 +3771,10 @@ parse_init_table(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
3771 int count = 0, i, ret; 3771 int count = 0, i, ret;
3772 uint8_t id; 3772 uint8_t id;
3773 3773
3774 /* catch NULL script pointers */
3775 if (offset == 0)
3776 return 0;
3777
3774 /* 3778 /*
3775 * Loop until INIT_DONE causes us to break out of the loop 3779 * Loop until INIT_DONE causes us to break out of the loop
3776 * (or until offset > bios length just in case... ) 3780 * (or until offset > bios length just in case... )