Skip to content

Commit

Permalink
virtio: Replace long long int with long long
Browse files Browse the repository at this point in the history
This patch addresses the checkpatch.pl warning that long long is
preferred over long long int.

Signed-off-by: Solomon Tan <[email protected]>
Message-Id: <YlzTUQa06sP94zxB@ArchDesktop>
Signed-off-by: Michael S. Tsirkin <[email protected]>
  • Loading branch information
Solomon Tan authored and mstsirkin committed May 31, 2022
1 parent 3153234 commit 0619eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/virtio/virtio_mmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ static int vm_cmdline_set(const char *device,
int err;
struct resource resources[2] = {};
char *str;
long long int base, size;
long long base, size;
unsigned int irq;
int processed, consumed = 0;
struct platform_device *pdev;
Expand Down

0 comments on commit 0619eda

Please sign in to comment.