rk: sram.h: fix gcc error: unknown type name 'uint'
author黄涛 <huangtao@rock-chips.com>
Tue, 22 Jan 2013 02:34:47 +0000 (10:34 +0800)
committer黄涛 <huangtao@rock-chips.com>
Tue, 22 Jan 2013 02:35:02 +0000 (10:35 +0800)
arch/arm/plat-rk/include/plat/sram.h

index 3702b787e973079b6b60ae82e350e4ec576debe9..d074adf5ed17c9cbfcce59af8e512dda8238f173 100755 (executable)
 
 struct sram_gpio_data {
        void __iomem *base;
-       uint offset;
+       unsigned int offset;
 };
 
 extern struct sram_gpio_data __sramdata pmic_sleep,pmic_vsel;
 int sram_gpio_init(int gpio, struct sram_gpio_data *data);
-void __sramfunc sram_gpio_set_value(struct sram_gpio_data data, uint value);
+void __sramfunc sram_gpio_set_value(struct sram_gpio_data data, unsigned int value);
 
 int __init rk29_sram_init(void);