diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 09:06:54 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 09:06:54 +0000 |
commit | f18883d3794bb1c7cb6468150ab33ff5a2f891b8 (patch) | |
tree | 92c2decbbd8379fd6e7901fa3728eed395a5137d /hw/ppc4xx_devs.c | |
parent | f66be70ea8cc4e4d703574512d77979870f5831b (diff) | |
download | qemu-f18883d3794bb1c7cb6468150ab33ff5a2f891b8.tar.gz qemu-f18883d3794bb1c7cb6468150ab33ff5a2f891b8.tar.bz2 qemu-f18883d3794bb1c7cb6468150ab33ff5a2f891b8.zip |
Replace always_inline with inline
We define inline as always_inline.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ppc4xx_devs.c')
-rw-r--r-- | hw/ppc4xx_devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc4xx_devs.c b/hw/ppc4xx_devs.c index 8f8a44c395..9c1f7d8cff 100644 --- a/hw/ppc4xx_devs.c +++ b/hw/ppc4xx_devs.c @@ -377,7 +377,7 @@ static uint32_t sdram_bcr (target_phys_addr_t ram_base, return bcr; } -static always_inline target_phys_addr_t sdram_base (uint32_t bcr) +static inline target_phys_addr_t sdram_base(uint32_t bcr) { return bcr & 0xFF800000; } |