From 20930e8c0bd28d9b214cdc7f969dae8330591957 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 16 Aug 2007 14:06:53 +0200 Subject: Add patch to fix a typo in xcscope.el (Closes: #438170) --- debian/patches/00list | 1 + debian/patches/02-fix-xcscope-el-typo.dpatch | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 debian/patches/02-fix-xcscope-el-typo.dpatch (limited to 'debian') diff --git a/debian/patches/00list b/debian/patches/00list index 759b17a..6e04a66 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -1 +1,2 @@ 01-fix-resize-crash-inside-vim +02-fix-xcscope-el-typo diff --git a/debian/patches/02-fix-xcscope-el-typo.dpatch b/debian/patches/02-fix-xcscope-el-typo.dpatch new file mode 100755 index 0000000..6ebe4df --- /dev/null +++ b/debian/patches/02-fix-xcscope-el-typo.dpatch @@ -0,0 +1,17 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 02-fix-xcscope-el-typo.dpatch +## +## DP: Fixes a typo in contrib/xcscope/xcscope.el +## DP: (Closes: #438170) + +--- cscope-15.6/contrib/xcscope/xcscope.el.orig 2007-08-16 13:38:28.000000000 +0200 ++++ cscope-15.6/contrib/xcscope/xcscope.el 2007-08-16 13:38:38.000000000 +0200 +@@ -114,7 +114,7 @@ + ;; (define-key global-map [(control f11)] 'cscope-prev-symbol) + ;; (define-key global-map [(control f12)] 'cscope-prev-file) + ;; (define-key global-map [(meta f9)] 'cscope-display-buffer) +-;; (defin-ekey global-map [(meta f10)] 'cscope-display-buffer-toggle) ++;; (define-key global-map [(meta f10)] 'cscope-display-buffer-toggle) + ;; + ;; 6. Restart (X)Emacs. That's it. + ;; -- cgit v1.2.3-54-g00ecf d4ef231980181'>refslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2016-06-04 14:35:56 +0800
committerLinus Walleij <linus.walleij@linaro.org>2016-06-22 17:58:07 +0200
commit19b5a91764fddcc51b2f8e54a81d4ef231980181 (patch)
tree0ed08f122b2f3ce5b0816e3eb79f55cc7eac34af
parent9ee8ff4867d07a6429991a0b748fa9c1586a7764 (diff)
pinctrl: tegra: Fix build dependency
I got below build error: ERROR: "tegra_xusb_padctl_legacy_probe" [drivers/phy/tegra/phy-tegra-xusb.ko] undefined! with below build configuration: CONFIG_ARCH_TEGRA=y CONFIG_PINCTRL_TEGRA_XUSB=y CONFIG_PHY_TEGRA_XUSB=y The problem is below line in drivers/pinctrl/Makefile obj-$(CONFIG_PINCTRL_TEGRA) += tegra/ So even CONFIG_PINCTRL_TEGRA_XUSB=y is set, kbuild still does not compile the code in drivers/pinctrl/tegra folder if !CONFIG_PINCTRL_TEGRA. phy-tegra-xusb.c does not use any symbol from pinctrl-tegra.c, so build pinctrl-tegra.c only when CONFIG_PINCTRL_TEGRA is set. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>