mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
Replace __attribute_pure__ with __pure
To be consistent with the use of attributes in the rest of the kernel replace all use of __attribute_pure__ with __pure and delete the definition of __attribute_pure__. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Cc: Russell King <rmk@arm.linux.org.uk> Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org> Cc: Bryan Wu <bryan.wu@analog.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c80544dc0b
commit
e8c44319c6
8 changed files with 27 additions and 31 deletions
|
@ -66,7 +66,7 @@ EXPORT_SYMBOL(crc32c_le);
|
|||
* loop below with crc32 and vary the POLY if we don't find value in terms
|
||||
* of space and maintainability in keeping the two modules separate.
|
||||
*/
|
||||
u32 __attribute_pure__
|
||||
u32 __pure
|
||||
crc32c_le(u32 crc, unsigned char const *p, size_t len)
|
||||
{
|
||||
int i;
|
||||
|
@ -160,7 +160,7 @@ static const u32 crc32c_table[256] = {
|
|||
* crc using table.
|
||||
*/
|
||||
|
||||
u32 __attribute_pure__
|
||||
u32 __pure
|
||||
crc32c_le(u32 seed, unsigned char const *data, size_t length)
|
||||
{
|
||||
u32 crc = __cpu_to_le32(seed);
|
||||
|
@ -177,7 +177,7 @@ crc32c_le(u32 seed, unsigned char const *data, size_t length)
|
|||
EXPORT_SYMBOL(crc32c_be);
|
||||
|
||||
#if CRC_BE_BITS == 1
|
||||
u32 __attribute_pure__
|
||||
u32 __pure
|
||||
crc32c_be(u32 crc, unsigned char const *p, size_t len)
|
||||
{
|
||||
int i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue