- mark-pci_module_init-deprecated.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     mark pci_module_init() deprecated
has been removed from the -mm tree.  Its filename was
     mark-pci_module_init-deprecated.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: mark pci_module_init() deprecated
From: Henrik Kretzschmar <henne@xxxxxxxxxxxxxxxx>

This changes the pci_module_init macro into a static inline function,
which is marked as deprecated.

This should help developers of new drivers to use pci_register_driver().

Signed-off-by: Henrik Kretzschmar <henne@xxxxxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 include/linux/pci.h |   16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff -puN include/linux/pci.h~mark-pci_module_init-deprecated include/linux/pci.h
--- a/include/linux/pci.h~mark-pci_module_init-deprecated
+++ a/include/linux/pci.h
@@ -410,12 +410,6 @@ struct pci_driver {
 	.vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
 	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
 
-/*
- * pci_module_init is obsolete, this stays here till we fix up all usages of it
- * in the tree.
- */
-#define pci_module_init	pci_register_driver
-
 /**
  * PCI_VDEVICE - macro used to describe a specific pci device in short form
  * @vend: the vendor name
@@ -611,6 +605,16 @@ static inline int __must_check pci_regis
 	return __pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME);
 }
 
+/*
+ * pci_module_init is obsolete, this stays here till we fix up all usages of it
+ * in the tree.
+ */
+
+static inline int __deprecated pci_module_init(struct pci_driver* drv)
+{
+	return pci_register_driver(drv);
+}
+
 void pci_unregister_driver(struct pci_driver *);
 void pci_remove_behind_bridge(struct pci_dev *);
 struct pci_driver *pci_dev_driver(const struct pci_dev *);
_

Patches currently in -mm which might be from henne@xxxxxxxxxxxxxxxx are

git-scsi-misc.patch
pci_module_init-convertion-in-tmscsimc.patch
pci_module_init-convertion-for-k8_edacc.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux