1 /* MN10300 Non-trivial bit operations
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #include <linux/module.h>
12 #include <asm/bitops.h>
15 * try flipping a bit using BSET and BCLR
17 void change_bit(unsigned long nr, volatile void *addr)
19 if (test_bit(nr, addr))
23 if (!test_and_set_bit(nr, addr))
27 if (test_and_clear_bit(nr, addr))
34 * try flipping a bit using BSET and BCLR and returning the old value
36 int test_and_change_bit(unsigned long nr, volatile void *addr)
38 if (test_bit(nr, addr))
42 if (!test_and_set_bit(nr, addr))
46 if (test_and_clear_bit(nr, addr))