drivers/graphics/framebuffer: fix include guard

Pointed out by LGTM (Duplicate include guard).

Change-Id: Idc0e0cd48f85d4635f87355f36eb03932aa36d2e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4736
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
This commit is contained in:
Murai Takashi 2021-11-02 06:10:12 +09:00 committed by Adrien Destugues
parent 493b3fc409
commit 4500c381d2

View File

@ -3,8 +3,8 @@
* Copyright 2016, Jessica Hamilton, jessica.l.hamilton@gmail.com.
* Distributed under the terms of the MIT License.
*/
#ifndef VESA_PRIVATE_H
#define VESA_PRIVATE_H
#ifndef FRAMEBUFFER_PRIVATE_H
#define FRAMEBUFFER_PRIVATE_H
#include <Drivers.h>
@ -32,4 +32,4 @@ struct framebuffer_info {
extern status_t framebuffer_init(framebuffer_info& info);
extern void framebuffer_uninit(framebuffer_info& info);
#endif /* VESA_PRIVATE_H */
#endif /* FRAMEBUFFER_PRIVATE_H */