浏览代码

remoteproc: fix bare unsigned type usage

While there is nothing wrong with defining an unsigned integer
variable or argument using the bare unsigned type, it is better
to use the checkpatch preferred 'unsigned int' type.

Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Anna, Suman 9 年之前
父节点
当前提交
f145928d49
共有 2 个文件被更改,包括 7 次插入7 次删除
  1. 6 6
      drivers/remoteproc/remoteproc_virtio.c
  2. 1 1
      include/linux/remoteproc.h

+ 6 - 6
drivers/remoteproc/remoteproc_virtio.c

@@ -69,7 +69,7 @@ irqreturn_t rproc_vq_interrupt(struct rproc *rproc, int notifyid)
 EXPORT_SYMBOL(rproc_vq_interrupt);
 EXPORT_SYMBOL(rproc_vq_interrupt);
 
 
 static struct virtqueue *rp_find_vq(struct virtio_device *vdev,
 static struct virtqueue *rp_find_vq(struct virtio_device *vdev,
-				    unsigned id,
+				    unsigned int id,
 				    void (*callback)(struct virtqueue *vq),
 				    void (*callback)(struct virtqueue *vq),
 				    const char *name)
 				    const char *name)
 {
 {
@@ -144,7 +144,7 @@ static void rproc_virtio_del_vqs(struct virtio_device *vdev)
 	__rproc_virtio_del_vqs(vdev);
 	__rproc_virtio_del_vqs(vdev);
 }
 }
 
 
-static int rproc_virtio_find_vqs(struct virtio_device *vdev, unsigned nvqs,
+static int rproc_virtio_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
 		       struct virtqueue *vqs[],
 		       struct virtqueue *vqs[],
 		       vq_callback_t *callbacks[],
 		       vq_callback_t *callbacks[],
 		       const char * const names[])
 		       const char * const names[])
@@ -239,8 +239,8 @@ static int rproc_virtio_finalize_features(struct virtio_device *vdev)
 	return 0;
 	return 0;
 }
 }
 
 
-static void rproc_virtio_get(struct virtio_device *vdev, unsigned offset,
-							void *buf, unsigned len)
+static void rproc_virtio_get(struct virtio_device *vdev, unsigned int offset,
+			     void *buf, unsigned int len)
 {
 {
 	struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
 	struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
 	struct fw_rsc_vdev *rsc;
 	struct fw_rsc_vdev *rsc;
@@ -257,8 +257,8 @@ static void rproc_virtio_get(struct virtio_device *vdev, unsigned offset,
 	memcpy(buf, cfg + offset, len);
 	memcpy(buf, cfg + offset, len);
 }
 }
 
 
-static void rproc_virtio_set(struct virtio_device *vdev, unsigned offset,
-		      const void *buf, unsigned len)
+static void rproc_virtio_set(struct virtio_device *vdev, unsigned int offset,
+			     const void *buf, unsigned int len)
 {
 {
 	struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
 	struct rproc_vdev *rvdev = vdev_to_rvdev(vdev);
 	struct fw_rsc_vdev *rsc;
 	struct fw_rsc_vdev *rsc;

+ 1 - 1
include/linux/remoteproc.h

@@ -435,7 +435,7 @@ struct rproc {
 	struct idr notifyids;
 	struct idr notifyids;
 	int index;
 	int index;
 	struct work_struct crash_handler;
 	struct work_struct crash_handler;
-	unsigned crash_cnt;
+	unsigned int crash_cnt;
 	struct completion crash_comp;
 	struct completion crash_comp;
 	bool recovery_disabled;
 	bool recovery_disabled;
 	int max_notifyid;
 	int max_notifyid;