root/arch/sparc/kernel/ioport.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. sys_ioperm

   1 /* ioport.c:  I/O access on the Sparc. Work in progress.. Most of the things
   2  *            in this file are for the sole purpose of getting the kernel
   3  *            through the compiler. :-)
   4  *
   5  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
   6  */
   7 
   8 #include <linux/sched.h>
   9 #include <linux/kernel.h>
  10 #include <linux/errno.h>
  11 #include <linux/types.h>
  12 #include <linux/ioport.h>
  13 
  14 /*
  15  * this changes the io permissions bitmap in the current task.
  16  */
  17 asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
     /* [previous][next][first][last][top][bottom][index][help] */
  18 {
  19         return 0;
  20 }

/* [previous][next][first][last][top][bottom][index][help] */