diff --git a/utils/tuning/libtuning/parsers/raspberrypi_parser.py b/utils/tuning/libtuning/parsers/raspberrypi_parser.py
index d26586ba..dab50440 100644
--- a/utils/tuning/libtuning/parsers/raspberrypi_parser.py
+++ b/utils/tuning/libtuning/parsers/raspberrypi_parser.py
@@ -54,13 +54,9 @@ class RaspberryPiParser(Parser):
         config.pop('disable')
 
         # The raspberrypi config format has 'plot' map to a list of module
-        # names which should be plotted. libtuning has each module contain the
-        # plot information in itself so do this conversion.
-
-        for module in self._enumerate_rpi_modules(config['plot'], config, modules):
-            # It's fine to set the value of a potentially disabled module, as
-            # the object still exists at this point
-            module.appendValue('debug', 'plot')
+        # names which should be plotted. In libtuning, this information is
+        # passed by command line arguments, so simply drop this piece of
+        # information.
         config.pop('plot')
 
         # Convert the keys from module name to module instance
