Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363199
b: refs/heads/master
c: 813b451
h: refs/heads/master
i:
  363197: 5cb2594
  363195: 4cacbb9
  363191: 5ebaa4b
  363183: 8443e63
  363167: 0a24984
  363135: 184fdc8
v: v3
  • Loading branch information
Sachin Kamat authored and Chanwoo Choi committed Apr 8, 2013
1 parent f9c39c3 commit 23963c9
Show file tree
Hide file tree
Showing 128 changed files with 1,118 additions and 3,598 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 30e53bb8ffb1f3270ad89196d9799057008d9537
refs/heads/master: 813b451644686fb7e26a54005e2f7bd495a06121
7 changes: 0 additions & 7 deletions trunk/Documentation/ABI/testing/sysfs-bus-mei

This file was deleted.

18 changes: 0 additions & 18 deletions trunk/Documentation/devicetree/bindings/arm/msm/ssbi.txt

This file was deleted.

135 changes: 0 additions & 135 deletions trunk/Documentation/misc-devices/mei/mei-client-bus.txt

This file was deleted.

1 change: 0 additions & 1 deletion trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,6 @@ F: drivers/mmc/host/msm_sdcc.h
F: drivers/tty/serial/msm_serial.h
F: drivers/tty/serial/msm_serial.c
F: drivers/*/pm8???-*
F: drivers/ssbi/
F: include/linux/mfd/pm8xxx/
T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
S: Maintained
Expand Down
6 changes: 0 additions & 6 deletions trunk/arch/arm/boot/dts/msm8660-surf.dts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,4 @@
<0x19c00000 0x1000>;
interrupts = <0 195 0x0>;
};

qcom,ssbi@500000 {
compatible = "qcom,ssbi";
reg = <0x500000 0x1000>;
qcom,controller-type = "pmic-arbiter";
};
};
6 changes: 0 additions & 6 deletions trunk/arch/arm/boot/dts/msm8960-cdp.dts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,4 @@
<0x16400000 0x1000>;
interrupts = <0 154 0x0>;
};

qcom,ssbi@500000 {
compatible = "qcom,ssbi";
reg = <0x500000 0x1000>;
qcom,controller-type = "pmic-arbiter";
};
};
2 changes: 0 additions & 2 deletions trunk/drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ source "drivers/i2c/Kconfig"

source "drivers/spi/Kconfig"

source "drivers/ssbi/Kconfig"

source "drivers/hsi/Kconfig"

source "drivers/pps/Kconfig"
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ obj-y += firmware/
obj-$(CONFIG_CRYPTO) += crypto/
obj-$(CONFIG_SUPERH) += sh/
obj-$(CONFIG_ARCH_SHMOBILE) += sh/
obj-$(CONFIG_SSBI) += ssbi/
ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
obj-y += clocksource/
endif
Expand Down
14 changes: 13 additions & 1 deletion trunk/drivers/ata/pata_pcmcia.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,21 @@ static struct pcmcia_driver pcmcia_driver = {
.probe = pcmcia_init_one,
.remove = pcmcia_remove_one,
};
module_pcmcia_driver(pcmcia_driver);

static int __init pcmcia_init(void)
{
return pcmcia_register_driver(&pcmcia_driver);
}

static void __exit pcmcia_exit(void)
{
pcmcia_unregister_driver(&pcmcia_driver);
}

MODULE_AUTHOR("Alan Cox");
MODULE_DESCRIPTION("low-level driver for PCMCIA ATA");
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);

module_init(pcmcia_init);
module_exit(pcmcia_exit);
15 changes: 14 additions & 1 deletion trunk/drivers/bluetooth/bluecard_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -934,4 +934,17 @@ static struct pcmcia_driver bluecard_driver = {
.remove = bluecard_detach,
.id_table = bluecard_ids,
};
module_pcmcia_driver(bluecard_driver);

static int __init init_bluecard_cs(void)
{
return pcmcia_register_driver(&bluecard_driver);
}


static void __exit exit_bluecard_cs(void)
{
pcmcia_unregister_driver(&bluecard_driver);
}

module_init(init_bluecard_cs);
module_exit(exit_bluecard_cs);
15 changes: 14 additions & 1 deletion trunk/drivers/bluetooth/bt3c_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -760,4 +760,17 @@ static struct pcmcia_driver bt3c_driver = {
.remove = bt3c_detach,
.id_table = bt3c_ids,
};
module_pcmcia_driver(bt3c_driver);

static int __init init_bt3c_cs(void)
{
return pcmcia_register_driver(&bt3c_driver);
}


static void __exit exit_bt3c_cs(void)
{
pcmcia_unregister_driver(&bt3c_driver);
}

module_init(init_bt3c_cs);
module_exit(exit_bt3c_cs);
15 changes: 14 additions & 1 deletion trunk/drivers/bluetooth/btuart_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,4 +688,17 @@ static struct pcmcia_driver btuart_driver = {
.remove = btuart_detach,
.id_table = btuart_ids,
};
module_pcmcia_driver(btuart_driver);

static int __init init_btuart_cs(void)
{
return pcmcia_register_driver(&btuart_driver);
}


static void __exit exit_btuart_cs(void)
{
pcmcia_unregister_driver(&btuart_driver);
}

module_init(init_btuart_cs);
module_exit(exit_btuart_cs);
15 changes: 14 additions & 1 deletion trunk/drivers/bluetooth/dtl1_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,4 +628,17 @@ static struct pcmcia_driver dtl1_driver = {
.remove = dtl1_detach,
.id_table = dtl1_ids,
};
module_pcmcia_driver(dtl1_driver);

static int __init init_dtl1_cs(void)
{
return pcmcia_register_driver(&dtl1_driver);
}


static void __exit exit_dtl1_cs(void)
{
pcmcia_unregister_driver(&dtl1_driver);
}

module_init(init_dtl1_cs);
module_exit(exit_dtl1_cs);
4 changes: 2 additions & 2 deletions trunk/drivers/char/applicom.c
Original file line number Diff line number Diff line change
Expand Up @@ -804,8 +804,8 @@ static long ac_ioctl(struct file *file, unsigned int cmd, unsigned long arg)

printk(KERN_INFO "Prom version board %d ....... V%d.%d %s",
i+1,
(int)(readb(apbs[i].RamIO + VERS) >> 4),
(int)(readb(apbs[i].RamIO + VERS) & 0xF),
(int)(readb(apbs[IndexCard].RamIO + VERS) >> 4),
(int)(readb(apbs[IndexCard].RamIO + VERS) & 0xF),
boardname);


Expand Down
13 changes: 12 additions & 1 deletion trunk/drivers/char/hw_random/mxc-rnga.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,18 @@ static struct platform_driver mxc_rnga_driver = {
.remove = __exit_p(mxc_rnga_remove),
};

module_platform_driver_probe(mxc_rnga_driver, mxc_rnga_probe);
static int __init mod_init(void)
{
return platform_driver_probe(&mxc_rnga_driver, mxc_rnga_probe);
}

static void __exit mod_exit(void)
{
platform_driver_unregister(&mxc_rnga_driver);
}

module_init(mod_init);
module_exit(mod_exit);

MODULE_AUTHOR("Freescale Semiconductor, Inc.");
MODULE_DESCRIPTION("H/W RNGA driver for i.MX");
Expand Down
13 changes: 12 additions & 1 deletion trunk/drivers/char/hw_random/tx4939-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,18 @@ static struct platform_driver tx4939_rng_driver = {
.remove = tx4939_rng_remove,
};

module_platform_driver_probe(tx4939_rng_driver, tx4939_rng_probe);
static int __init tx4939rng_init(void)
{
return platform_driver_probe(&tx4939_rng_driver, tx4939_rng_probe);
}

static void __exit tx4939rng_exit(void)
{
platform_driver_unregister(&tx4939_rng_driver);
}

module_init(tx4939rng_init);
module_exit(tx4939rng_exit);

MODULE_DESCRIPTION("H/W Random Number Generator (RNG) driver for TX4939");
MODULE_LICENSE("GPL");
2 changes: 1 addition & 1 deletion trunk/drivers/char/tile-srom.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ static int srom_setup_minor(struct srom_dev *srom, int index)

dev = device_create(srom_class, &platform_bus,
MKDEV(srom_major, index), srom, "%d", index);
return PTR_RET(dev);
return IS_ERR(dev) ? PTR_ERR(dev) : 0;
}

/** srom_init() - Initialize the driver's module. */
Expand Down
Loading

0 comments on commit 23963c9

Please sign in to comment.