From patchwork Mon Dec 9 08:14:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sonic Zhang X-Patchwork-Id: 298953 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 395632C00AA for ; Mon, 9 Dec 2013 19:15:00 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4AC734BB91; Mon, 9 Dec 2013 09:14:58 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nR++9sMxwe9Z; Mon, 9 Dec 2013 09:14:58 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6949C4BB78; Mon, 9 Dec 2013 09:14:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 860844BB6A for ; Mon, 9 Dec 2013 09:14:46 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R8GM55LDqUnt for ; Mon, 9 Dec 2013 09:14:41 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by theia.denx.de (Postfix) with ESMTPS id 8EE984BB68 for ; Mon, 9 Dec 2013 09:14:30 +0100 (CET) Received: by mail-pb0-f54.google.com with SMTP id un15so4994545pbc.27 for ; Mon, 09 Dec 2013 00:14:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=zAGUCuZtGQeXzTG+cdWCsBN1nlNDNnGLKSKuZey5SUc=; b=XLk+zonf8mBqfBSuhc/ymHM5TxhABzGrqFfijEx6LhDD3lBk50fGOGIVfSrBb+SlhY WxnXmn9ZhFMTGgPIAuF5RG/mQCeZjLYDAHoddF+o6pJjGPVCkyzl6CF3vqG54rTvKOuL yxnia8uo5L9SiYPj3Ui1awuXIqCn90ZhF5BL5Sc0tYItinLRY8QWbyC6OxTP8GYeSpxO buu8/We+wu1uKlsghHmmOTsUe5B8pAfzh8K2FasfeZdPYBNme8ePxBhVsrBgDOoPEw+e M6GTdv45dep/01c5IABDhFnrM5/O7Uni9+hK8biIegrz1XVPubZSGPv0qAjS0Kk06DAc 5TBg== X-Received: by 10.69.11.194 with SMTP id ek2mr19210513pbd.111.1386576869140; Mon, 09 Dec 2013 00:14:29 -0800 (PST) Received: from localhost.localdomain ([114.91.244.100]) by mx.google.com with ESMTPSA id rz6sm22489674pab.22.2013.12.09.00.14.24 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 09 Dec 2013 00:14:28 -0800 (PST) From: Sonic Zhang To: u-boot@lists.denx.de Date: Mon, 9 Dec 2013 16:14:06 +0800 Message-Id: <1386576850-28494-2-git-send-email-sonic.adi@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1386576850-28494-1-git-send-email-sonic.adi@gmail.com> References: <1386576850-28494-1-git-send-email-sonic.adi@gmail.com> Cc: Sonic Zhang , adi-u-boot-devel@lists.sourceforge.net Subject: [U-Boot] [PATCH 2/6] blackfin: fix building error by adding macro CONFIG_SYS_I2C X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de From: Sonic Zhang Signed-off-by: Sonic Zhang --- include/configs/bf561-ezkit.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/bf561-ezkit.h b/include/configs/bf561-ezkit.h index 404039a..fb6f948 100644 --- a/include/configs/bf561-ezkit.h +++ b/include/configs/bf561-ezkit.h @@ -90,6 +90,7 @@ */ #define CONFIG_SYS_I2C_SOFT #ifdef CONFIG_SYS_I2C_SOFT +#define CONFIG_SYS_I2C #define CONFIG_SOFT_I2C_GPIO_SCL GPIO_PF0 #define CONFIG_SOFT_I2C_GPIO_SDA GPIO_PF1 #define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */