mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-08 10:19:06 +00:00
* hw-tree.c (hw_tree_find_property): Return NULL when device is not found.
(hw_tree_find_*_property): Clean up error message when property is not found. * dv-pal.c (hw_pal_io_read_buffer): Check the smp property is present before looking for it.
This commit is contained in:
parent
8b901ef830
commit
04cdafa7a4
@ -1,3 +1,13 @@
|
||||
Thu Mar 26 09:10:56 1998 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* hw-tree.c (hw_tree_find_property): Return NULL when device is
|
||||
not found.
|
||||
(hw_tree_find_*_property): Clean up error message when property is
|
||||
not found.
|
||||
|
||||
* dv-pal.c (hw_pal_io_read_buffer): Check the smp property is
|
||||
present before looking for it.
|
||||
|
||||
Wed Mar 25 16:17:38 1998 Ian Carmichael <iancarm@cygnus.com>
|
||||
|
||||
* aclocal.m4 (AC_CHECK_HEADERS): Add check for fpu_control.h.
|
||||
|
@ -357,8 +357,16 @@ hw_pal_io_read_buffer (struct hw *me,
|
||||
break;
|
||||
|
||||
case hw_pal_nr_cpu_register:
|
||||
*byte = hw_tree_find_integer_property (me, "/openprom/options/smp");
|
||||
HW_TRACE ((me, "read - nr-cpu %d\n", *byte));
|
||||
if (hw_tree_find_property (me, "/openprom/options/smp") == NULL)
|
||||
{
|
||||
*byte = 1;
|
||||
HW_TRACE ((me, "read - nr-cpu %d (not defined)\n", *byte));
|
||||
}
|
||||
else
|
||||
{
|
||||
*byte = hw_tree_find_integer_property (me, "/openprom/options/smp");
|
||||
HW_TRACE ((me, "read - nr-cpu %d\n", *byte));
|
||||
}
|
||||
break;
|
||||
|
||||
case hw_pal_read_fifo:
|
||||
|
Loading…
x
Reference in New Issue
Block a user