Skip to content

Commit

Permalink
MIPS: SEAD3: sead3-ehci should not be a module.
Browse files Browse the repository at this point in the history
So let's remove everythig that only make sense for a kernel module and
build the thing unconditionally.

Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
ralfbaechle committed Apr 2, 2015
1 parent 85f215c commit 6b09adc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
7 changes: 3 additions & 4 deletions arch/mips/mti-sead3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
# Copyright (C) 2012 MIPS Technoligies, Inc. All rights reserved.
# Steven J. Hill <[email protected]>
#
obj-y := sead3-lcd.o sead3-display.o sead3-init.o \
sead3-int.o sead3-mtd.o sead3-net.o \
sead3-platform.o sead3-reset.o \
obj-y := sead3-lcd.o sead3-display.o sead3-ehci.o \
sead3-init.o sead3-int.o sead3-mtd.o \
sead3-net.o sead3-platform.o sead3-reset.o \
sead3-setup.o sead3-time.o

obj-y += leds-sead3.o sead3-leds.o

obj-$(CONFIG_EARLY_PRINTK) += sead3-console.o
obj-$(CONFIG_USB_EHCI_HCD) += sead3-ehci.o

CFLAGS_sead3-setup.o = -I$(src)/../../../scripts/dtc/libfdt
8 changes: 2 additions & 6 deletions arch/mips/mti-sead3/sead3-ehci.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/dma-mapping.h>
#include <linux/platform_device.h>
Expand Down Expand Up @@ -46,8 +46,4 @@ static int __init ehci_init(void)
return platform_device_register(&ehci_device);
}

module_init(ehci_init);

MODULE_AUTHOR("Chris Dearman <[email protected]>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("EHCI probe driver for SEAD3");
device_initcall(ehci_init);

0 comments on commit 6b09adc

Please sign in to comment.