staging: unisys: Fix ULTRA_VBUS_DEVICEINFO
authorBenjamin Romer <benjamin.romer@unisys.com>
Fri, 3 Oct 2014 18:09:18 +0000 (14:09 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Oct 2014 02:29:06 +0000 (10:29 +0800)
Remove the typedef from ULTRA_VBUS_DEVICEINFO and use struct
ultra_vbus_deviceinfo instead. Fix CamelCase member names:

devType => devtype
drvName => drvname
infoStrings => infostrs

Fix indentation on function definitions that were affected by the
structure's name change.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/common-spar/include/channels/vbuschannel.h
drivers/staging/unisys/common-spar/include/vbusdeviceinfo.h
drivers/staging/unisys/include/uisutils.h
drivers/staging/unisys/include/vbushelper.h
drivers/staging/unisys/uislib/uisutils.c
drivers/staging/unisys/virtpci/virtpci.c
drivers/staging/unisys/visorchipset/visorchipset.h
drivers/staging/unisys/visorchipset/visorchipset_main.c

index 20e0753af94589e1773735e9d89ed26c08425d67..5b854243bcaffc28a1c17b16c722710e2c4fcb3d 100644 (file)
@@ -79,13 +79,12 @@ struct ultra_vbus_channel_protocol {
        ULTRA_CHANNEL_PROTOCOL ChannelHeader;   /* initialized by server */
        ULTRA_VBUS_HEADERINFO HdrInfo;  /* initialized by server */
        /* the remainder of this channel is filled in by the client */
-       ULTRA_VBUS_DEVICEINFO ChpInfo;  /* describes client chipset device and
-                                        * driver */
-       ULTRA_VBUS_DEVICEINFO BusInfo;  /* describes client bus device and
-                                        * driver */
-       ULTRA_VBUS_DEVICEINFO DevInfo[0];       /* describes client device and
-                                                * driver for */
-       /* each device on the bus */
+       struct ultra_vbus_deviceinfo ChpInfo;
+       /* describes client chipset device and driver */
+       struct ultra_vbus_deviceinfo BusInfo;
+       /* describes client bus device and driver */
+       struct ultra_vbus_deviceinfo DevInfo[0];
+       /* describes client device and driver for each device on the bus */
 };
 
 #define VBUS_CH_SIZE_EXACT(MAXDEVICES) \
index 3bbdc2bb7ebf9509dbefde272480e46cc034a376..f13dddc1b5c823fd14002dc6a94d6545eb0e3673 100644 (file)
  * It is filled in by the client side to provide info about the device
  * and driver from the client's perspective.
  */
-typedef struct _ULTRA_VBUS_DEVICEINFO {
-       u8 devType[16];         /* short string identifying the device type */
-       u8 drvName[16];         /* driver .sys file name */
-       u8 infoStrings[96];     /* sequence of tab-delimited id strings: */
+struct ultra_vbus_deviceinfo {
+       u8 devtype[16];         /* short string identifying the device type */
+       u8 drvname[16];         /* driver .sys file name */
+       u8 infostrs[96];        /* sequence of tab-delimited id strings: */
        /* <DRIVER_REV> <DRIVER_VERTAG> <DRIVER_COMPILETIME> */
        u8 reserved[128];       /* pad size to 256 bytes */
-} ULTRA_VBUS_DEVICEINFO;
+};
 
 #pragma pack(pop)
 
@@ -147,15 +147,15 @@ vbuschannel_itoa(char *p, int remain, int num)
  * Returns the number of bytes written to <p>.
  */
 static inline int
-vbuschannel_devinfo_to_string(ULTRA_VBUS_DEVICEINFO *devinfo,
+vbuschannel_devinfo_to_string(struct ultra_vbus_deviceinfo *devinfo,
                                  char *p, int remain, int devix)
 {
        char *psrc;
        int nsrc, x, i, pad;
        int chars = 0;
 
-       psrc = &(devinfo->devType[0]);
-       nsrc = sizeof(devinfo->devType);
+       psrc = &(devinfo->devtype[0]);
+       nsrc = sizeof(devinfo->devtype);
        if (vbuschannel_sanitize_buffer(NULL, 0, psrc, nsrc) <= 0)
                return 0;
 
@@ -184,8 +184,8 @@ vbuschannel_devinfo_to_string(ULTRA_VBUS_DEVICEINFO *devinfo,
        VBUSCHANNEL_ADDACHAR(' ', p, remain, chars);
 
        /* emit driver name */
-       psrc = &(devinfo->drvName[0]);
-       nsrc = sizeof(devinfo->drvName);
+       psrc = &(devinfo->drvname[0]);
+       nsrc = sizeof(devinfo->drvname);
        x = vbuschannel_sanitize_buffer(p, remain, psrc, nsrc);
        p += x;
        remain -= x;
@@ -196,8 +196,8 @@ vbuschannel_devinfo_to_string(ULTRA_VBUS_DEVICEINFO *devinfo,
        VBUSCHANNEL_ADDACHAR(' ', p, remain, chars);
 
        /* emit strings */
-       psrc = &(devinfo->infoStrings[0]);
-       nsrc = sizeof(devinfo->infoStrings);
+       psrc = &(devinfo->infostrs[0]);
+       nsrc = sizeof(devinfo->infostrs);
        x = vbuschannel_sanitize_buffer(p, remain, psrc, nsrc);
        p += x;
        remain -= x;
index 5f249dc55c680ba587e95d5fa5ec55c4fa5ba748..b47543bef71b9dc61f640a59c1779f24fcaa1a52 100644 (file)
@@ -114,18 +114,18 @@ int uisutil_add_proc_line_ex(int *total, char **buffer, int *buffer_remaining,
                             char *format, ...);
 
 int uisctrl_register_req_handler(int type, void *fptr,
-                                ULTRA_VBUS_DEVICEINFO *chipset_driver_info);
+                       struct ultra_vbus_deviceinfo *chipset_driver_info);
 int uisctrl_register_req_handler_ex(uuid_le switch_guid,
-                                   const char *switch_type_name,
-                                   int (*fptr)(struct io_msgs *),
-                                   unsigned long min_channel_bytes,
-                                   int (*svr_channel_ok)(unsigned long
-                                                   channel_bytes),
-                                   int (*svr_channel_init)(void *x,
-                                                   unsigned char *client_str,
-                                                   u32 client_str_len,
-                                                   u64 bytes),
-                                   ULTRA_VBUS_DEVICEINFO *chipset_driver_info);
+                       const char *switch_type_name,
+                       int (*fptr)(struct io_msgs *),
+                       unsigned long min_channel_bytes,
+                       int (*svr_channel_ok)(unsigned long
+                                             channel_bytes),
+                       int (*svr_channel_init)(void *x,
+                                               unsigned char *client_str,
+                                               u32 client_str_len,
+                                               u64 bytes),
+                       struct ultra_vbus_deviceinfo *chipset_driver_info);
 
 int uisctrl_unregister_req_handler_ex(uuid_le switch_uuid);
 unsigned char *util_map_virt(struct phys_info *sg);
index 1bde549ec0df84f186b2e9736b9caa2823039f33..84abe5f99f54429f7786623a7cf476fb19a04941 100644 (file)
 #define TARGET_HOSTNAME "linuxguest"
 
 static inline void bus_device_info_init(
-               ULTRA_VBUS_DEVICEINFO * bus_device_info_ptr,
+               struct ultra_vbus_deviceinfo *bus_device_info_ptr,
                const char *dev_type, const char *drv_name,
                const char *ver, const char *ver_tag)
 {
-       memset(bus_device_info_ptr, 0, sizeof(ULTRA_VBUS_DEVICEINFO));
-       snprintf(bus_device_info_ptr->devType,
-                sizeof(bus_device_info_ptr->devType),
+       memset(bus_device_info_ptr, 0, sizeof(struct ultra_vbus_deviceinfo));
+       snprintf(bus_device_info_ptr->devtype,
+                sizeof(bus_device_info_ptr->devtype),
                 "%s", (dev_type) ? dev_type : "unknownType");
-       snprintf(bus_device_info_ptr->drvName,
-                sizeof(bus_device_info_ptr->drvName),
+       snprintf(bus_device_info_ptr->drvname,
+                sizeof(bus_device_info_ptr->drvname),
                 "%s", (drv_name) ? drv_name : "unknownDriver");
-       snprintf(bus_device_info_ptr->infoStrings,
-                sizeof(bus_device_info_ptr->infoStrings), "%s\t%s\t%s",
+       snprintf(bus_device_info_ptr->infostrs,
+                sizeof(bus_device_info_ptr->infostrs), "%s\t%s\t%s",
                 (ver) ? ver : "unknownVer",
                 (ver_tag) ? ver_tag : "unknownVerTag",
                 TARGET_HOSTNAME);
index 31f517aa141fdbec8929ca0fe58e53be0715e33b..a8466e30c22a155f27a6d2e7a7684a0a8582199d 100644 (file)
@@ -75,7 +75,7 @@ EXPORT_SYMBOL_GPL(uisutil_add_proc_line_ex);
 
 int
 uisctrl_register_req_handler(int type, void *fptr,
-                            ULTRA_VBUS_DEVICEINFO *chipset_driver_info)
+                            struct ultra_vbus_deviceinfo *chipset_driver_info)
 {
        LOGINF("type = %d, fptr = 0x%p.\n", type, fptr);
 
@@ -106,15 +106,14 @@ EXPORT_SYMBOL_GPL(uisctrl_register_req_handler);
 
 int
 uisctrl_register_req_handler_ex(uuid_le switch_uuid,
-                               const char *switch_type_name,
-                               int (*controlfunc)(struct io_msgs *),
-                               unsigned long min_channel_bytes,
-                               int (*server_channel_ok)(unsigned long
-                                                         channel_bytes),
-                               int (*server_channel_init)(void *x,
+                       const char *switch_type_name,
+                       int (*controlfunc)(struct io_msgs *),
+                       unsigned long min_channel_bytes,
+                       int (*server_channel_ok)(unsigned long channel_bytes),
+                       int (*server_channel_init)(void *x,
                                                unsigned char *client_str,
                                                u32 client_str_len, u64 bytes),
-                               ULTRA_VBUS_DEVICEINFO *chipset_driver_info)
+                       struct ultra_vbus_deviceinfo *chipset_driver_info)
 {
        struct req_handler_info *pReqHandlerInfo;
        int rc = 0;             /* assume failure */
index 83f1a00c6bed204fb9bae51f11caebd001454070..73d4329f9a4aacd4846d219a534acffd3f0d0983 100644 (file)
@@ -137,7 +137,7 @@ static struct device virtpci_rootbus_device = {
 };
 
 /* filled in with info about parent chipset driver when we register with it */
-static ULTRA_VBUS_DEVICEINFO Chipset_DriverInfo;
+static struct ultra_vbus_deviceinfo Chipset_DriverInfo;
 
 static const struct sysfs_ops virtpci_driver_sysfs_ops = {
        .show = virtpci_driver_attr_show,
@@ -152,7 +152,7 @@ static struct virtpci_dev *VpcidevListHead;
 static DEFINE_RWLOCK(VpcidevListLock);
 
 /* filled in with info about this driver, wrt it servicing client busses */
-static ULTRA_VBUS_DEVICEINFO Bus_DriverInfo;
+static struct ultra_vbus_deviceinfo Bus_DriverInfo;
 
 /*****************************************************/
 /* debugfs entries                                   */
@@ -187,7 +187,7 @@ int WAIT_FOR_IO_CHANNEL(ULTRA_IO_CHANNEL_PROTOCOL __iomem  *chanptr)
 
 /* Write the contents of <info> to the ULTRA_VBUS_CHANNEL_PROTOCOL.ChpInfo. */
 static int write_vbus_chpInfo(struct ultra_vbus_channel_protocol *chan,
-                             ULTRA_VBUS_DEVICEINFO *info)
+                             struct ultra_vbus_deviceinfo *info)
 {
        int off;
 
@@ -206,7 +206,7 @@ static int write_vbus_chpInfo(struct ultra_vbus_channel_protocol *chan,
 
 /* Write the contents of <info> to the ULTRA_VBUS_CHANNEL_PROTOCOL.BusInfo. */
 static int write_vbus_busInfo(struct ultra_vbus_channel_protocol *chan,
-                             ULTRA_VBUS_DEVICEINFO *info)
+                             struct ultra_vbus_deviceinfo *info)
 {
        int off;
 
@@ -228,7 +228,7 @@ static int write_vbus_busInfo(struct ultra_vbus_channel_protocol *chan,
  */
 static int
 write_vbus_devInfo(struct ultra_vbus_channel_protocol *chan,
-                  ULTRA_VBUS_DEVICEINFO *info, int devix)
+                  struct ultra_vbus_deviceinfo *info, int devix)
 {
        int off;
 
@@ -760,7 +760,7 @@ static void fix_vbus_devInfo(struct device *dev, int devNo, int devType,
 {
        struct device *vbus;
        void *pChan;
-       ULTRA_VBUS_DEVICEINFO devInfo;
+       struct ultra_vbus_deviceinfo devInfo;
        const char *stype;
 
        if (!dev) {
index af35728a7e1d3f65bd1b28879c818f3d21367668..23834765a468e3fb1e0297db83b0b234855bea8d 100644 (file)
@@ -254,7 +254,7 @@ typedef struct {
 void
 visorchipset_register_busdev_client(VISORCHIPSET_BUSDEV_NOTIFIERS *notifiers,
                                    VISORCHIPSET_BUSDEV_RESPONDERS *responders,
-                                   ULTRA_VBUS_DEVICEINFO *driverInfo);
+                                   struct ultra_vbus_deviceinfo *driverInfo);
 
 /** Register functions (in the bus driver) to get called by visorchipset
  *  whenever a bus or device appears for which this service partition is
@@ -265,7 +265,7 @@ visorchipset_register_busdev_client(VISORCHIPSET_BUSDEV_NOTIFIERS *notifiers,
 void
 visorchipset_register_busdev_server(VISORCHIPSET_BUSDEV_NOTIFIERS *notifiers,
                                    VISORCHIPSET_BUSDEV_RESPONDERS *responders,
-                                   ULTRA_VBUS_DEVICEINFO *driverInfo);
+                                   struct ultra_vbus_deviceinfo *driverInfo);
 
 typedef void (*SPARREPORTEVENT_COMPLETE_FUNC) (CONTROLVM_MESSAGE *msg,
                                               int status);
index e5df39554a1a4281286e45a6a687e504c5cd7fed..ce4e731a2e4ac71188cf2f4015f857993e5aeeba 100644 (file)
@@ -587,7 +587,7 @@ clear_chipset_events(void)
 void
 visorchipset_register_busdev_server(VISORCHIPSET_BUSDEV_NOTIFIERS *notifiers,
                                    VISORCHIPSET_BUSDEV_RESPONDERS *responders,
-                                   ULTRA_VBUS_DEVICEINFO *driverInfo)
+                                   struct ultra_vbus_deviceinfo *driverInfo)
 {
        down(&NotifierLock);
        if (notifiers == NULL) {
@@ -611,7 +611,7 @@ EXPORT_SYMBOL_GPL(visorchipset_register_busdev_server);
 void
 visorchipset_register_busdev_client(VISORCHIPSET_BUSDEV_NOTIFIERS *notifiers,
                                    VISORCHIPSET_BUSDEV_RESPONDERS *responders,
-                                   ULTRA_VBUS_DEVICEINFO *driverInfo)
+                                   struct ultra_vbus_deviceinfo *driverInfo)
 {
        down(&NotifierLock);
        if (notifiers == NULL) {
This page took 0.032656 seconds and 5 git commands to generate.