diff options
| author | Michal Simek <michal.simek@xilinx.com> | 2013-04-26 09:38:26 +0200 | 
|---|---|---|
| committer | Michal Simek <michal.simek@xilinx.com> | 2013-05-06 10:41:17 +0200 | 
| commit | ee976c1b03c419c15599abb1300e89e27f2fb653 (patch) | |
| tree | fa14aab85b0b17fc3041e083c9ff060401cc0b91 /drivers/fpga/fpga.c | |
| parent | f6555d90c1b8f0f2b5694e3cab968b116ab300c4 (diff) | |
| download | olio-uboot-2014.01-ee976c1b03c419c15599abb1300e89e27f2fb653.tar.xz olio-uboot-2014.01-ee976c1b03c419c15599abb1300e89e27f2fb653.zip | |
fpga: Fix debug message compilation error
CONFIG_FPGA in past was a bitfield where bits
were use for vendor identification.
This fix should be the part of this commit:
"Improve configuration of FPGA subsystem"
(sha1: 0133502e39ff89b67c26cb4015e0e7e8d9571184)
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'drivers/fpga/fpga.c')
| -rw-r--r-- | drivers/fpga/fpga.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/fpga/fpga.c b/drivers/fpga/fpga.c index ddebd495f..43bdf4fd2 100644 --- a/drivers/fpga/fpga.c +++ b/drivers/fpga/fpga.c @@ -145,7 +145,7 @@ void fpga_init(void)  	next_desc = 0;  	memset(desc_table, 0, sizeof(desc_table)); -	debug("%s: CONFIG_FPGA = 0x%x\n", __func__, CONFIG_FPGA); +	debug("%s\n", __func__);  }  /* |