diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 22:17:13 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 22:42:57 +0100 |
commit | 972de6c8bfd8b36618563be454df1e95a36dc379 (patch) | |
tree | 98be8fb9475a97ab1a212cd2a9a3a1ebf0b16d2d /drivers/video/vfb.c | |
parent | [PATCH] kobject: fix build error if CONFIG_SYSFS=n (diff) | |
download | linux-972de6c8bfd8b36618563be454df1e95a36dc379.tar.xz linux-972de6c8bfd8b36618563be454df1e95a36dc379.zip |
[PATCH] Mark empty release functions as broken
Come on people, this is just wrong...
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/video/vfb.c')
-rw-r--r-- | drivers/video/vfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/vfb.c b/drivers/video/vfb.c index 53208cb58396..77eed1fd9943 100644 --- a/drivers/video/vfb.c +++ b/drivers/video/vfb.c @@ -401,6 +401,7 @@ static int __init vfb_setup(char *options) static void vfb_platform_release(struct device *device) { // This is called when the reference count goes to zero. + dev_err(device, "This driver is broken, please bug the authors so they will fix it.\n"); } static int __init vfb_probe(struct platform_device *dev) |