~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/staging/tidspbridge/pmgr/chnl.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
                struct bridge_drv_interface *intf_fxns;
88
88
                dev_get_intf_fxns(hdev_obj, &intf_fxns);
89
89
                /* Let Bridge channel module finish the create: */
90
 
                status = (*intf_fxns->pfn_chnl_create) (&hchnl_mgr, hdev_obj,
 
90
                status = (*intf_fxns->chnl_create) (&hchnl_mgr, hdev_obj,
91
91
                                                        mgr_attrts);
92
92
                if (!status) {
93
93
                        /* Fill in DSP API channel module's fields of the
120
120
        if (chnl_mgr_obj) {
121
121
                intf_fxns = chnl_mgr_obj->intf_fxns;
122
122
                /* Let Bridge channel module destroy the chnl_mgr: */
123
 
                status = (*intf_fxns->pfn_chnl_destroy) (hchnl_mgr);
 
123
                status = (*intf_fxns->chnl_destroy) (hchnl_mgr);
124
124
        } else {
125
125
                status = -EFAULT;
126
126
        }