mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
10 lines
217 B
C
10 lines
217 B
C
#ifndef PART_FRAMEBUFFER_H
|
|
#define PART_FRAMEBUFFER_H
|
|
|
|
#ifdef HAVE_FRAMEBUFFER
|
|
void framebuffer_on(void);
|
|
#else
|
|
# define framebuffer_on() do {} while(0)
|
|
#endif /* HAVE_FRAMEBUFFER */
|
|
|
|
#endif /* PART_FRAMEBUFFER_H */
|