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