aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze/lib/muldi3.c
Commit message (Collapse)AuthorAge
* microblaze: Do not use module.h in files which are not modulesMichal Simek2013-02-12
| | | | | | | | | Based on the patch: "lib: reduce the use of module.h wherever possible" (sha1: 8bc3bcc93a2b4e47d5d410146f6546bca6171663) fix all microblaze files which are not modules. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
* microblaze: lib: Remove helper macrosMichal Simek2012-12-13
| | | | | | Remove these gcc types and use standard types. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
* microblaze: Add missing export symbols for lib functionsMichal Simek2011-03-09
| | | | | | Adding missing export symbols for loadable modules. Signed-off-by: Michal Simek <monstr@monstr.eu>
* microblaze: Fix __muldi3 function for little-endian.Michal Simek2011-01-03
__muldi3 was written for big endian platforms. Code contained half word read/write instructions which are not compatible with little endian cpu. Asm __muldi3 implementation is replaced by C version. Signed-off-by: Michal Simek <monstr@monstr.eu>