From mboxrd@z Thu Jan 1 00:00:00 1970 From: srinivas.kandagatla@linaro.org Subject: [PATCH] ARM: amba: Add Qualcomm vendor ID. Date: Thu, 15 May 2014 11:22:05 +0100 Message-ID: <1400149325-30899-1-git-send-email-srinivas.kandagatla@linaro.org> Return-path: Received: from mail-wi0-f179.google.com ([209.85.212.179]:59066 "EHLO mail-wi0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754853AbaEOKWT (ORCPT ); Thu, 15 May 2014 06:22:19 -0400 Received: by mail-wi0-f179.google.com with SMTP id bs8so3889914wib.12 for ; Thu, 15 May 2014 03:22:18 -0700 (PDT) Sender: linux-arm-msm-owner@vger.kernel.org List-Id: linux-arm-msm@vger.kernel.org To: patches@arm.linux.org.uk Cc: Russell King , linus.walleij@linaro.org, linux-arm-msm@vger.kernel.org, Srinivas Kandagatla From: Srinivas Kandagatla This patch adds Qualcomm amba vendor Id to the list. This ID is used in mmci driver. The ID selected in same lines like 0x41 is "A" for ARM, 0x51 is "Q" for Qualcomm. As there are no physical register on Qcom SOC for amba vendor id, this is a fake ID assigned based on "Q" prefix from Qualcomm. Signed-off-by: Srinivas Kandagatla Acked-by: Linus Walleij --- include/linux/amba/bus.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 63b5eff..fdd7e1b 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h @@ -47,6 +47,7 @@ struct amba_driver { enum amba_vendor { AMBA_VENDOR_ARM = 0x41, AMBA_VENDOR_ST = 0x80, + AMBA_VENDOR_QCOM = 0x51, }; extern struct bus_type amba_bustype; -- 1.9.1