intdev.hh (11144:90eeefe7e341) intdev.hh (11320:42ecb523c64a)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 196 unchanged lines hidden (view full) ---

205 void
206 raise()
207 {
208 for (int i = 0; i < sinks.size(); i++) {
209 const IntSinkPin &pin = *sinks[i];
210 pin.device->raiseInterruptPin(pin.number);
211 }
212 }
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 196 unchanged lines hidden (view full) ---

205 void
206 raise()
207 {
208 for (int i = 0; i < sinks.size(); i++) {
209 const IntSinkPin &pin = *sinks[i];
210 pin.device->raiseInterruptPin(pin.number);
211 }
212 }
213
213
214 void
215 lower()
216 {
217 for (int i = 0; i < sinks.size(); i++) {
218 const IntSinkPin &pin = *sinks[i];
219 pin.device->lowerInterruptPin(pin.number);
220 }
221 }

--- 29 unchanged lines hidden ---
214 void
215 lower()
216 {
217 for (int i = 0; i < sinks.size(); i++) {
218 const IntSinkPin &pin = *sinks[i];
219 pin.device->lowerInterruptPin(pin.number);
220 }
221 }

--- 29 unchanged lines hidden ---