linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] v4l: add video_device_remove_file() for 2.6.0-test3-bk
@ 2003-08-22 18:16 Greg KH
  0 siblings, 0 replies; only message in thread
From: Greg KH @ 2003-08-22 18:16 UTC (permalink / raw)
  To: kraxel; +Cc: linux-kernel

Ah, and here's a patch to add video_device_remove_file() to match the
video_device_create_file() function.  It's nice to be complete :)

Mind if I send this on too?

thanks,

greg k-h


# V4L: add video_device_remove_file() to match video_device_create_file()

diff -Nru a/include/linux/videodev.h b/include/linux/videodev.h
--- a/include/linux/videodev.h	Fri Aug 22 11:14:15 2003
+++ b/include/linux/videodev.h	Fri Aug 22 11:14:15 2003
@@ -63,6 +63,12 @@
 {
 	class_device_create_file(&vfd->class_dev, attr);
 }
+static inline void
+video_device_remove_file(struct video_device *vfd,
+			 struct class_device_attribute *attr)
+{
+	class_device_remove_file(&vfd->class_dev, attr);
+}
 
 /* helper functions to alloc / release struct video_device, the
    later can be used for video_device->release() */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-22 18:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-22 18:16 [PATCH] v4l: add video_device_remove_file() for 2.6.0-test3-bk Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).