If you get a warning, it's because you SHOULD be getting a warning.
next step is to fix up this: LAR build/coreboot.rom Bootblock coreboot.bootblock does not appear to be a bootblock. Error adding the bootblock to the LAR. make: *** [/home/rminnich/src/bios/coreboot-v3/build/coreboot.rom] Error 1 make: exit 2 Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/coreboot-v3@809 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
f28a44eb48
commit
159354e6ba
8 changed files with 24 additions and 27 deletions
|
|
@ -117,18 +117,19 @@ struct ht_link {
|
|||
static int ht_setup_link(struct ht_link *prev, struct device *dev,
|
||||
unsigned int pos)
|
||||
{
|
||||
static const u8 link_width_to_pow2[] = { 3, 4, 0, 5, 1, 2, 0, 0 };
|
||||
static const u8 pow2_to_link_width[] = { 0x7, 4, 5, 0, 1, 3 };
|
||||
struct ht_link cur[1];
|
||||
int reset_needed;
|
||||
int linkb_to_host;
|
||||
#if OPT_HT_LINK == 1
|
||||
unsigned int present_width_cap, upstream_width_cap;
|
||||
unsigned int present_freq_cap, upstream_freq_cap;
|
||||
static const u8 link_width_to_pow2[] = { 3, 4, 0, 5, 1, 2, 0, 0 };
|
||||
static const u8 pow2_to_link_width[] = { 0x7, 4, 5, 0, 1, 3 };
|
||||
unsigned int ln_present_width_in, ln_upstream_width_in;
|
||||
unsigned int ln_present_width_out, ln_upstream_width_out;
|
||||
unsigned int freq, old_freq;
|
||||
unsigned int present_width, upstream_width, old_width;
|
||||
int reset_needed;
|
||||
int linkb_to_host;
|
||||
|
||||
#endif
|
||||
/* Set the hypertransport link width and frequency. */
|
||||
reset_needed = 0;
|
||||
/* See which side of the device our previous write to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue