diff options
author | Wei Wang <wei.w.wang@intel.com> | 2017-07-12 20:40:15 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2017-07-25 16:37:35 +0300 |
commit | f9aada5fff212913372410ae45c18c7c3cade67a (patch) | |
tree | 4b8834bf7b4f30e1bc118a0d69a958b4233b516f /drivers/virtio | |
parent | 195a8c43e93d8cec3256f4433f641bd4db35e23c (diff) | |
download | talos-obmc-linux-f9aada5fff212913372410ae45c18c7c3cade67a.tar.gz talos-obmc-linux-f9aada5fff212913372410ae45c18c7c3cade67a.zip |
virtio-balloon: coding format cleanup
Clean up the comment format.
Signed-off-by: Wei Wang <wei.w.wang@intel.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/virtio')
-rw-r--r-- | drivers/virtio/virtio_balloon.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 7f38ae687b08..f0b3a0b9d42f 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -132,8 +132,10 @@ static void set_page_pfns(struct virtio_balloon *vb, { unsigned int i; - /* Set balloon pfns pointing at this page. - * Note that the first pfn points at start of the page. */ + /* + * Set balloon pfns pointing at this page. + * Note that the first pfn points at start of the page. + */ for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++) pfns[i] = cpu_to_virtio32(vb->vdev, page_to_balloon_pfn(page) + i); |