}
 
 int
-chipset_bus_create(struct visor_device *dev)
+visorchipset_bus_create(struct visor_device *dev)
 {
        int err;
 
 }
 
 void
-chipset_bus_destroy(struct visor_device *dev)
+visorchipset_bus_destroy(struct visor_device *dev)
 {
        visorbus_remove_instance(dev);
        visorbus_destroy_response(dev, 0);
 
  * command line
  */
 
-int chipset_bus_create(struct visor_device *bus_info);
-void chipset_bus_destroy(struct visor_device *bus_info);
+int visorchipset_bus_create(struct visor_device *bus_info);
+void visorchipset_bus_destroy(struct visor_device *bus_info);
 int chipset_device_create(struct visor_device *dev_info);
 void chipset_device_destroy(struct visor_device *dev_info);
 int chipset_device_pause(struct visor_device *dev_info);
 
        }
        bus_info->visorchannel = visorchannel;
 
-       /* Response will be handled by chipset_bus_create */
-       err = chipset_bus_create(bus_info);
-       /* If error chipset_bus_create didn't respond, need to respond here */
+       /* Response will be handled by visorchipset_bus_create */
+       err = visorchipset_bus_create(bus_info);
+       /* If visorchipset_bus_create didn't respond, need to respond here */
        if (err)
                goto err_destroy_channel;
 
                bus_info->pending_msg_hdr = pmsg_hdr;
        }
 
-       /* Response will be handled by chipset_bus_destroy */
-       chipset_bus_destroy(bus_info);
+       /* Response will be handled by visorchipset_bus_destroy */
+       visorchipset_bus_destroy(bus_info);
        return 0;
 
 err_respond: