Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df2e1629 authored by Ben Dooks's avatar Ben Dooks Committed by Thomas Gleixner
Browse files

[MTD] maps/plat-ram.c: Initialize owner in device_driver struct



Added .owner initialisation to allow the
tracking of the device_driver owners when
built as a module

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent e0030b60
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 *
 * Generic platfrom device based RAM map
 *
 * $Id: plat-ram.c,v 1.3 2005/03/19 22:41:27 gleixner Exp $
 * $Id: plat-ram.c,v 1.4 2005/10/10 00:51:26 bjd Exp $
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
@@ -254,6 +254,7 @@ static int platram_probe(struct device *dev)

static struct device_driver platram_driver = {
	.name		= "mtd-ram",
	.owner		= THIS_MODULE,
	.bus		= &platform_bus_type,
	.probe		= platram_probe,
	.remove		= platram_remove,