diff mbox series

[v4,4/4] uuid: Remove no more needed macro

Message ID 20200224153752.35063-5-andriy.shevchenko@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series btrfs: bypass UUID API aliasing | expand

Commit Message

Andy Shevchenko Feb. 24, 2020, 3:37 p.m. UTC
uuid_le_gen() is no used anymore, remove it for good.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 include/linux/uuid.h | 1 -
 1 file changed, 1 deletion(-)

Comments

Christoph Hellwig Feb. 24, 2020, 5:42 p.m. UTC | #1
On Mon, Feb 24, 2020 at 05:37:52PM +0200, Andy Shevchenko wrote:
> uuid_le_gen() is no used anymore, remove it for good.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Looks good,

Reviewed-by: Christoph Hellwig <hch@lst.de>
diff mbox series

Patch

diff --git a/include/linux/uuid.h b/include/linux/uuid.h
index 3780460a9a85..d41b0d3e9474 100644
--- a/include/linux/uuid.h
+++ b/include/linux/uuid.h
@@ -98,7 +98,6 @@  int guid_parse(const char *uuid, guid_t *u);
 int uuid_parse(const char *uuid, uuid_t *u);
 
 /* backwards compatibility, don't use in new code */
-#define uuid_le_gen(u)		guid_gen(u)
 #define uuid_le_to_bin(guid, u)	guid_parse(guid, u)
 
 static inline int uuid_le_cmp(const guid_t u1, const guid_t u2)