diff options
author | Russell King <rmk@armlinux.org.uk> | 2018-08-29 13:56:09 +0100 |
---|---|---|
committer | Russell King <rmk@armlinux.org.uk> | 2018-08-29 13:56:09 +0100 |
commit | 78e7116a5bc6cdd9f93cbf1552d342933623ab59 (patch) | |
tree | a75c7fa4ef6512d2751fdfbee2c218d232b8e8a8 | |
parent | d820b21e529e4be23420d3c2d8e2ac20daafac90 (diff) |
etnaviv: fix coding style of previous patch
Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r-- | etnaviv/etnadrm_module.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/etnaviv/etnadrm_module.c b/etnaviv/etnadrm_module.c index ced2cea..1eaad56 100644 --- a/etnaviv/etnadrm_module.c +++ b/etnaviv/etnadrm_module.c @@ -27,12 +27,10 @@ static pointer etnadrm_setup(pointer module, pointer opts, int *errmaj, return (pointer) 1; } - if(errmaj){ + if (errmaj) *errmaj = LDR_MODSPECIFIC; - } - if(errmin){ + if (errmin) *errmin = 0; - } return NULL; } |