Chameleon

Chameleon Commit Details

Date:2015-04-28 01:10:03 (8 years 11 months ago)
Author:ErmaC
Commit:2660
Parents: 2659
Message:More Typo.
Changes:
M/trunk/i386/libsaio/bootstruct.c
M/trunk/i386/libsaio/nvidia_helper.c
M/trunk/i386/libsaio/nvidia_helper.h

File differences

trunk/i386/libsaio/bootstruct.c
7272
7373
7474
75
75
7676
7777
7878
......
219219
220220
221221
222
222
223223
224224
225225
// Get system memory map. Also update the size of the
// conventional/extended memory for backwards compatibility.
bootInfo->memoryMapCount =
getMemoryMap( bootInfo->memoryMap, kMemoryMapCountMax,
(unsigned long *) &bootInfo->convmem,
bootArgsPreLion->MemoryMapSize = bootArgs->MemoryMapSize;
bootArgsPreLion->MemoryMapDescriptorSize = bootArgs->MemoryMapDescriptorSize;
bootArgsPreLion->MemoryMapDescriptorVersion = bootArgs->MemoryMapDescriptorVersion;
bootArgsPreLion->deviceTreeP = bootArgs->deviceTreeP;
bootArgsPreLion->deviceTreeLength = bootArgs->deviceTreeLength;
trunk/i386/libsaio/nvidia_helper.c
4848
4949
5050
51
51
5252
5353
5454
.
.
.
</array>
</array>
*/
trunk/i386/libsaio/nvidia_helper.h
99
1010
1111
12
13
14
15
16
12
13
14
15
16
1717
1818
19
19
2020
21
21
2222
23
23
typedef struct cardList_t
{
char* model;
uint32_t id;
uint32_t subid;
uint64_t videoRam;
struct cardList_t* next;
char*model;
uint32_tid;
uint32_tsubid;
uint64_tvideoRam;
struct cardList_t*next;
} cardList_t;
void add_card(char* model, uint32_t id, uint32_t subid, uint64_t videoRam);
void add_card(char *model, uint32_t id, uint32_t subid, uint64_t videoRam);
void fill_card_list(void);
cardList_t* FindCardWithIds(uint32_t id, uint32_t subid);
cardList_t *FindCardWithIds(uint32_t id, uint32_t subid);
#endif //__LIBSAIO_NVIDIA_HELPER_H
#endif //__LIBSAIO_NVIDIA_HELPER_H

Archive Download the corresponding diff file

Revision: 2660