Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "drivers/lego"]
path = drivers/lego
url = https://github.com/ev3dev/lego-linux-drivers
url = https://github.com/project516/lego-linux-drivers
6 changes: 5 additions & 1 deletion arch/arm/mach-davinci/legoev3-fiq.c
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,11 @@ static int legoev3_fiq_probe(struct platform_device *pdev)
fiq_data->timer_irq = pdata->timer_irq;
fiq_data->ehrpwm_irq = pdata->ehrpwm_irq;

ret = gpio_request_one(pdata->status_gpio, GPIOF_INIT_LOW, "fiq status");
ret = gpio_request(pdata->status_gpio, "fiq status");
if (!ret) {
ret = gpio_direction_output(pdata->status_gpio, 0);
Comment thread
Project516 marked this conversation as resolved.
Outdated
}

Comment thread
Project516 marked this conversation as resolved.
Outdated
if (ret < 0) {
if (ret != -EPROBE_DEFER) {
dev_err(&pdev->dev,
Expand Down
2 changes: 1 addition & 1 deletion scripts/Makefile.package
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ bindeb-pkg: private build-type := binary
deb-pkg srcdeb-pkg: debian-orig
bindeb-pkg: debian
deb-pkg srcdeb-pkg bindeb-pkg:
+$(strip dpkg-buildpackage \
+$(strip dpkg-buildpackage -d \
--build=$(build-type) --no-pre-clean --unsigned-changes \
$(if $(findstring source, $(build-type)), \
--unsigned-source --compression=$(KDEB_SOURCE_COMPRESS)) \
Expand Down
Loading