/* Register the carrier in the industry pack bus driver */
        tpci200->info->ipack_bus = ipack_bus_register(&pdev->dev,
                                                      TPCI200_NB_SLOT,
-                                                     &tpci200_bus_ops);
+                                                     &tpci200_bus_ops,
+                                                     THIS_MODULE);
        if (!tpci200->info->ipack_bus) {
                dev_err(&pdev->dev,
                        "error registering the carrier on ipack driver\n");
 
 };
 
 struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots,
-                                           const struct ipack_bus_ops *ops)
+                                           const struct ipack_bus_ops *ops,
+                                           struct module *owner)
 {
        int bus_nr;
        struct ipack_bus_device *bus;
        bus->parent = parent;
        bus->slots = slots;
        bus->ops = ops;
+       bus->owner = owner;
        return bus;
 }
 EXPORT_SYMBOL_GPL(ipack_bus_register);
 
  *     @ops: bus operations for the mezzanine drivers
  */
 struct ipack_bus_device {
+       struct module *owner;
        struct device *parent;
        int slots;
        int bus_nr;
  * available bus device in ipack.
  */
 struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots,
-                                           const struct ipack_bus_ops *ops);
+                                           const struct ipack_bus_ops *ops,
+                                           struct module *owner);
 
 /**
  *     ipack_bus_unregister -- unregister an ipack bus
         .format = (_format), \
         .vendor = (vend), \
         .device = (dev)
+
+/**
+ * ipack_get_carrier - it increase the carrier ref. counter of
+ *                     the carrier module
+ * @dev: mezzanine device which wants to get the carrier
+ */
+static inline int ipack_get_carrier(struct ipack_device *dev)
+{
+       return try_module_get(dev->bus->owner);
+}
+
+/**
+ * ipack_get_carrier - it decrease the carrier ref. counter of
+ *                     the carrier module
+ * @dev: mezzanine device which wants to get the carrier
+ */
+static inline void ipack_put_carrier(struct ipack_device *dev)
+{
+       module_put(dev->bus->owner);
+}