2.4.20pre5 trivial assembler warning fix for apm.c

Andreas Steinmetz (ast@domdv.de)
Thu, 05 Sep 2002 22:15:58 +0200


This is a multi-part message in MIME format.
--------------010709000505050902090001
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

trivial fix for "Warning: indirect lcall without `*'" assembler warnings
attached.

-- 
Andreas Steinmetz
D.O.M. Datenverarbeitung GmbH

--------------010709000505050902090001 Content-Type: text/plain; name="apm.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="apm.c.diff"

--- arch/i386/kernel/apm.c.orig 2002-09-05 22:09:58.000000000 +0200 +++ arch/i386/kernel/apm.c 2002-09-05 22:10:32.000000000 +0200 @@ -577,7 +577,7 @@ __asm__ __volatile__(APM_DO_ZERO_SEGS "pushl %%edi\n\t" "pushl %%ebp\n\t" - "lcall %%cs:" SYMBOL_NAME_STR(apm_bios_entry) "\n\t" + "lcall *%%cs:" SYMBOL_NAME_STR(apm_bios_entry) "\n\t" "setc %%al\n\t" "popl %%ebp\n\t" "popl %%edi\n\t" @@ -624,7 +624,7 @@ __asm__ __volatile__(APM_DO_ZERO_SEGS "pushl %%edi\n\t" "pushl %%ebp\n\t" - "lcall %%cs:" SYMBOL_NAME_STR(apm_bios_entry) "\n\t" + "lcall *%%cs:" SYMBOL_NAME_STR(apm_bios_entry) "\n\t" "setc %%bl\n\t" "popl %%ebp\n\t" "popl %%edi\n\t"

--------------010709000505050902090001--

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/