[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1279848334-4043-7-git-send-email-x0095078@ti.com>
Date: Thu, 22 Jul 2010 20:25:31 -0500
From: Armando Uribe <x0095078@...com>
To: Greg Kroah-Hartman <gregkh@...e.de>
Cc: Omar Ramirez Luna <omar.ramirez@...com>,
Ohad Ben-Cohen <ohad@...ery.com>,
Ameya Palande <ameya.palande@...ia.com>,
<linux-kernel@...r.kernel.org>, <devel@...verdev.osuosl.org>,
Rene Sapiens <rene.sapiens@...com>,
Felipe Contreras <felipe.contreras@...il.com>,
Armando Uribe <x0095078@...com>
Subject: [PATCH 6/9] staging: tidspbridge: Remove unused magic number
This patch removes an unused magic number from the cod_manager
structure.
Signed-off-by: Armando Uribe <x0095078@...com>
---
drivers/staging/tidspbridge/pmgr/cod.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/tidspbridge/pmgr/cod.c b/drivers/staging/tidspbridge/pmgr/cod.c
index 0cbe6e5..81102d2 100644
--- a/drivers/staging/tidspbridge/pmgr/cod.c
+++ b/drivers/staging/tidspbridge/pmgr/cod.c
@@ -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);
}
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists