提交 b8ac9fc0 编写于 作者: S Stephen Rothwell 提交者: Greg Kroah-Hartman

uio: make uio_info's name and version const

These are only ever assigned constant strings and never modified.

This was noticed because Wolfram Sang needed to cast the result of
of_get_property() in order to assign it to the name field of a struct
uio_info.
Signed-off-by: NStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: NHans J. Koch <hjk@linutronix.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 a2ab3d30
...@@ -393,12 +393,12 @@ offset = N * getpagesize(); ...@@ -393,12 +393,12 @@ offset = N * getpagesize();
<itemizedlist> <itemizedlist>
<listitem><para> <listitem><para>
<varname>char *name</varname>: Required. The name of your driver as <varname>const char *name</varname>: Required. The name of your driver as
it will appear in sysfs. I recommend using the name of your module for this. it will appear in sysfs. I recommend using the name of your module for this.
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
<varname>char *version</varname>: Required. This string appears in <varname>const char *version</varname>: Required. This string appears in
<filename>/sys/class/uio/uioX/version</filename>. <filename>/sys/class/uio/uioX/version</filename>.
</para></listitem> </para></listitem>
......
...@@ -76,8 +76,8 @@ struct uio_device; ...@@ -76,8 +76,8 @@ struct uio_device;
*/ */
struct uio_info { struct uio_info {
struct uio_device *uio_dev; struct uio_device *uio_dev;
char *name; const char *name;
char *version; const char *version;
struct uio_mem mem[MAX_UIO_MAPS]; struct uio_mem mem[MAX_UIO_MAPS];
struct uio_port port[MAX_UIO_PORT_REGIONS]; struct uio_port port[MAX_UIO_PORT_REGIONS];
long irq; long irq;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册