mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 10:17:47 +07:00
f4f6a4a48b
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this software 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 atmel wireless lan drivers if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 2 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190523091649.881590905@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*** -*- linux-c -*- **********************************************************
|
|
|
|
Driver for Atmel at76c502 at76c504 and at76c506 wireless cards.
|
|
|
|
Copyright 2004 Simon Kelley.
|
|
|
|
|
|
******************************************************************************/
|
|
#include <linux/pci.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/netdevice.h>
|
|
#include "atmel.h"
|
|
|
|
MODULE_AUTHOR("Simon Kelley");
|
|
MODULE_DESCRIPTION("Support for Atmel at76c50x 802.11 wireless ethernet cards.");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_SUPPORTED_DEVICE("Atmel at76c506 PCI wireless cards");
|
|
|
|
static const struct pci_device_id card_ids[] = {
|
|
{ 0x1114, 0x0506, PCI_ANY_ID, PCI_ANY_ID },
|
|
{ 0, }
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(pci, card_ids);
|
|
|
|
static int atmel_pci_probe(struct pci_dev *, const struct pci_device_id *);
|
|
static void atmel_pci_remove(struct pci_dev *);
|
|
|
|
static struct pci_driver atmel_driver = {
|
|
.name = "atmel",
|
|
.id_table = card_ids,
|
|
.probe = atmel_pci_probe,
|
|
.remove = atmel_pci_remove,
|
|
};
|
|
|
|
|
|
static int atmel_pci_probe(struct pci_dev *pdev,
|
|
const struct pci_device_id *pent)
|
|
{
|
|
struct net_device *dev;
|
|
|
|
if (pci_enable_device(pdev))
|
|
return -ENODEV;
|
|
|
|
pci_set_master(pdev);
|
|
|
|
dev = init_atmel_card(pdev->irq, pdev->resource[1].start,
|
|
ATMEL_FW_TYPE_506,
|
|
&pdev->dev, NULL, NULL);
|
|
if (!dev) {
|
|
pci_disable_device(pdev);
|
|
return -ENODEV;
|
|
}
|
|
|
|
pci_set_drvdata(pdev, dev);
|
|
return 0;
|
|
}
|
|
|
|
static void atmel_pci_remove(struct pci_dev *pdev)
|
|
{
|
|
stop_atmel_card(pci_get_drvdata(pdev));
|
|
}
|
|
|
|
module_pci_driver(atmel_driver);
|