cregit-Linux how code gets into the kernel

Release 4.11 drivers/staging/rtl8712/rtl8712_io.c

/******************************************************************************
 * rtl8712_io.c
 *
 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
 * Linux device driver for RTL8192SU
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 * Modifications for inclusion into the Linux staging tree are
 * Copyright(c) 2010 Larry Finger. All rights reserved.
 *
 * Contact information:
 * WLAN FAE <wlanfae@realtek.com>.
 * Larry Finger <Larry.Finger@lwfinger.net>
 *
 ******************************************************************************/


#define _RTL8712_IO_C_

#include "osdep_service.h"
#include "drv_types.h"
#include "rtl871x_io.h"
#include "osdep_intf.h"
#include "usb_ops.h"


u8 r8712_read8(struct _adapter *adapter, u32 addr) { struct intf_hdl *hdl = &adapter->pio_queue->intf; return hdl->io_ops._read8(hdl, addr); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3183.78%150.00%
Mauro Dreissig616.22%150.00%
Total37100.00%2100.00%


u16 r8712_read16(struct _adapter *adapter, u32 addr) { struct intf_hdl *hdl = &adapter->pio_queue->intf; return hdl->io_ops._read16(hdl, addr); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3183.78%150.00%
Mauro Dreissig616.22%150.00%
Total37100.00%2100.00%


u32 r8712_read32(struct _adapter *adapter, u32 addr) { struct intf_hdl *hdl = &adapter->pio_queue->intf; return hdl->io_ops._read32(hdl, addr); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3183.78%150.00%
Mauro Dreissig616.22%150.00%
Total37100.00%2100.00%


void r8712_write8(struct _adapter *adapter, u32 addr, u8 val) { struct intf_hdl *hdl = &adapter->pio_queue->intf; hdl->io_ops._write8(hdl, addr, val); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3687.80%150.00%
Mauro Dreissig512.20%150.00%
Total41100.00%2100.00%


void r8712_write16(struct _adapter *adapter, u32 addr, u16 val) { struct intf_hdl *hdl = &adapter->pio_queue->intf; hdl->io_ops._write16(hdl, addr, val); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3687.80%150.00%
Mauro Dreissig512.20%150.00%
Total41100.00%2100.00%


void r8712_write32(struct _adapter *adapter, u32 addr, u32 val) { struct intf_hdl *hdl = &adapter->pio_queue->intf; hdl->io_ops._write32(hdl, addr, val); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger3687.80%150.00%
Mauro Dreissig512.20%150.00%
Total41100.00%2100.00%


void r8712_read_mem(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem) { struct intf_hdl *hdl = &adapter->pio_queue->intf; if (adapter->bDriverStopped || adapter->bSurpriseRemoved) return; hdl->io_ops._read_mem(hdl, addr, cnt, pmem); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger5391.38%150.00%
Mauro Dreissig58.62%150.00%
Total58100.00%2100.00%


void r8712_write_mem(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem) { struct intf_hdl *hdl = &adapter->pio_queue->intf; hdl->io_ops._write_mem(hdl, addr, cnt, pmem); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger4289.36%150.00%
Mauro Dreissig510.64%150.00%
Total47100.00%2100.00%


void r8712_read_port(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem) { struct intf_hdl *hdl = &adapter->pio_queue->intf; if (adapter->bDriverStopped || adapter->bSurpriseRemoved) return; hdl->io_ops._read_port(hdl, addr, cnt, pmem); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger5391.38%150.00%
Mauro Dreissig58.62%150.00%
Total58100.00%2100.00%


void r8712_write_port(struct _adapter *adapter, u32 addr, u32 cnt, u8 *pmem) { struct intf_hdl *hdl = &adapter->pio_queue->intf; hdl->io_ops._write_port(hdl, addr, cnt, pmem); }

Contributors

PersonTokensPropCommitsCommitProp
Larry Finger4289.36%150.00%
Mauro Dreissig510.64%150.00%
Total47100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Larry Finger41088.55%150.00%
Mauro Dreissig5311.45%150.00%
Total463100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.