summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 64c1389)
raw | patch | inline | side by side (parent: 64c1389)
author | Chris Ring <cring@ti.com> | |
Tue, 12 Mar 2013 19:41:40 +0000 (12:41 -0700) | ||
committer | Chris Ring <cring@ti.com> | |
Tue, 12 Mar 2013 22:42:57 +0000 (15:42 -0700) |
Fix a bug in assigning the NotifyDriver's InterruptProxy.
This was exposed when validating with a newer version of XDC, which
[thankfully!] added some extra parameter checking in XDC 3.25.
This was exposed when validating with a newer version of XDC, which
[thankfully!] added some extra parameter checking in XDC 3.25.
packages/ti/ipc/tests/dual_transports.cfg | patch | blob | history |
index b4b9d215be3f78d5971742015a0f2fbb884fbeb8..e773e10c558562aae5f6c236831c46e2cb78fae3 100644 (file)
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * */
+ */
/*
var NotifyDriverShm =
xdc.useModule('ti.sdo.ipc.notifyDrivers.NotifyDriverShm');
var Interrupt = xdc.useModule('ti.ipc.family.tci6614.Interrupt');
- NotifyDriverShm.InterruptProxy = xdc.useModule(Interrupt);
+ NotifyDriverShm.InterruptProxy = Interrupt;
}
else if (Program.platformName.match(/simKepler/) ||
Program.cpu.deviceName.match(/^TMS320TCI6638$/)) {
var NotifyDriverCirc =
xdc.useModule('ti.sdo.ipc.notifyDrivers.NotifyDriverCirc');
var Interrupt = xdc.useModule('ti.ipc.family.tci6638.Interrupt');
- NotifyDriverCirc.InterruptProxy = xdc.useModule(Interrupt);
+ NotifyDriverCirc.InterruptProxy = Interrupt;
}
/*