Remove checking root privilege for handle/path init
authorSeungbae Shin <seungbae.shin@samsung.com>
Sat, 23 Mar 2013 13:47:17 +0000 (22:47 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Sat, 23 Mar 2013 13:55:22 +0000 (22:55 +0900)
Change-Id: I2e449d1d6a97350f4c7c43ec90bebfa24f435369

avsys-audio-handle.c
avsys-audio-path.c

index 3cbe050..8eca6b3 100644 (file)
@@ -80,16 +80,10 @@ static int g_default_volume[AVSYS_AUDIO_VOLUME_TYPE_MAX] = {
 EXPORT_API
 int avsys_audio_handle_init(void)
 {
-       int i, err = 0;
+       int i = 0;
        avsys_audio_handle_info_t *control = NULL;
        avsys_audio_handle_info_t **temp = NULL;
 
-       /* Check root user */
-       err = avsys_check_root_privilege();
-       if (AVSYS_FAIL(err)) {
-               return err;
-       }
-
        if (AVSYS_FAIL(avsys_audio_create_sync(AVSYS_AUDIO_SYNC_IDEN_HANDLE))) {
                avsys_error(AVAUDIO, "avsys_audio_create_sync() failed in %s\n", __func__);
                return AVSYS_STATE_ERR_INTERNAL;
@@ -147,19 +141,13 @@ int avsys_audio_handle_fini(void)
 EXPORT_API
 int avsys_audio_handle_reset(int *volume_value)
 {
-       int i = 0, err = 0;
+       int i = 0;
        long long int flag = 0x01;
        avsys_audio_handle_info_t *control = NULL;
        avsys_audio_handle_info_t **temp = NULL;
        int * volumes;
        temp = &control;
 
-       /* Check root user */
-       err = avsys_check_root_privilege();
-       if (AVSYS_FAIL(err)) {
-               return err;
-       }
-
        AVSYS_GET_SHM(temp,AVSYS_STATE_ERR_INTERNAL);
        if (control == NULL) {
                avsys_error(AVAUDIO, "control is null in %s\n", __func__);
index 7b37ae2..4a91364 100644 (file)
@@ -325,12 +325,6 @@ int avsys_audio_path_ex_init(void)
        int err = AVSYS_STATE_SUCCESS;
        avsys_audio_conf conf = { 0, };
 
-       /* Check root user */
-       err = avsys_check_root_privilege();
-       if (AVSYS_FAIL(err)) {
-               return err;
-       }
-
        temp = &control;
        avsys_assert(AVSYS_SUCCESS(avsys_audio_create_sync(AVSYS_AUDIO_SYNC_IDEN_PATH)));
        avsys_assert(AVSYS_SUCCESS(avsys_audio_create_shm(AVSYS_AUDIO_SHM_IDEN_PATH)));
@@ -425,12 +419,6 @@ int avsys_audio_path_ex_reset(int forced)
        int backup_debug = 0;
        avsys_audio_conf conf = { 0, };
 
-       /* Check root user */
-       err = avsys_check_root_privilege();
-       if (AVSYS_FAIL(err)) {
-               return err;
-       }
-
        temp = &control;
        if (AVSYS_FAIL(avsys_audio_get_shm(AVSYS_AUDIO_SHM_IDEN_PATH, (void **)temp))) {
                avsys_error_r(AVAUDIO, "avsys_audio_get_shm() failed in %s\n", __func__);