Merge branch 'master' of /home/stefan/git/u-boot/u-boot

This commit is contained in:
Stefan Roese 2008-09-05 14:16:10 +02:00
commit 6508f9cd45
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ int device_register (device_t * dev)
_dev = device_clone(dev);
if(!_dev)
return -1;
list_add(&(_dev->list), &(devs.list));
list_add_tail(&(_dev->list), &(devs.list));
return 0;
}