Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b77ca66 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: pata_rdc: remove DRIVER macros



They are not needed, and the version one was pointless now that the code
is merged into the tree.

Cc: Kevin Huang  <Kevin.Huang@rdc.com.tw>
Cc: Tomy Wang <Tomy.Wang@rdc.com.tw>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent da9dbc00
Loading
Loading
Loading
Loading
+2 −12
Original line number Original line Diff line number Diff line
@@ -10,15 +10,6 @@


#include "pata_rdc.h"
#include "pata_rdc.h"


/* Driver Info. */
#define DRIVER_NAME         "pata_rdc"	/* sata_rdc for SATA */
#define DRIVER_VERSION      "2.6.28"    /* based on kernel version. */
					/* because each kernel main version has
					 * its libata, we follow kernel to
					 * determine the last libata version.
					 */


static const struct pci_device_id rdc_pata_id_table[] = {
static const struct pci_device_id rdc_pata_id_table[] = {
	{ PCI_DEVICE(0x17F3, 0x1011), RDC_17F31011},
	{ PCI_DEVICE(0x17F3, 0x1011), RDC_17F31011},
	{ PCI_DEVICE(0x17F3, 0x1012), RDC_17F31012},
	{ PCI_DEVICE(0x17F3, 0x1012), RDC_17F31012},
@@ -940,7 +931,7 @@ static void rdc_pata_set_dmamode(struct ata_port *ap, struct ata_device *adev)


/* pata host template */
/* pata host template */
static struct scsi_host_template rdc_pata_sht = {
static struct scsi_host_template rdc_pata_sht = {
	ATA_BMDMA_SHT(DRIVER_NAME),
	ATA_BMDMA_SHT(KBUILD_MODNAME),
};
};


static struct ata_port_operations rdc_pata_ops = {
static struct ata_port_operations rdc_pata_ops = {
@@ -1000,7 +991,7 @@ static int __devinit rdc_init_one(struct pci_dev *pdev,


/* a pci driver */
/* a pci driver */
static struct pci_driver rdc_pata_driver = {
static struct pci_driver rdc_pata_driver = {
	.name		= DRIVER_NAME,
	.name		= KBUILD_MODNAME,
	.id_table	= rdc_pata_id_table,
	.id_table	= rdc_pata_id_table,
	.probe		= rdc_init_one,
	.probe		= rdc_init_one,
	.remove		= ata_pci_remove_one,
	.remove		= ata_pci_remove_one,
@@ -1025,4 +1016,3 @@ module_exit(pata_rdc_exit);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("RDC PCI IDE Driver");
MODULE_DESCRIPTION("RDC PCI IDE Driver");
MODULE_VERSION(DRIVER_VERSION);