Subversion Repositories HelenOS-historic

Rev

Rev 1278 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1278 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup mips32ddi mips32
-
 
30
 * @ingroup ddi
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 */
-
 
35
 
29
#include <ddi/ddi.h>
36
#include <ddi/ddi.h>
30
#include <proc/task.h>
37
#include <proc/task.h>
31
#include <arch/types.h>
38
#include <arch/types.h>
32
#include <typedefs.h>
39
#include <typedefs.h>
33
#include <security/cap.h>
40
#include <security/cap.h>
Line 46... Line 53...
46
 */
53
 */
47
int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size)
54
int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size)
48
{
55
{
49
    return 0;
56
    return 0;
50
}
57
}
-
 
58
 
-
 
59
 /** @}
-
 
60
 */
-
 
61