Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205821
b: refs/heads/master
c: 654fe1b
h: refs/heads/master
i:
  205819: a0d5be4
v: v3
  • Loading branch information
Felipe Contreras authored and Greg Kroah-Hartman committed Jul 8, 2010
1 parent 6561aaf commit b879ab0
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 47 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ec71c8fe23ca236119c7176a8a3e77529a393283
refs/heads/master: 654fe1b20dd9e3c753bf5667682c8d3ee2a2ae8e
1 change: 0 additions & 1 deletion trunk/drivers/staging/tidspbridge/core/tiomap3430.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ static struct bridge_drv_interface drv_interface_fxns = {
bridge_deh_destroy,
bridge_deh_notify,
bridge_deh_register_notify,
bridge_deh_get_info,
/* The following IO functions are provided by chnl_io.lib: */
bridge_io_create,
bridge_io_destroy,
Expand Down
15 changes: 0 additions & 15 deletions trunk/drivers/staging/tidspbridge/core/ue_deh.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,18 +262,3 @@ void bridge_deh_notify(struct deh_mgr *deh_mgr, u32 ulEventMask, u32 dwErrInfo)
*/
dsp_wdt_enable(false);
}

int bridge_deh_get_info(struct deh_mgr *deh_mgr,
struct dsp_errorinfo *pErrInfo)
{
if (!deh_mgr)
return -EFAULT;

/* Copy DEH error info structure to PROC error info structure. */
pErrInfo->dw_err_mask = deh_mgr->err_info.dw_err_mask;
pErrInfo->dw_val1 = deh_mgr->err_info.dw_val1;
pErrInfo->dw_val2 = deh_mgr->err_info.dw_val2;
pErrInfo->dw_val3 = deh_mgr->err_info.dw_val3;

return 0;
}
19 changes: 0 additions & 19 deletions trunk/drivers/staging/tidspbridge/include/dspbridge/dspdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -774,24 +774,6 @@ typedef int(*fxn_deh_registernotify)
(struct deh_mgr *hdeh_mgr,
u32 event_mask, u32 notify_type, struct dsp_notification *hnotification);

/*
* ======== bridge_deh_get_info ========
* Purpose:
* Get DSP exception info.
* Parameters:
* phDehMgr: Location to store DEH manager on output.
* pErrInfo: Ptr to error info structure.
* Returns:
* 0: Success.
* -EPERM: Creation failed.
* Requires:
* phDehMgr != NULL;
* pErrorInfo != NULL;
* Ensures:
*/
typedef int(*fxn_deh_getinfo) (struct deh_mgr *phDehMgr,
struct dsp_errorinfo *pErrInfo);

/*
* ======== bridge_io_create ========
* Purpose:
Expand Down Expand Up @@ -1082,7 +1064,6 @@ struct bridge_drv_interface {
fxn_deh_notify pfn_deh_notify; /* Notify of DSP error */
/* register for deh notif. */
fxn_deh_registernotify pfn_deh_register_notify;
fxn_deh_getinfo pfn_deh_get_info; /* register for deh notif. */
fxn_io_create pfn_io_create; /* Create IO manager */
fxn_io_destroy pfn_io_destroy; /* Destroy IO manager */
fxn_io_onloaded pfn_io_on_loaded; /* Notify of program loaded */
Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/staging/tidspbridge/include/dspbridge/dspdeh.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ extern int bridge_deh_create(struct deh_mgr **ret_deh_mgr,

extern int bridge_deh_destroy(struct deh_mgr *deh_mgr);

extern int bridge_deh_get_info(struct deh_mgr *deh_mgr,
struct dsp_errorinfo *pErrInfo);

extern int bridge_deh_register_notify(struct deh_mgr *deh_mgr,
u32 event_mask,
u32 notify_type,
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/staging/tidspbridge/pmgr/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,6 @@ static void store_interface_fxns(struct bridge_drv_interface *drv_fxns,
STORE_FXN(fxn_deh_destroy, pfn_deh_destroy);
STORE_FXN(fxn_deh_notify, pfn_deh_notify);
STORE_FXN(fxn_deh_registernotify, pfn_deh_register_notify);
STORE_FXN(fxn_deh_getinfo, pfn_deh_get_info);
STORE_FXN(fxn_io_create, pfn_io_create);
STORE_FXN(fxn_io_destroy, pfn_io_destroy);
STORE_FXN(fxn_io_onloaded, pfn_io_on_loaded);
Expand Down Expand Up @@ -1160,7 +1159,6 @@ static void store_interface_fxns(struct bridge_drv_interface *drv_fxns,
DBC_ENSURE(intf_fxns->pfn_deh_destroy != NULL);
DBC_ENSURE(intf_fxns->pfn_deh_notify != NULL);
DBC_ENSURE(intf_fxns->pfn_deh_register_notify != NULL);
DBC_ENSURE(intf_fxns->pfn_deh_get_info != NULL);
DBC_ENSURE(intf_fxns->pfn_io_create != NULL);
DBC_ENSURE(intf_fxns->pfn_io_destroy != NULL);
DBC_ENSURE(intf_fxns->pfn_io_on_loaded != NULL);
Expand Down
6 changes: 0 additions & 6 deletions trunk/drivers/staging/tidspbridge/rmgr/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,6 @@ int proc_get_state(void *hprocessor,
int status = 0;
struct proc_object *p_proc_object = (struct proc_object *)hprocessor;
int brd_status;
struct deh_mgr *hdeh_mgr;

DBC_REQUIRE(refs > 0);
DBC_REQUIRE(proc_state_obj != NULL);
Expand Down Expand Up @@ -1003,11 +1002,6 @@ int proc_get_state(void *hprocessor,
break;
}
}
/* Next, retrieve error information, if any */
status = dev_get_deh_mgr(p_proc_object->hdev_obj, &hdeh_mgr);
if (DSP_SUCCEEDED(status) && hdeh_mgr)
status = (*p_proc_object->intf_fxns->pfn_deh_get_info)
(hdeh_mgr, &(proc_state_obj->err_info));
} else {
status = -EFAULT;
}
Expand Down

0 comments on commit b879ab0

Please sign in to comment.