}
return msg;
-};
+}
#if BITS_PER_LONG == 64
/**
osm_debug("%s: Add context to list %p -> %d\n", c->name, ptr, context);
return entry->context;
-};
+}
/**
* i2o_cntxt_list_remove - Remove a pointer from the context list
context, ptr);
return context;
-};
+}
/**
* i2o_cntxt_list_get - Get a pointer from the context list and remove it
ptr);
return ptr;
-};
+}
/**
* i2o_cntxt_list_get_ptr - Get a context id from the context list
ptr, context);
return context;
-};
+}
#endif
/**
}
return NULL;
-};
+}
/**
* i2o_iop_find_device - Find a I2O device on an I2O controller
return dev;
return NULL;
-};
+}
/**
* i2o_quiesce_controller - quiesce controller
i2o_status_get(c); // Entered READY state
return rc;
-};
+}
/**
* i2o_iop_enable - move controller from ready to OPERATIONAL
i2o_status_get(c); // entered OPERATIONAL state
return rc;
-};
+}
/**
* i2o_iop_quiesce_all - Quiesce all I2O controllers on the system
if (!c->no_quiesce)
i2o_iop_quiesce(c);
}
-};
+}
/**
* i2o_iop_enable_all - Enables all controllers on the system
list_for_each_entry_safe(c, tmp, &i2o_controllers, list)
i2o_iop_enable(c);
-};
+}
/**
* i2o_clear_controller - Bring I2O controller into HOLD state
i2o_iop_enable_all();
return rc;
-};
+}
/**
* i2o_iop_activate - Bring controller up to HOLD
}
return i2o_hrt_get(c);
-};
+}
static void i2o_res_alloc(struct i2o_controller *c, unsigned long flags)
{
return rc;
return 0;
-};
+}
/**
* i2o_iop_remove - Remove the I2O controller from the I2O core
systab->num_entries = count;
return 0;
-};
+}
/**
* i2o_parse_hrt - Parse the hardware resource table.
{
i2o_dump_hrt(c);
return 0;
-};
+}
/**
* i2o_status_get - Get the status block from the I2O controller
struct i2o_controller *c = to_i2o_controller(dev);
i2o_iop_free(c);
-};
+}
/**
* i2o_iop_alloc - Allocate and initialize a i2o_controller struct
I2O_MSG_INPOOL_MIN)) {
kfree(c);
return ERR_PTR(-ENOMEM);
- };
+ }
INIT_LIST_HEAD(&c->devices);
spin_lock_init(&c->lock);
#endif
return c;
-};
+}
/**
* i2o_iop_add - Initialize the I2O controller and add him to the I2O core
i2o_iop_reset(c);
return rc;
-};
+}
/**
* i2o_event_register - Turn on/off event notification for a I2O device
i2o_msg_post(c, msg);
return 0;
-};
+}
/**
* i2o_iop_init - I2O main initialization function
i2o_pci_exit();
i2o_exec_exit();
i2o_driver_exit();
-};
+}
module_init(i2o_iop_init);
module_exit(i2o_iop_exit);