Commit db6e6ed77ec38506ffe842c8d419aebbb074f967
1 parent
57e4c06e
do not export fls_bit
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1529 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/apic.c
@@ -178,7 +178,7 @@ uint8_t cpu_get_apic_tpr(CPUX86State *env) | @@ -178,7 +178,7 @@ uint8_t cpu_get_apic_tpr(CPUX86State *env) | ||
178 | return s->tpr >> 4; | 178 | return s->tpr >> 4; |
179 | } | 179 | } |
180 | 180 | ||
181 | -int fls_bit(int value) | 181 | +static int fls_bit(int value) |
182 | { | 182 | { |
183 | unsigned int ret = 0; | 183 | unsigned int ret = 0; |
184 | 184 |