Merge pull request #64 from HiGarfield/for-kernel-version-from-4.1.0

exfat: fix ALIGN_DOWN undefined error
This commit is contained in:
Namjae Jeon 2023-12-30 10:15:32 +09:00 committed by GitHub
commit 68072a2dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,10 @@
#error "BITS_PER_LONG not 32 or 64"
#endif
#ifndef ALIGN_DOWN
#define ALIGN_DOWN(x, a) __ALIGN_KERNEL((x) - ((a) - 1), (a))
#endif
/*
* Allocation Bitmap Management Functions
*/