oxygen_io.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) oxygen_io.c (d81a6d71760c4d8323f1f9a506c64084caa09063)
1/*
2 * C-Media CMI8788 driver - helper functions
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 *
6 *
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2.

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

14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this driver; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/delay.h>
21#include <linux/sched.h>
1/*
2 * C-Media CMI8788 driver - helper functions
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 *
6 *
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2.

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

14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this driver; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/delay.h>
21#include <linux/sched.h>
22#include <linux/export.h>
22#include <sound/core.h>
23#include <sound/mpu401.h>
24#include <asm/io.h>
25#include "oxygen.h"
26
27u8 oxygen_read8(struct oxygen *chip, unsigned int reg)
28{
29 return inb(chip->addr + reg);

--- 249 unchanged lines hidden ---
23#include <sound/core.h>
24#include <sound/mpu401.h>
25#include <asm/io.h>
26#include "oxygen.h"
27
28u8 oxygen_read8(struct oxygen *chip, unsigned int reg)
29{
30 return inb(chip->addr + reg);

--- 249 unchanged lines hidden ---