refactor: replace all stdint::uint32_t into short and more manageable u32_t
[lunaix-os.git] / lunaix-os / kernel / device / device.c
index 6b901a6593958ac2a38fd4ea35009fd62d67c141..b784fdbf4c3649bfcf49d99781dfa139da9a2846 100644 (file)
@@ -15,7 +15,7 @@ struct device*
 device_add(struct device* parent,
            void* underlay,
            char* name_fmt,
-           uint32_t type,
+           u32_t type,
            va_list args)
 {
     struct device* dev = vzalloc(sizeof(struct device));