From: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Date: Wed, 9 Dec 2015 13:16:42 +0000 (+0530)
Subject: fpga: Add bitstream type BIT_NONE
X-Git-Tag: v2025.01-rc5-pxa1908~10446^2~48
X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=ddbcf8f2c2d1be734c91948a0c1b676a5eb5087f;p=u-boot.git

fpga: Add bitstream type BIT_NONE

Add bitstream type BIT_NONE to the bitstream type
enum. This might be useful while loading bitstreams
in respective drivers.

Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

diff --git a/include/fpga.h b/include/fpga.h
index e0d12981b2..d768fb1417 100644
--- a/include/fpga.h
+++ b/include/fpga.h
@@ -46,6 +46,7 @@ typedef struct {                /* typedef fpga_desc */
 typedef enum {
 	BIT_FULL = 0,
 	BIT_PARTIAL,
+	BIT_NONE = 0xFF,
 } bitstream_type;
 
 /* root function definitions */