mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-02 01:19:21 +00:00
bd9d6e0371
A recent cleanup patch removed the remaining users of dprintk() in
i82092.c, so get rid of the definition of dprintk() as well.
Fixes: 836e9494f4
("pcmcia/i82092: Refactored dprintk macro for dev_dbg().")
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
35 lines
1 KiB
C
35 lines
1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _INCLUDE_GUARD_i82092aa_H_
|
|
#define _INCLUDE_GUARD_i82092aa_H_
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
/* Debuging defines */
|
|
#ifdef NOTRACE
|
|
#define enter(x) printk("Enter: %s, %s line %i\n",x,__FILE__,__LINE__)
|
|
#define leave(x) printk("Leave: %s, %s line %i\n",x,__FILE__,__LINE__)
|
|
#else
|
|
#define enter(x) do {} while (0)
|
|
#define leave(x) do {} while (0)
|
|
#endif
|
|
|
|
|
|
|
|
/* prototypes */
|
|
|
|
static int i82092aa_pci_probe(struct pci_dev *dev, const struct pci_device_id *id);
|
|
static void i82092aa_pci_remove(struct pci_dev *dev);
|
|
static int card_present(int socketno);
|
|
static irqreturn_t i82092aa_interrupt(int irq, void *dev);
|
|
|
|
|
|
|
|
|
|
static int i82092aa_get_status(struct pcmcia_socket *socket, u_int *value);
|
|
static int i82092aa_set_socket(struct pcmcia_socket *socket, socket_state_t *state);
|
|
static int i82092aa_set_io_map(struct pcmcia_socket *socket, struct pccard_io_map *io);
|
|
static int i82092aa_set_mem_map(struct pcmcia_socket *socket, struct pccard_mem_map *mem);
|
|
static int i82092aa_init(struct pcmcia_socket *socket);
|
|
|
|
#endif
|
|
|