};
 
 struct controller {
-       struct controller *next;
+       struct list_head ctrl_list;
        struct mutex crit_sect;         /* critical section mutex */
        struct php_ctlr_state_s *hpc_ctlr_handle; /* HPC controller handle */
        int num_slots;                  /* Number of slots on ctlr */
 
 
 /* Global variables */
-extern struct controller *shpchp_ctrl_list;
+extern struct list_head shpchp_ctrl_list;
 
 struct ctrl_reg {
        volatile u32 base_offset;
 
 int shpchp_debug;
 int shpchp_poll_mode;
 int shpchp_poll_time;
-struct controller *shpchp_ctrl_list;   /* = NULL */
+LIST_HEAD(shpchp_ctrl_list);
 
 #define DRIVER_VERSION "0.4"
 #define DRIVER_AUTHOR  "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
        /* Finish setting up the hot plug ctrl device */
        ctrl->next_event = 0;
 
-       if (!shpchp_ctrl_list) {
-               shpchp_ctrl_list = ctrl;
-               ctrl->next = NULL;
-       } else {
-               ctrl->next = shpchp_ctrl_list;
-               shpchp_ctrl_list = ctrl;
-       }
+       list_add(&ctrl->ctrl_list, &shpchp_ctrl_list);
 
        shpchp_create_ctrl_files(ctrl);
 
 
 static void __exit unload_shpchpd(void)
 {
+       struct list_head *tmp;
+       struct list_head *next;
        struct controller *ctrl;
-       struct controller *tctrl;
-
-       ctrl = shpchp_ctrl_list;
 
-       while (ctrl) {
+       list_for_each_safe(tmp, next, &shpchp_ctrl_list) {
+               ctrl = list_entry(tmp, struct controller, ctrl_list);
                shpchp_remove_ctrl_files(ctrl);
                cleanup_slots(ctrl);
-
                kfree (ctrl->pci_bus);
                ctrl->hpc_ops->release_ctlr(ctrl);
-
-               tctrl = ctrl;
-               ctrl = ctrl->next;
-
-               kfree(tctrl);
+               kfree(ctrl);
        }
 
        /* Stop the notification mechanism */
 
                if (pushbutton_pending)
                        shpchp_pushbutton_thread(pushbutton_pending);
                else
-                       for (ctrl = shpchp_ctrl_list; ctrl; ctrl=ctrl->next)
+                       list_for_each_entry(ctrl, &shpchp_ctrl_list, ctrl_list)
                                interrupt_event_handler(ctrl);
        }
        dbg("event_thread signals exit\n");