mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 15:02:56 +02:00
- move compatibility headers to /lib/hardware
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
8
lib/hardware/audio.h
Normal file
8
lib/hardware/audio.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#if HAVE_COOL_HARDWARE
|
||||
#include <audio_cs.h>
|
||||
#elif USE_STB_HAL
|
||||
#include <audio_hal.h>
|
||||
#else
|
||||
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
|
||||
#error do you need to include config.h?
|
||||
#endif
|
8
lib/hardware/dmx.h
Normal file
8
lib/hardware/dmx.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#if HAVE_COOL_HARDWARE
|
||||
#include <dmx_cs.h>
|
||||
#elif USE_STB_HAL
|
||||
#include <dmx_hal.h>
|
||||
#else
|
||||
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
|
||||
#error do you need to include config.h?
|
||||
#endif
|
10
lib/hardware/video.h
Normal file
10
lib/hardware/video.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#if HAVE_COOL_HARDWARE
|
||||
#include <cs_api.h>
|
||||
#include <video_cs.h>
|
||||
#elif USE_STB_HAL
|
||||
#include <init_td.h>
|
||||
#include <video_hal.h>
|
||||
#else
|
||||
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
|
||||
#error do you need to include config.h?
|
||||
#endif
|
Reference in New Issue
Block a user