All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name
@ 2014-06-08 15:46 Michael S. Tsirkin
  2014-06-12  8:27 ` Markus Armbruster
  0 siblings, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2014-06-08 15:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: Igor Mammedov, Anthony Liguori

Names with spaces in them are nasty, let's not go there.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---

Already in my tree, let me know if you see issues.

 include/hw/i386/ich9.h | 2 +-
 include/hw/i386/pc.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/hw/i386/ich9.h b/include/hw/i386/ich9.h
index e191435..2c883f2 100644
--- a/include/hw/i386/ich9.h
+++ b/include/hw/i386/ich9.h
@@ -24,7 +24,7 @@ I2CBus *ich9_smb_init(PCIBus *bus, int devfn, uint32_t smb_io_base);
 
 #define ICH9_CC_SIZE                            (16 * 1024)     /* 16KB */
 
-#define TYPE_ICH9_LPC_DEVICE "ICH9 LPC"
+#define TYPE_ICH9_LPC_DEVICE "ICH9_LPC"
 #define ICH9_LPC_DEVICE(obj) \
      OBJECT_CHECK(ICH9LPCState, (obj), TYPE_ICH9_LPC_DEVICE)
 
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
index a2bf22c..fe9e18b 100644
--- a/include/hw/i386/pc.h
+++ b/include/hw/i386/pc.h
@@ -295,7 +295,7 @@ bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
 #define PC_Q35_COMPAT_2_0 \
         PC_COMPAT_2_0, \
         {\
-            .driver   = "ICH9 LPC",\
+            .driver   = "ICH9_LPC",\
             .property = "memory-hotplug-support",\
             .value    = "off",\
         }
-- 
MST

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name
  2014-06-08 15:46 [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name Michael S. Tsirkin
@ 2014-06-12  8:27 ` Markus Armbruster
  2014-06-12  8:32   ` Michael S. Tsirkin
  0 siblings, 1 reply; 5+ messages in thread
From: Markus Armbruster @ 2014-06-12  8:27 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Igor Mammedov, qemu-devel, Anthony Liguori

"Michael S. Tsirkin" <mst@redhat.com> writes:

> Names with spaces in them are nasty, let's not go there.

Yes, they are, but please use '-' instead of '_'.  I can see just a few
devices with '_' in their name, but more than a hundred with '-'.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name
  2014-06-12  8:27 ` Markus Armbruster
@ 2014-06-12  8:32   ` Michael S. Tsirkin
  2014-06-12 14:33     ` Markus Armbruster
  0 siblings, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2014-06-12  8:32 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: Igor Mammedov, qemu-devel, Anthony Liguori

On Thu, Jun 12, 2014 at 10:27:53AM +0200, Markus Armbruster wrote:
> "Michael S. Tsirkin" <mst@redhat.com> writes:
> 
> > Names with spaces in them are nasty, let's not go there.
> 
> Yes, they are, but please use '-' instead of '_'.  I can see just a few
> devices with '_' in their name, but more than a hundred with '-'.

No problem, I made this change.
Result pushed to the pci branch, pls take a look there.

Thanks!

-- 
MST

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name
  2014-06-12  8:32   ` Michael S. Tsirkin
@ 2014-06-12 14:33     ` Markus Armbruster
  2014-06-12 14:57       ` Michael S. Tsirkin
  0 siblings, 1 reply; 5+ messages in thread
From: Markus Armbruster @ 2014-06-12 14:33 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Igor Mammedov, qemu-devel, Anthony Liguori

"Michael S. Tsirkin" <mst@redhat.com> writes:

> On Thu, Jun 12, 2014 at 10:27:53AM +0200, Markus Armbruster wrote:
>> "Michael S. Tsirkin" <mst@redhat.com> writes:
>> 
>> > Names with spaces in them are nasty, let's not go there.
>> 
>> Yes, they are, but please use '-' instead of '_'.  I can see just a few
>> devices with '_' in their name, but more than a hundred with '-'.
>
> No problem, I made this change.
> Result pushed to the pci branch, pls take a look there.
>
> Thanks!

The change is good, but I have more questions now.

What about "ICH9 SMB" in hw/i2c/smbus_ich9.c?

Technically, device names are ABI.  These two are onboard devices, so
changing their names can't break -device / device_add use.  It still
could break -global use.  Do we care?

If yes, the obvious fix is to keep the old name as alias.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name
  2014-06-12 14:33     ` Markus Armbruster
@ 2014-06-12 14:57       ` Michael S. Tsirkin
  0 siblings, 0 replies; 5+ messages in thread
From: Michael S. Tsirkin @ 2014-06-12 14:57 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: Igor Mammedov, qemu-devel, Anthony Liguori

On Thu, Jun 12, 2014 at 04:33:11PM +0200, Markus Armbruster wrote:
> "Michael S. Tsirkin" <mst@redhat.com> writes:
> 
> > On Thu, Jun 12, 2014 at 10:27:53AM +0200, Markus Armbruster wrote:
> >> "Michael S. Tsirkin" <mst@redhat.com> writes:
> >> 
> >> > Names with spaces in them are nasty, let's not go there.
> >> 
> >> Yes, they are, but please use '-' instead of '_'.  I can see just a few
> >> devices with '_' in their name, but more than a hundred with '-'.
> >
> > No problem, I made this change.
> > Result pushed to the pci branch, pls take a look there.
> >
> > Thanks!
> 
> The change is good, but I have more questions now.
> 
> What about "ICH9 SMB" in hw/i2c/smbus_ich9.c?

Same thing I guess. I noticed the other one because Igor
touched it in his patch.
Pls go ahead and submit a patch.

> Technically, device names are ABI.  These two are onboard devices, so
> changing their names can't break -device / device_add use.  It still
> could break -global use.  Do we care?
> 
> If yes, the obvious fix is to keep the old name as alias.

I don't think we care practically, but sure, go ahead and submit the
patch if you feel like it.

-- 
MST

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-06-12 14:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-08 15:46 [Qemu-devel] [PATCH applied] ich: get rid of spaces in type name Michael S. Tsirkin
2014-06-12  8:27 ` Markus Armbruster
2014-06-12  8:32   ` Michael S. Tsirkin
2014-06-12 14:33     ` Markus Armbruster
2014-06-12 14:57       ` Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.