From 364e0dad2f4e95711cde0c038ac989170155033d Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 17 Mar 2025 10:04:29 +0000 Subject: [PATCH] ANDROID: virtio_balloon: Rename header guard in uapi header file This will allow introduction of a Linux-private header file with the usual guard name, which would currently conflict with this uapi header. Bug: 381400679 Bug: 357781595 Ignore-Checkpatch: Trivial change to a uapi header file with no SPDX line Change-Id: I0a4f949cfb539becab2f706c04562aecd16866b3 Signed-off-by: Keir Fraser --- include/uapi/linux/virtio_balloon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/uapi/linux/virtio_balloon.h b/include/uapi/linux/virtio_balloon.h index ee35a372805d..b61d04ef2a1f 100644 --- a/include/uapi/linux/virtio_balloon.h +++ b/include/uapi/linux/virtio_balloon.h @@ -1,5 +1,5 @@ -#ifndef _LINUX_VIRTIO_BALLOON_H -#define _LINUX_VIRTIO_BALLOON_H +#ifndef _UAPI_LINUX_VIRTIO_BALLOON_H +#define _UAPI_LINUX_VIRTIO_BALLOON_H /* This header is BSD licensed so anyone can use the definitions to implement * compatible drivers/servers. * @@ -128,4 +128,4 @@ struct virtio_balloon_stat { __virtio64 val; } __attribute__((packed)); -#endif /* _LINUX_VIRTIO_BALLOON_H */ +#endif /* _UAPI_LINUX_VIRTIO_BALLOON_H */