diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-13 08:14:22 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-13 08:14:22 +0000 |
commit | c2833e263d6cfc4cf82f4bfdcc59640a4071aeae (patch) | |
tree | 86396cb615ddf12634758f78297c88cc13394f8b /audio/ipc.h | |
parent | d013a1eaa7beebbb49c1fe0015c70ad81566d97c (diff) |
Remove ifndef protections and includes from .h files
Diffstat (limited to 'audio/ipc.h')
-rw-r--r-- | audio/ipc.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/audio/ipc.h b/audio/ipc.h index 473efc05..77997496 100644 --- a/audio/ipc.h +++ b/audio/ipc.h @@ -20,10 +20,6 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ -#ifndef __AUDIO_IPC_H__ -#define __AUDIO_IPC_H__ - -#include <stdint.h> #define IPC_TYPE_CONNECT 0x0001 @@ -78,7 +74,8 @@ struct ipc_packet { #define CFG_CODEC_SBC 1 struct ipc_data_cfg { - uint8_t fd_opt; /* Stream file descriptor options: read, write or readwrite*/ + uint8_t fd_opt; /* Stream file descriptor options: read, + write or readwrite */ uint8_t channels; /* Number of audio channel */ uint8_t channel_mode; /* Audio channel mode*/ uint16_t pkt_len; /* Stream packet length */ @@ -133,5 +130,3 @@ struct ipc_data_ctl { uint8_t mode; /* Control Mode */ uint8_t key; /* Control Key */ } __attribute__ ((packed)); - -#endif |