diff options
author | Ashley Towns <mail@ashleytowns.id.au> | 2015-11-12 05:03:27 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-12-08 09:07:49 -0500 |
commit | 8e3911178e0d406bc3e84e7dcd8b556edc47b9d7 (patch) | |
tree | 9fc522b1024d57eefc7f5a1616e7469ece3c1acd | |
parent | 0b4663a1f4a7541d070ddb3da4b606389a02d5c8 (diff) |
exynos: fixes an incorrect header guard
in the exynos gpu driver where the preprocessor #ifndef/#define
variables were mismatched.
Signed-off-by: Ashley Towns <mail@ashleytowns.id.au>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fb.h b/drivers/gpu/drm/exynos/exynos_drm_fb.h index 85e4445b920e..6b0f1acff1fc 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fb.h +++ b/drivers/gpu/drm/exynos/exynos_drm_fb.h | |||
@@ -12,7 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #ifndef _EXYNOS_DRM_FB_H_ | 14 | #ifndef _EXYNOS_DRM_FB_H_ |
15 | #define _EXYNOS_DRM_FB_H | 15 | #define _EXYNOS_DRM_FB_H_ |
16 | 16 | ||
17 | #include "exynos_drm_gem.h" | 17 | #include "exynos_drm_gem.h" |
18 | 18 | ||