@@ -60,10 +60,7 @@ static struct hw_mmu_map_attrs_t map_attrs = { HW_LITTLE_ENDIAN,
#define VIRT_TO_PHYS(x) ((x) - PAGE_OFFSET + PHYS_OFFSET)
static u32 dummy_va_addr;
-/*
- * ======== bridge_deh_create ========
- * Creates DEH manager object.
- */
+
dsp_status bridge_deh_create(OUT struct deh_mgr **phDehMgr,
struct dev_object *hdev_obj)
{
@@ -126,10 +123,6 @@ dsp_status bridge_deh_create(OUT struct deh_mgr **phDehMgr,
return status;
}
-/*
- * ======== bridge_deh_destroy ========
- * Destroys DEH manager object.
- */
dsp_status bridge_deh_destroy(struct deh_mgr *hdeh_mgr)
{
dsp_status status = DSP_SOK;
@@ -154,10 +147,6 @@ dsp_status bridge_deh_destroy(struct deh_mgr *hdeh_mgr)
return status;
}
-/*
- * ======== bridge_deh_register_notify ========
- * Registers for DEH notifications.
- */
dsp_status bridge_deh_register_notify(struct deh_mgr *hdeh_mgr, u32 event_mask,
u32 notify_type,
struct dsp_notification *hnotification)
@@ -173,10 +162,6 @@ dsp_status bridge_deh_register_notify(struct deh_mgr *hdeh_mgr, u32 event_mask,
return status;
}
-/*
- * ======== bridge_deh_notify ========
- * DEH error notification function. Informs user about the error.
- */
void bridge_deh_notify(struct deh_mgr *hdeh_mgr, u32 ulEventMask, u32 dwErrInfo)
{
struct deh_mgr *deh_mgr_obj = (struct deh_mgr *)hdeh_mgr;
@@ -290,10 +275,6 @@ void bridge_deh_notify(struct deh_mgr *hdeh_mgr, u32 ulEventMask, u32 dwErrInfo)
}
}
-/*
- * ======== bridge_deh_get_info ========
- * Retrieves error information.
- */
dsp_status bridge_deh_get_info(struct deh_mgr *hdeh_mgr,
struct dsp_errorinfo *pErrInfo)
{
@@ -317,10 +298,6 @@ dsp_status bridge_deh_get_info(struct deh_mgr *hdeh_mgr,
return status;
}
-/*
- * ======== bridge_deh_release_dummy_mem ========
- * Releases memory allocated for dummy page
- */
void bridge_deh_release_dummy_mem(void)
{
kfree((void *)dummy_va_addr);