summaryrefslogtreecommitdiff
path: root/src/hdmi_service_start.c
blob: 49c0914060c31d61a8b87a0e160b1641ac5653ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (C) ST-Ericsson SA 2011
 * Author: Per Persson per.xb.persson@stericsson.com for
 * ST-Ericsson.
 * License terms: <FOSS license>.
 */

#include <unistd.h>     /* Symbolic Constants */
#include <sys/types.h>  /* Primitive System Data Types */
#include <errno.h>      /* Errors */
#include <stdarg.h>
#include <stdio.h>      /* Input/Output */
#include <stdlib.h>     /* General Utilities */
#include <pthread.h>    /* POSIX Threads */
#include <string.h>     /* String handling */
#include "../include/hdmi_service_api.h"

#define NO_RETURN_MESSAGES 1

int main(int argc, char *argv[])
{
	hdmi_init(NO_RETURN_MESSAGES);

	hdmi_enable();

	pthread_exit(NULL);

	return 0;
}