Skip to content

Commit

Permalink
staging: tidspbridge: Remove unused magic number
Browse files Browse the repository at this point in the history
This patch removes an unused magic number from the cod_manager
structure.

Signed-off-by: Armando Uribe <x0095078@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Armando Uribe authored and Greg Kroah-Hartman committed Jul 26, 2010
1 parent 28eeb6a commit fe15ea8
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions drivers/staging/tidspbridge/pmgr/cod.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@
/* ----------------------------------- This */
#include <dspbridge/cod.h>

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

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

/*
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit fe15ea8

Please sign in to comment.