mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
51ec92e295
Suppressing uevents turned out to be a bad idea as it screws up the order of events, making user space very confused. Change the system to use sysfs groups instead. This is a regression that, for some odd reason, has gone unnoticed for some time. It confuses hal so that the block devices (which have the mmc device as a parent) are not registered. End result being that desktop magic when cards are inserted won't work. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
291 B
Makefile
15 lines
291 B
Makefile
#
|
|
# Makefile for the kernel mmc core.
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
mmc_core-y := core.o bus.o host.o \
|
|
mmc.o mmc_ops.o sd.o sd_ops.o \
|
|
sdio.o sdio_ops.o sdio_bus.o \
|
|
sdio_cis.o sdio_io.o sdio_irq.o
|
|
|