qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] device-tree: Make a common-obj
@ 2015-05-24 20:20 Peter Crosthwaite
  2015-05-25 20:46 ` Alexander Graf
  2015-05-28 12:04 ` Michael Tokarev
  0 siblings, 2 replies; 5+ messages in thread
From: Peter Crosthwaite @ 2015-05-24 20:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Peter Crosthwaite, afaerber, agraf

There is no reason for device tree API to be built per-target.
common-obj it. There is an extraneous inclusion of config.h that
needs to be removed.

Cc: Alexander Graf <agraf@suse.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 Makefile.objs   | 2 ++
 Makefile.target | 1 -
 device_tree.c   | 1 -
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.objs b/Makefile.objs
index 28999d3..4881d2c 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -76,6 +76,8 @@ common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
 
 common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
 
+common-obj-$(CONFIG_FDT) += device_tree.o
+
 ######################################################################
 # qapi
 
diff --git a/Makefile.target b/Makefile.target
index 1083377..5100013 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -129,7 +129,6 @@ ifdef CONFIG_SOFTMMU
 obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
 obj-y += qtest.o bootdevice.o
 obj-y += hw/
-obj-$(CONFIG_FDT) += device_tree.o
 obj-$(CONFIG_KVM) += kvm-all.o
 obj-y += memory.o savevm.o cputlb.o
 obj-y += memory_mapping.o
diff --git a/device_tree.c b/device_tree.c
index 3d119ef..d2de580 100644
--- a/device_tree.c
+++ b/device_tree.c
@@ -18,7 +18,6 @@
 #include <unistd.h>
 #include <stdlib.h>
 
-#include "config.h"
 #include "qemu-common.h"
 #include "qemu/error-report.h"
 #include "sysemu/device_tree.h"
-- 
1.9.1

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

* Re: [Qemu-devel] [PATCH v2] device-tree: Make a common-obj
  2015-05-24 20:20 [Qemu-devel] [PATCH v2] device-tree: Make a common-obj Peter Crosthwaite
@ 2015-05-25 20:46 ` Alexander Graf
  2015-05-25 23:01   ` Paolo Bonzini
  2015-05-28 12:04 ` Michael Tokarev
  1 sibling, 1 reply; 5+ messages in thread
From: Alexander Graf @ 2015-05-25 20:46 UTC (permalink / raw)
  To: Peter Crosthwaite, qemu-devel; +Cc: qemu-trivial, afaerber, Peter Crosthwaite



On 24.05.15 22:20, Peter Crosthwaite wrote:
> There is no reason for device tree API to be built per-target.
> common-obj it. There is an extraneous inclusion of config.h that
> needs to be removed.
> 
> Cc: Alexander Graf <agraf@suse.de>
> Reviewed-by: Andreas Färber <afaerber@suse.de>
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>

Doesn't this mean that we're now linking against libfdt on
qemu-system-x86_64?


Alex

> ---
>  Makefile.objs   | 2 ++
>  Makefile.target | 1 -
>  device_tree.c   | 1 -
>  3 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Makefile.objs b/Makefile.objs
> index 28999d3..4881d2c 100644
> --- a/Makefile.objs
> +++ b/Makefile.objs
> @@ -76,6 +76,8 @@ common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
>  
>  common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
>  
> +common-obj-$(CONFIG_FDT) += device_tree.o
> +
>  ######################################################################
>  # qapi
>  
> diff --git a/Makefile.target b/Makefile.target
> index 1083377..5100013 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -129,7 +129,6 @@ ifdef CONFIG_SOFTMMU
>  obj-y += arch_init.o cpus.o monitor.o gdbstub.o balloon.o ioport.o numa.o
>  obj-y += qtest.o bootdevice.o
>  obj-y += hw/
> -obj-$(CONFIG_FDT) += device_tree.o
>  obj-$(CONFIG_KVM) += kvm-all.o
>  obj-y += memory.o savevm.o cputlb.o
>  obj-y += memory_mapping.o
> diff --git a/device_tree.c b/device_tree.c
> index 3d119ef..d2de580 100644
> --- a/device_tree.c
> +++ b/device_tree.c
> @@ -18,7 +18,6 @@
>  #include <unistd.h>
>  #include <stdlib.h>
>  
> -#include "config.h"
>  #include "qemu-common.h"
>  #include "qemu/error-report.h"
>  #include "sysemu/device_tree.h"
> 

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

* Re: [Qemu-devel] [PATCH v2] device-tree: Make a common-obj
  2015-05-25 20:46 ` Alexander Graf
@ 2015-05-25 23:01   ` Paolo Bonzini
  2015-05-25 23:07     ` Alexander Graf
  0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2015-05-25 23:01 UTC (permalink / raw)
  To: Alexander Graf, Peter Crosthwaite, qemu-devel
  Cc: qemu-trivial, afaerber, Peter Crosthwaite



On 25/05/2015 22:46, Alexander Graf wrote:
> 
> On 24.05.15 22:20, Peter Crosthwaite wrote:
>> > There is no reason for device tree API to be built per-target.
>> > common-obj it. There is an extraneous inclusion of config.h that
>> > needs to be removed.
>> > 
>> > Cc: Alexander Graf <agraf@suse.de>
>> > Reviewed-by: Andreas Färber <afaerber@suse.de>
>> > Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> Doesn't this mean that we're now linking against libfdt on
> qemu-system-x86_64?

We already are.

Paolo

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

* Re: [Qemu-devel] [PATCH v2] device-tree: Make a common-obj
  2015-05-25 23:01   ` Paolo Bonzini
@ 2015-05-25 23:07     ` Alexander Graf
  0 siblings, 0 replies; 5+ messages in thread
From: Alexander Graf @ 2015-05-25 23:07 UTC (permalink / raw)
  To: Paolo Bonzini, Peter Crosthwaite, qemu-devel
  Cc: qemu-trivial, afaerber, Peter Crosthwaite



On 26.05.15 01:01, Paolo Bonzini wrote:
> 
> 
> On 25/05/2015 22:46, Alexander Graf wrote:
>>
>> On 24.05.15 22:20, Peter Crosthwaite wrote:
>>>> There is no reason for device tree API to be built per-target.
>>>> common-obj it. There is an extraneous inclusion of config.h that
>>>> needs to be removed.
>>>>
>>>> Cc: Alexander Graf <agraf@suse.de>
>>>> Reviewed-by: Andreas Färber <afaerber@suse.de>
>>>> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
>> Doesn't this mean that we're now linking against libfdt on
>> qemu-system-x86_64?
> 
> We already are.

Oh :(


Alex

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

* Re: [Qemu-devel] [PATCH v2] device-tree: Make a common-obj
  2015-05-24 20:20 [Qemu-devel] [PATCH v2] device-tree: Make a common-obj Peter Crosthwaite
  2015-05-25 20:46 ` Alexander Graf
@ 2015-05-28 12:04 ` Michael Tokarev
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Tokarev @ 2015-05-28 12:04 UTC (permalink / raw)
  To: Peter Crosthwaite, qemu-devel
  Cc: qemu-trivial, agraf, afaerber, Peter Crosthwaite

24.05.2015 23:20, Peter Crosthwaite wrote:
> There is no reason for device tree API to be built per-target.
> common-obj it. There is an extraneous inclusion of config.h that
> needs to be removed.
> 
> Cc: Alexander Graf <agraf@suse.de>
> Reviewed-by: Andreas Färber <afaerber@suse.de>
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>

Applied to -trivial, thank you!

/mjt

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

end of thread, other threads:[~2015-05-28 12:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-24 20:20 [Qemu-devel] [PATCH v2] device-tree: Make a common-obj Peter Crosthwaite
2015-05-25 20:46 ` Alexander Graf
2015-05-25 23:01   ` Paolo Bonzini
2015-05-25 23:07     ` Alexander Graf
2015-05-28 12:04 ` Michael Tokarev

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).