Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe15ea8b authored by Armando Uribe's avatar Armando Uribe Committed by Greg Kroah-Hartman
Browse files

staging: tidspbridge: Remove unused magic number



This patch removes an unused magic number from the cod_manager
structure.

Signed-off-by: default avatarArmando Uribe <x0095078@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 28eeb6a7
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -43,9 +43,6 @@
/*  ----------------------------------- This */
#include <dspbridge/cod.h>

/* magic number for handle validation */
#define MAGIC	 0xc001beef

/*
 *  ======== cod_manager ========
 */
@@ -58,7 +55,6 @@ struct cod_manager {
	struct dbll_fxns fxns;
	struct dbll_attrs attrs;
	char sz_zl_file[COD_MAXPATHLENGTH];
	u32 ul_magic;
};

/*
@@ -234,8 +230,6 @@ int cod_create(struct cod_manager **mgr, char *str_zl_file,
	if (mgr_new == NULL)
		return -ENOMEM;

	mgr_new->ul_magic = MAGIC;

	/* Set up loader functions */
	mgr_new->fxns = ldr_fxns;

@@ -295,7 +289,6 @@ void cod_delete(struct cod_manager *cod_mgr_obj)
		cod_mgr_obj->fxns.delete_fxn(cod_mgr_obj->target);
		cod_mgr_obj->fxns.exit_fxn();
	}
	cod_mgr_obj->ul_magic = ~MAGIC;
	kfree(cod_mgr_obj);
}